/* =========================================================
   01. Design Tokens
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
  /* Core palette — deep amber-gold × ink navy */
  --bg:              #0a0e1a;
  --bg-deep:         #060810;
  --surface:         #111827;
  --surface-soft:    #161f30;
  --surface-lift:    #1c2840;

  /* Text */
  --text:            #f0f4ff;
  --muted:           #8fa3c8;
  --muted-soft:      #5b6f91;

  /* Brand — warm gold primary, coral accent */
  --primary:         #f5a623;
  --primary-dark:    #d98e10;
  --primary-soft:    rgba(245, 166, 35, 0.14);
  --primary-glow:    rgba(245, 166, 35, 0.28);
  --secondary:       #ff6b47;
  --secondary-soft:  rgba(255, 107, 71, 0.14);

  /* Utility */
  --star:            #f5a623;
  --line:            rgba(240, 244, 255, 0.09);
  --line-strong:     rgba(240, 244, 255, 0.16);
  --shadow:          0 20px 48px rgba(0, 0, 0, 0.38);
  --shadow-sm:       0 8px 24px rgba(0, 0, 0, 0.22);
  --radius:          20px;
  --radius-lg:       28px;
  --radius-xl:       36px;

  /* Footer */
  --footer-bg:       #060810;
  --footer-text:     #f0f4ff;
  --footer-muted:    #8fa3c8;
  --footer-link-hover: #f5a623;

  /* Typography */
  --font-display:    'Syne', system-ui, sans-serif;
  --font-body:       'DM Sans', system-ui, sans-serif;
}

/* =========================================================
   02. Reset & Base
========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  background:
    radial-gradient(ellipse 60% 40% at 5% 0%,   rgba(245, 166, 35, 0.10), transparent 55%),
    radial-gradient(ellipse 50% 35% at 95% 5%,  rgba(255, 107, 71, 0.08), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100dvh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

p, li, dd, .faq-answer {
  color: var(--muted);
  font-weight: 300;
}

li::marker {
  color: var(--primary);
}

/* =========================================================
   03. Accessibility & Layout Primitives
========================================================= */
.skip-link {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link:focus-visible {
  position: fixed !important;
  top: 14px !important;
  left: 14px !important;
  z-index: 9999 !important;
  width: auto !important;
  height: auto !important;
  padding: 12px 20px !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  border-radius: 12px !important;
  background: var(--primary) !important;
  color: #000 !important;
  font-weight: 700 !important;
  font-family: var(--font-display) !important;
}

.layout-container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.layout-container--narrow {
  width: min(860px, calc(100% - 40px));
}

.section-block {
  padding: 56px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 28px;
}

.flow > * + * {
  margin-top: 1.1rem;
}

/* =========================================================
   04. Typography
========================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem);  font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }

.section-heading h2,
.section-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.035em;
}

.label-text {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.label-text::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.text-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
}

.text-meta {
  margin: 8px 0 16px;
  color: var(--muted);
  font-weight: 500;
}

/* =========================================================
   05. Shared Components
========================================================= */

/* --- Buttons --- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.button:hover  { transform: translateY(-2px); }
.button:active { transform: translateY(0); }

.button--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #0a0e1a;
  box-shadow: 0 8px 28px var(--primary-glow);
}

.button--primary:hover {
  box-shadow: 0 14px 40px var(--primary-glow);
  background: linear-gradient(135deg, #f5b840 0%, #ff7a5a 100%);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-strong);
  color: var(--text);
}

.button--secondary:hover {
  border-color: rgba(245, 166, 35, 0.5);
  background: var(--primary-soft);
  color: var(--primary);
}

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* --- Cards --- */
.section-card,
.metric-card,
.feature-card,
.faq-item,
.rating-panel,
.testimonial-card {
  background: rgba(17, 24, 39, 0.90);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.section-card {
  padding: 36px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  position: relative;
}

.section-card--soft {
  border-color: rgba(245, 166, 35, 0.16);
  background:
    radial-gradient(ellipse 62% 52% at right top, rgba(245, 166, 35, 0.12), transparent 56%),
    radial-gradient(ellipse 42% 38% at left bottom, rgba(245, 166, 35, 0.045), transparent 60%),
    linear-gradient(160deg, rgba(23, 34, 54, 0.98), rgba(17, 24, 39, 0.96));
}

.section-card--accent {
  border-color: rgba(255, 107, 71, 0.18);
  background:
    radial-gradient(ellipse 58% 52% at left top, rgba(255, 107, 71, 0.15), transparent 55%),
    radial-gradient(ellipse 44% 40% at right bottom, rgba(245, 166, 35, 0.055), transparent 60%),
    linear-gradient(160deg, rgba(25, 21, 31, 0.98), rgba(10, 14, 26, 0.96));
}

.section-card--accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 107, 71, 0.045), transparent 36%),
    radial-gradient(circle at top left, rgba(255, 107, 71, 0.055), transparent 40%);
  pointer-events: none;
}

.section-card--soft::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.035) 52%, transparent);
  pointer-events: none;
}

.section-card--soft > *,
.section-card--accent > * {
  position: relative;
  z-index: 1;
}

/* --- Action row --- */
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* --- Inline links (main content) --- */
main a:not(.button):not(.tag-link):not(.site-brand) {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

main a:not(.button):not(.tag-link):not(.site-brand):hover {
  color: var(--secondary);
  text-decoration-color: rgba(255, 107, 71, 0.45);
}

/* =========================================================
   06. Breadcrumb
========================================================= */
.section-breadcrumb {
  padding: 10px 0;
  background: transparent;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted-soft);
  font-size: 0.875rem;
}

.breadcrumb a:hover {
  color: var(--primary);
}

/* =========================================================
   07. Header & Navigation
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 8, 16, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-layout {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  flex-shrink: 0;
}

.site-brand__logo {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  object-fit: cover;
  border-radius: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.site-nav a:not(.button) {
  padding: 7px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
}

.site-nav a:not(.button):hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.site-nav__cta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.header-cta {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 0.85rem;
}

.nav-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  display: none;
  place-items: center;
  background: transparent;
  color: var(--text);
  font-size: 1.1rem;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.nav-toggle:hover {
  background: var(--primary-soft);
  border-color: rgba(245, 166, 35, 0.4);
}

/* =========================================================
   08. Hero Section
========================================================= */
.home-hero {
  padding: 64px 0 52px;
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 58% 62% at 14% 18%, rgba(245, 166, 35, 0.18), transparent 60%),
    radial-gradient(ellipse 46% 52% at 86% 15%, rgba(255, 107, 71, 0.12), transparent 56%),
    linear-gradient(180deg, rgba(245, 166, 35, 0.045), transparent 72%);
  pointer-events: none;
}

.home-hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  gap: 32px;
  align-items: center;
}

.home-hero__content {
  padding: 40px;
  border: 1px solid rgba(245, 166, 35, 0.32);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 76% 64% at 12% 0%, rgba(245, 166, 35, 0.18), transparent 58%),
    radial-gradient(ellipse 54% 46% at 94% 12%, rgba(255, 107, 71, 0.13), transparent 56%),
    linear-gradient(150deg, rgba(30, 43, 68, 0.98), rgba(17, 24, 39, 0.94));
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.48),
    0 0 54px rgba(245, 166, 35, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-hero__content h1 {
  margin: 6px 0 18px;
  max-width: 680px;
}

/* Metric strip */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(80px, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.metric-card {
  padding: 16px 10px;
  text-align: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.metric-card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary);
}

.metric-card span {
  font-size: 0.72rem;
  color: var(--muted-soft);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Banner slider */
.home-banner-slider {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(245, 166, 35, 0.30);
  border-radius: var(--radius-xl);
  background: var(--bg-deep);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.48),
    0 0 50px rgba(245, 166, 35, 0.13);
}

.home-banner-slider__track,
.home-banner-slide {
  position: absolute;
  inset: 0;
}

.home-banner-slide {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.home-banner-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.home-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner-slider__controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 7px;
}

.home-banner-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.home-banner-dot.is-active {
  width: 28px;
  background: var(--primary);
}

/* =========================================================
   09. Section hero / App hero
========================================================= */
.section-hero {
  padding: 52px 0 36px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 36px;
  align-items: center;
  padding: 36px;
  background:
    radial-gradient(ellipse at top left, rgba(245, 166, 35, 0.12), transparent 40%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.media-box--app-icon img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 4rem);
}

/* =========================================================
   10. Content, Lists, Cards, FAQ, Tags
========================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 1.1rem;
  align-items: stretch;
}

/* Auto-center the last card when total count is odd (e.g. card #3 in a 2-col grid) */
.card-grid > article:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 10px);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.feature-card {
  min-height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(245, 166, 35, 0.24);
  transform: translateY(-2px);
}

.feature-card > span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
}

.feature-card .action-row {
  margin-top: auto;
}

/* Lists */
.list {
  margin-top: 18px;
  padding-left: 20px;
}

.list li {
  margin-bottom: 10px;
}

.list--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
}

.list--grid li {
  margin-bottom: 0;
}

.list--ordered {
  padding-left: 24px;
}

/* Review layout */
.review-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
}

.rating-panel {
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
}

.rating-panel strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text);
  font-size: 3.5rem;
  letter-spacing: -0.05em;
}

.stars {
  color: var(--star);
  letter-spacing: 3px;
  font-size: 1.1rem;
}

.bar {
  height: 8px;
  margin-top: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: inherit;
}

/* Stacked + FAQ */
.stacked-list,
.faq-list {
  display: grid;
  gap: 10px;
}

.testimonial-card {
  display: flex;
  gap: 18px;
  padding: 24px;
}

.avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #000;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
}

/* ---- FAQ: native <details>/<summary> ----
   Content is ALWAYS in DOM — visible to Ctrl+F, Google crawler,
   and screen readers regardless of open/closed state.
   interpolate-size enables smooth height animation in modern browsers.
   ------------------------------------------------------------ */
:root { interpolate-size: allow-keywords; }

.faq-item {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  background: rgba(17, 24, 39, 0.90);
  border: 1px solid var(--line);
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(245, 166, 35, 0.3);
}

/* Remove default browser triangle */
.faq-question { list-style: none; }
.faq-question::-webkit-details-marker { display: none; }

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  user-select: none;
  border-radius: inherit;
  transition: background 0.15s ease;
}

.faq-question:hover {
  background: rgba(245, 166, 35, 0.06);
}

.faq-question span {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-question span {
  transform: rotate(45deg);
}

/* Answer panel — always in DOM, height animated when supported */
.faq-answer {
  padding: 4px 24px 22px;
  font-weight: 300;
  line-height: 1.7;
  /* Smooth open/close in Chrome 129+ / Firefox 136+ */
  overflow: hidden;
  transition: height 0.32s ease;
}

details.faq-item[open] > .faq-answer {
  height: auto;
}

/* Tags */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-link {
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.10);
  border: 1px solid rgba(245, 166, 35, 0.22);
  color: var(--text);
  font-size: 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.tag-link:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #000;
  border-color: transparent;
}

/* =========================================================
   11. Footer
========================================================= */
.site-footer {
  margin-top: 56px;
  background: var(--footer-bg);
  color: var(--footer-text);
  border-top: 1px solid var(--line);
}

.footer-top {
  padding: 56px 0 42px;
}

.footer-top__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.9fr);
  gap: 48px;
  align-items: start;
}

.footer-side-groups {
  display: grid;
  gap: 32px;
}

.footer-media-group h3,
.footer-links h3 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  color: var(--footer-text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}

.footer-image-grid {
  display: grid;
  align-items: center;
  gap: 12px;
}

.footer-image-grid--payment {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-image-grid--license,
.footer-image-grid--responsible {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-image-grid img {
  width: 100%;
  height: 52px;
  padding: 10px 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-image-grid img:hover {
  background: var(--primary-soft);
  border-color: rgba(245, 166, 35, 0.3);
}

.footer-mid {
  padding: 44px 0 36px;
  border-top: 1px solid var(--line);
}

.footer-mid__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.6fr 0.6fr;
  gap: 44px;
}

.site-footer p,
.site-footer a {
  color: var(--footer-muted);
  font-weight: 300;
}

.site-footer a:hover {
  color: var(--footer-link-hover);
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: color 0.15s ease, padding-left 0.15s ease;
}

.footer-links a:hover {
  padding-left: 4px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-bottom {
  padding: 20px 0 36px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-bottom p {
  color: var(--footer-muted);
  font-size: 0.875rem;
}

/* =========================================================
   12. Floating Actions
========================================================= */
.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.floating-actions.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-download {
  box-shadow: 0 12px 32px var(--primary-glow);
}

.floating-top {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: var(--surface-lift);
  color: var(--text);
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.floating-top:hover {
  background: var(--primary);
  border-color: transparent;
  color: #000;
}

/* =========================================================
   13. Responsive
========================================================= */
@media (max-width: 1024px) {
  .footer-top__grid,
  .footer-mid__grid {
    grid-template-columns: 1fr;
  }

  .footer-side-groups {
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
  }

  .header-actions {
    display: none;
  }

  .site-nav__cta {
    display: inline-flex;
    width: 100%;
    margin-top: 6px;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.active {
    display: flex;
  }

  .site-nav a:not(.button) {
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .home-hero__layout,
  .hero-layout,
  .review-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    padding: 28px;
  }

  .home-banner-slider {
    width: min(100%, 500px);
    margin: 0 auto;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .layout-container,
  .layout-container--narrow {
    width: calc(100% - 24px);
  }

  .header-layout {
    position: relative;
  }

  .home-hero {
    padding: 36px 0 28px;
  }

  .home-hero__content {
    padding: 26px;
    border-radius: 22px;
  }

  .home-banner-slider {
    border-radius: 22px;
  }

  .section-block {
    padding: 40px 0;
  }

  .section-card {
    padding: 24px;
  }

  .section-hero {
    padding-top: 32px;
  }

  .media-box--app-icon img {
    width: 90px;
    height: 90px;
    border-radius: 22px;
  }

  .metric-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .metric-card {
    padding: 12px 6px;
    border-radius: 12px;
  }

  .metric-card strong { font-size: 0.7rem; }
  .metric-card span   { font-size: 0.64rem; }

  .action-row,
  .action-row .button {
    width: 100%;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-grid {
    gap: 12px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-card .button {
    width: 100%;
    min-height: 44px;
    font-size: 0.875rem;
  }

  .list--grid {
    grid-template-columns: 1fr;
  }

  .footer-image-grid--payment,
  .footer-image-grid--license,
  .footer-image-grid--responsible {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .footer-image-grid img {
    height: 46px;
    padding: 8px 10px;
  }

  .floating-actions {
    left: 12px;
    right: 12px;
    bottom: 16px;
    display: grid;
    grid-template-columns: 1fr 46px;
  }

  .floating-download {
    width: 100%;
  }
}

/* =========================================================
   14. Reduced Motion
========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   Inner Hero — No Media / No Slider
========================================================= */

.page-hero {
  position: relative;
  padding: 56px 0 40px;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 10% 0%,
      rgba(245, 166, 35, 0.12),
      transparent 58%
    ),
    radial-gradient(
      ellipse 45% 40% at 90% 10%,
      rgba(255, 107, 71, 0.08),
      transparent 52%
    );
  pointer-events: none;
}

.page-hero__card {
  position: relative;
  padding: 48px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245, 166, 35, 0.18);

  background:
    linear-gradient(
      145deg,
      rgba(28, 40, 64, 0.96),
      rgba(17, 24, 39, 0.94)
    );

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(245, 166, 35, 0.08);

  overflow: hidden;
}

.page-hero__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(245, 166, 35, 0.10),
      transparent 38%
    );
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero__content h1 {
  margin: 8px 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  letter-spacing: -0.045em;
}

.page-hero__content .text-lead {
  max-width: 680px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;

  border-radius: 999px;

  background: rgba(245, 166, 35, 0.10);
  border: 1px solid rgba(245, 166, 35, 0.18);

  color: var(--text);

  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-display);
}

.page-hero__badge strong {
  color: var(--primary);
  font-weight: 700;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 768px) {

  .page-hero {
    padding: 36px 0 24px;
  }

  .page-hero__card {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .page-hero__content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .page-hero__meta {
    gap: 10px;
  }

  .page-hero__badge {
    width: 100%;
    justify-content: center;
  }
}