/* =============================================================
   Home / Landing page — home.css
   Uses tokens from design-system.css
   ============================================================= */

.home-wrap { font-family: var(--ds-font); color: var(--ds-ink); }
.home-wrap section { scroll-margin-top: calc(var(--ds-navbar-h) + 16px); }

/* Home page opts out of the .ds-shell container so the hero can be full-bleed.
   Each home section has its own internal max-width container (services 1200px,
   row-section 1440px, faq 860px, etc.) so we don't lose centering. */
body.home-page main.ds-shell { max-width: none; padding-inline: 0; }
/* Defensive: nothing on the home page should ever cause a horizontal scrollbar. */
body.home-page { overflow-x: hidden; }

/* ============== HERO ============== */
/*
 * Hero background photo (Tehran skyline + Alborz mountains in winter).
 *   - Primary:  hero-bg.webp  (~140 KB at 1920×500) — modern browsers
 *   - Fallback: hero-bg.jpg   (~175 KB at 1920×500) — older browsers via image-set()
 * Replace both files together when swapping the photograph.
 */
.hero {
  --hero-image: image-set(
    url('/static/images/hero-bg.webp') type('image/webp'),
    url('/static/images/hero-bg.jpg') type('image/jpeg')
  );
  position: relative;
  /* The floating pill navbar is fixed at top: 20px with height 70 ⇒ it occupies
     the first ~110 px. Push the hero down so it sits *below* the navbar instead
     of having the photo bleed under a translucent navbar. */
  margin: calc(var(--ds-navbar-h, 90px) + 12px) auto 0;
  width: calc(100% - 32px);
  max-width: 1400px;
  box-sizing: border-box;
  /* Photo is intentionally less dominant — Booking / Idealista keep the hero
     in the 360-440 px band rather than the 600 px+ Web 2.0 splash. */
  padding: clamp(40px, 7vw, 72px) 24px clamp(56px, 7vw, 80px);
  border-radius: 24px;
  color: #fff;
  background:
    linear-gradient(
      180deg,
      rgba(0, 27, 30, 0.55) 0%,
      rgba(0, 60, 64, 0.35) 55%,
      rgba(0, 27, 30, 0.70) 100%
    ),
    var(--hero-image) center / cover no-repeat;
  background-color: var(--ds-brand-800);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(360px, 48vh, 460px);
}

@media (max-width: 768px) {
  /* On mobile the floating pill navbar height is 65 + top 10 ⇒ ~85px occupied,
     plus we want comfortable breathing room. */
  .hero {
    margin: calc(85px + 8px) auto 0;
    width: calc(100% - 16px);
    border-radius: 18px;
    min-height: clamp(420px, 70vh, 560px);
  }
}

/* Soft vignette behind the search card so the white card pops. */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 75%,
    rgba(0, 0, 0, 0.25) 0%,
    transparent 55%
  );
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}

/* Dark mode keeps the photo readable behind the dark search card. */
body[data-theme="dark"] .hero {
  background:
    linear-gradient(
      180deg,
      rgba(0, 12, 14, 0.78) 0%,
      rgba(0, 60, 64, 0.55) 45%,
      rgba(0, 12, 14, 0.85) 100%
    ),
    var(--hero-image) center / cover no-repeat;
}

.hero__title {
  font-size: clamp(2rem, 5.6vw, 3.8rem);
  font-weight: var(--ds-weight-bold);
  line-height: 1.2;
  /* Light shadow only — no Web 2.0 glow. */
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  margin: 0 0 18px;
  letter-spacing: 0;
}
.hero__title span { display: inline; }
/* Warm accent under-stroke instead of the old mint pastel text color. */
.hero__title .hl {
  color: #fff;
  position: relative;
  background-image: linear-gradient(transparent 72%, rgba(255, 133, 82, 0.85) 72%, rgba(255, 133, 82, 0.85) 92%, transparent 92%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 4px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.94);
  font-weight: 500;
  margin: 0 0 22px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.30);
}

/* The search card — a real BOXED card. Booking / Zillow / Idealista style:
   one white container with a clear border, generous padding, a strong shadow,
   and tabs + form + quick-links stacked inside. The card overhangs ~64 px
   into the section below so the hero photo doesn't have to carry the whole
   visual weight. */
.hero__search {
  width: 100%;
  max-width: 860px;
  margin: 8px auto -64px;   /* the -64 px pulls the next section up under the card */
  text-align: right;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbfa 100%);
  border: 1px solid rgba(0, 166, 147, 0.22);
  border-radius: 20px;
  padding: 14px;
  box-shadow:
    0 32px 72px rgba(0, 60, 64, 0.32),
    0 12px 24px rgba(0, 60, 64, 0.18),
    0 0 0 1px rgba(0, 166, 147, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  position: relative;
  z-index: 5;
}

/* Tabs row — segmented control inside the card, surface-2 background. */
.hero__tabs {
  display: flex;
  gap: 4px;
  background: var(--ds-surface-2);
  border-radius: 12px;
  padding: 4px;
  margin: 0 0 10px;
}
.hero__tab {
  flex: 1;
  padding: 10px 12px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ds-muted);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: color 200ms var(--ds-ease), background 200ms var(--ds-ease), box-shadow 200ms var(--ds-ease);
  font-family: var(--ds-font);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}
.hero__tab:hover { color: var(--ds-brand); }
.hero__tab.is-active {
  background: #fff;
  color: var(--ds-brand);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08), 0 0 0 1px var(--ds-line);
}
.hero__tab i { font-size: 0.9em; opacity: 0.9; }

/* Hairline divider between tabs and form. Hidden by default (the tabs have
   their own surface-2 fill that does the visual job). Kept in markup so future
   variants can re-enable it without a markup change. */
.hero__search-divider { display: none; }

/* Form row — segments separated by gap, sitting on the card's white surface. */
.hero__form {
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  min-width: 0;
}

.hero__field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ds-brand-50, #E6F7F4);
  border: 1px solid rgba(0, 166, 147, 0.16);
  border-radius: 14px;
  padding: 0 16px;
  min-height: 58px;
  min-width: 0;
  transition: background 200ms var(--ds-ease), border-color 200ms var(--ds-ease), box-shadow 200ms var(--ds-ease);
}
.hero__field:hover {
  background: #f0faf8;
  border-color: rgba(0, 166, 147, 0.28);
}
.hero__field:focus-within {
  background: #fff;
  border-color: var(--ds-brand);
  box-shadow: 0 0 0 4px rgba(0, 166, 147, 0.18);
}
.hero__field i { color: var(--ds-brand); font-size: 0.95rem; flex-shrink: 0; opacity: 0.85; }
.hero__field .chev { color: var(--ds-muted-2); font-size: 0.7rem; margin-inline-start: 6px; flex-shrink: 0; }

.hero__field--province {
  flex: 0 0 200px;
}
.hero__field--search {
  flex: 1 1 0;
  min-width: 0;
}

/* At tablet (≤960px) the 3-element row gets tight — the long search
   placeholder ("در میان X آگهی، ملک، محله، آدرس یا جست‌وجو کنید") gets
   clipped or pushes the submit off-rhythm. Stack search on its own row
   while keeping province+submit side-by-side. */
@media (max-width: 960px) and (min-width: 769px) {
  .hero__form { flex-wrap: wrap; }
  .hero__field--search { flex: 1 1 100%; order: 1; }
  .hero__field--province { flex: 1 1 220px; order: 2; }
  .hero__submit { flex: 0 0 auto; order: 3; min-width: 140px; }
}

.hero__field select,
.hero__field input {
  width: 100%;
  border: 0;
  background: transparent;
  font: 600 0.98rem var(--ds-font);
  color: var(--ds-ink);
  outline: none;
  text-align: right;
  direction: rtl;
  min-width: 0;
}
.hero__field input::placeholder { color: var(--ds-muted-2); font-weight: 500; }
.hero__field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-inline-end: 4px;
  background-image: none;
}

/* Submit button — wide, brand-colored, prominent. The dominant element of
   the form so the eye lands on it after typing. */
.hero__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  background: linear-gradient(180deg, var(--ds-brand) 0%, var(--ds-brand-700) 100%);
  color: #fff;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font: 700 0.98rem var(--ds-font);
  white-space: nowrap;
  transition: filter 200ms var(--ds-ease), transform 120ms var(--ds-ease), box-shadow 200ms var(--ds-ease);
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 123, 110, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.hero__submit i { font-size: 1rem; }
.hero__submit-text { display: inline; }
.hero__submit:hover { filter: brightness(1.06); box-shadow: 0 10px 22px rgba(0, 123, 110, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.22); }
.hero__submit:active { transform: scale(0.98); }
.hero__submit:focus-visible { outline: 2px solid #fff; outline-offset: -4px; }

@media (max-width: 768px) {
  .hero {
    padding: clamp(48px, 12vw, 80px) 16px clamp(28px, 6vw, 48px);
    min-height: auto;
  }
  .hero__title { font-size: clamp(1.6rem, 6.5vw, 2.05rem); margin-bottom: 14px; }
  .hero__title .hl { padding: 0 2px; }
  .hero__subtitle { font-size: 0.95rem; margin-bottom: 18px; }
  /* No overhang on mobile — every pixel matters and the hand-off happens
     via the section padding alone. */
  .hero__search { margin-bottom: 0; padding: 10px; border-radius: 16px; }
  .hero__tabs { padding: 3px; gap: 3px; }
  .hero__tab { padding: 9px 8px; font-size: 0.84rem; }
  /* Stack form vertically — province on top, search beneath, submit full width. */
  .hero__form {
    flex-direction: column;
    gap: 6px;
    padding: 0;
    border-radius: 0;
  }
  .hero__field--province,
  .hero__field--search { flex: 1 1 auto; }
  .hero__field { min-height: 50px; padding: 0 14px; border-radius: 12px; }
  .hero__submit { min-height: 50px; padding: 0 20px; border-radius: 12px; font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .hero__tab { padding: 8px 14px; font-size: 0.82rem; }
  .hero__tab i { font-size: 0.85em; }
}


/* ============== STATS STRIP ============== */
/* Light-surface KPI band — replaces the monolithic teal block.
   The teal gradient now lives only on the cta-banner / app-cta to
   keep the brand color used sparingly across the page.
   Top padding is generous because the hero search card overhangs
   into this section by 64 px (margin-bottom: -64 px). */
.stats-band {
  padding: 112px 24px 16px;
  background: var(--ds-surface);
  border-bottom: 1px solid var(--ds-line-2);
}
.stats-band__inner {
  max-width: 1200px;
  margin-inline: auto;
  position: relative;
}
.stats-band__head {
  text-align: center;
  margin-bottom: 32px;
}
.stats-band__title {
  font-size: var(--ds-text-2xl);
  font-weight: 800;
  color: var(--ds-ink);
  margin: 0 0 6px;
}
.stats-band__sub {
  color: var(--ds-muted);
  margin: 0;
  font-size: var(--ds-text-base);
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stats-band__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--ds-radius-xl);
  background: var(--ds-surface);
  border: 1px solid var(--ds-line);
  transition: transform 200ms var(--ds-ease), box-shadow 200ms var(--ds-ease), border-color 200ms var(--ds-ease);
}
.stats-band__cell:hover {
  transform: translateY(-3px);
  box-shadow: var(--ds-shadow-md);
  border-color: var(--ds-brand-100);
}
.stats-band__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ds-brand-50) 0%, #d6f1ec 100%);
  color: var(--ds-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ds-text-xl);
  margin-bottom: 12px;
  box-shadow: inset 0 0 0 1px rgba(0, 166, 147, 0.12), 0 4px 10px rgba(0, 166, 147, 0.10);
  transition: transform 200ms var(--ds-ease), box-shadow 200ms var(--ds-ease);
}
.stats-band__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.stats-band__cell:hover .stats-band__icon {
  transform: translateY(-1px) scale(1.04);
  box-shadow: inset 0 0 0 1px rgba(0, 166, 147, 0.20), 0 8px 18px rgba(0, 166, 147, 0.18);
}
.stats-band__num {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--ds-brand-800);
  line-height: 1.1;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  letter-spacing: -0.01em;
}
.stats-band__num .suf {
  font-size: 0.65em;
  font-weight: 700;
  color: var(--ds-brand);
  opacity: 0.85;
}
.stats-band__lbl {
  font-size: var(--ds-text-sm);
  color: var(--ds-muted);
  margin-top: 8px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .stats-band { padding: 56px 16px 16px; }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stats-band__cell { padding: 22px 12px; }
  .stats-band__title { font-size: var(--ds-text-xl); }
  .stats-band__sub { font-size: var(--ds-text-sm); }
  .stats-band__head { margin-bottom: 22px; }
}
@media (max-width: 480px) {
  .stats-band { padding: 48px 14px 14px; }
  .stats-band__icon { width: 38px; height: 38px; font-size: var(--ds-text-base); margin-bottom: 10px; border-radius: 10px; }
  .stats-band__icon svg { width: 19px; height: 19px; }
  .stats-band__num { font-size: 1.55rem; }
  .stats-band__lbl { font-size: var(--ds-text-xs); }
  .stats-band__cell { padding: 18px 10px; border-radius: var(--ds-radius-lg); }
}

/* ============== SERVICES ============== */
.services {
  padding: 80px 24px 56px;
  max-width: 1200px;
  margin: 0 auto;
}
.services__head { text-align: center; margin-bottom: 32px; }
.services__title { font-size: var(--ds-text-2xl); font-weight: 800; color: var(--ds-ink); margin: 0 0 6px; }
.services__sub   { font-size: var(--ds-text-base); color: var(--ds-muted); margin: 0; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--ds-surface);
  border: 1px solid var(--ds-line);
  border-radius: var(--ds-radius-xl);
  padding: 26px 24px 22px;
  text-align: center;
  transition: transform 200ms var(--ds-ease), box-shadow 200ms var(--ds-ease), border-color 200ms var(--ds-ease);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.service-card::before {
  /* Top accent bar — colored by the variant. */
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 4px;
  background: var(--accent, var(--ds-brand));
  border-radius: var(--ds-radius-xl) var(--ds-radius-xl) 0 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 300ms var(--ds-ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08), 0 4px 10px rgba(15, 23, 42, 0.04);
  border-color: var(--accent, var(--ds-brand));
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--accent-bg, var(--ds-brand-50));
  color: var(--accent, var(--ds-brand));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  position: relative;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent, var(--ds-brand)) 14%, transparent),
              0 6px 14px color-mix(in srgb, var(--accent, var(--ds-brand)) 16%, transparent);
  transition: transform 250ms var(--ds-ease), box-shadow 250ms var(--ds-ease), background 250ms var(--ds-ease);
}
.service-card__icon svg {
  width: 26px;
  height: 26px;
  display: block;
}
.service-card:hover .service-card__icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent, var(--ds-brand)) 24%, transparent),
              0 12px 24px color-mix(in srgb, var(--accent, var(--ds-brand)) 26%, transparent);
}
.service-card__arrow {
  width: 14px;
  height: 14px;
  display: inline-block;
  transition: transform 200ms var(--ds-ease);
}
.service-card:hover .service-card__arrow { transform: translateX(-3px); }

.service-card h3 { font-size: var(--ds-text-lg); font-weight: 800; margin: 0; color: var(--ds-ink); }
.service-card p  { font-size: var(--ds-text-sm); color: var(--ds-muted); margin: 0; line-height: 1.65; }

.service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: var(--ds-text-sm);
  font-weight: 700;
  color: var(--accent, var(--ds-brand));
  transition: gap 200ms var(--ds-ease);
}
.service-card:hover .service-card__more { gap: 10px; }
.service-card__more i { font-size: 0.75rem; }
.service-card__more svg { color: currentColor; }

.service-card__chip {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  padding: 3px 10px;
  border-radius: var(--ds-radius-pill);
  background: var(--accent, var(--ds-brand));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Per-variant accent colors. */
.service-card--sell { --accent: var(--ds-brand);    --accent-bg: var(--ds-brand-50); }
.service-card--rent { --accent: var(--ds-rent);     --accent-bg: var(--ds-rent-50); }
.service-card--buy  { --accent: var(--ds-accent);   --accent-bg: rgba(255, 133, 82, 0.12); }

@media (max-width: 768px) {
  .services { padding: 40px 16px 24px; }
  .services__head { margin-bottom: 22px; }
  .services__title { font-size: var(--ds-text-xl); }
  .services__sub   { font-size: var(--ds-text-sm); }
  .services__grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { padding: 22px 18px 20px; gap: 6px; }
  .service-card h3 { font-size: var(--ds-text-base); }
}

/* ============== SECTION: slider row ============== */
.row-section {
  padding: 48px clamp(16px, 3vw, 32px) 16px;
  max-width: 1440px;
  margin: 0 auto;
}
/* Digikala-style two-column row: fixed aside + horizontal scroll.
   Inline padding so the cards never touch the viewport edges. */
.row-section--aside {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  align-items: stretch;
  padding: 56px clamp(16px, 3vw, 32px) 24px;
}
.row-section--aside .row-section__scroll { padding: 6px 0; }
.row-aside {
  background: linear-gradient(160deg, var(--ds-brand-50), var(--ds-surface) 70%);
  border: 1px solid var(--ds-brand-100);
  border-radius: var(--ds-radius-xl);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.row-aside__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--ds-brand);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: var(--ds-text-2xl);
  box-shadow: var(--ds-shadow-brand);
}
.row-aside__title { margin: 0; font-size: var(--ds-text-lg); font-weight: 800; color: var(--ds-ink); }
.row-aside__sub { margin: 0; color: var(--ds-muted); font-size: var(--ds-text-sm); }
.row-aside__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ds-brand); color: #fff;
  padding: 10px 16px; border-radius: var(--ds-radius-pill);
  font-weight: 700; font-size: var(--ds-text-sm); text-decoration: none;
  transition: background var(--ds-hover);
}
.row-aside__cta:hover { background: var(--ds-brand-700); color: #fff; }
@media (max-width: 768px) {
  .row-section { padding: 32px 16px 12px; }
  .row-section--aside { grid-template-columns: 1fr; padding: 32px 16px 16px; gap: 12px; }
  .row-aside { flex-direction: row; gap: 12px; padding: 12px 14px; align-items: center; }
  .row-aside__icon { width: 40px; height: 40px; font-size: var(--ds-text-base); }
  .row-aside__title { font-size: var(--ds-text-base); }
  .row-aside__sub { display: none; }
  .row-aside__cta { margin: 0 0 0 auto; padding: 7px 12px; font-size: var(--ds-text-xs); }
}
.row-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px;
  margin-bottom: 18px;
}
.row-section__title {
  font-size: var(--ds-text-xl);
  font-weight: 800;
  color: var(--ds-ink);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.row-section__title i {
  color: var(--ds-brand);
  background: var(--ds-brand-50);
  width: 36px;
  height: 36px;
  border-radius: var(--ds-radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ds-text-base);
}
.row-section__all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ds-brand);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--ds-text-sm);
  padding: 8px 14px;
  border-radius: var(--ds-radius-md);
  transition: background var(--ds-hover);
}
.row-section__all:hover { background: var(--ds-brand-50); }

.row-section__scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 6px 8px 24px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.row-section__scroll::-webkit-scrollbar { display: none; }
.row-section__scroll { scrollbar-width: none; }
.row-section__scroll > * {
  flex: 0 0 260px;
  scroll-snap-align: start;
}

@media (max-width: 480px) {
  .row-section__head { padding: 0 16px; }
  .row-section__scroll { padding: 6px 16px 24px; }
  .row-section__scroll > * { flex: 0 0 240px; }
}

/* Counselor compact card */
.csel-card {
  background: var(--ds-surface);
  border: 1px solid var(--ds-line);
  border-radius: var(--ds-radius-lg);
  padding: 14px 14px 14px;
  text-align: center;
  transition: transform var(--ds-hover), box-shadow var(--ds-hover);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.csel-card:hover { transform: translateY(-3px); box-shadow: var(--ds-shadow-md); border-color: var(--ds-brand); }
.csel-card__avatar {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ds-brand-50);
  overflow: visible;
  border: 2px solid var(--ds-brand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ds-brand);
  font-size: var(--ds-text-2xl);
}
.csel-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
/* Verified tick floating on the avatar's bottom-end corner. */
.csel-card__verified {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ds-success);
  color: #fff;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* Star rating row — hidden when rating is 0 or missing. */
.csel-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--ds-text-xs);
  color: var(--ds-ink-2);
  font-weight: 600;
}
.csel-card__rating i { color: #FBBF24; font-size: 0.85em; }
.csel-card__rating strong { font-weight: 700; }
.csel-card__rating-n { color: var(--ds-muted); font-weight: 500; }
.csel-card__name { font-size: var(--ds-text-base); font-weight: 700; color: var(--ds-ink); margin: 0; }
.csel-card__meta { font-size: var(--ds-text-sm); color: var(--ds-muted); display: inline-flex; align-items: center; gap: 4px; }
.csel-card__meta i { color: var(--ds-brand); }
.csel-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  margin: 4px 0 6px;
}
.csel-card__tag {
  font-size: var(--ds-text-xs);
  color: var(--ds-brand-800);
  background: var(--ds-brand-50);
  padding: 3px 10px;
  border-radius: var(--ds-radius-pill);
}
.csel-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--ds-brand-50);
  color: var(--ds-brand-800);
  padding: 7px 14px;
  margin-top: auto;
  border-radius: var(--ds-radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--ds-text-xs);
  transition: background var(--ds-hover), color var(--ds-hover);
}
.csel-card__cta:hover { background: var(--ds-brand); color: #fff; }

/* Blog compact card */
.blog-card {
  background: var(--ds-surface);
  border: 1px solid var(--ds-line);
  border-radius: var(--ds-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--ds-hover), box-shadow var(--ds-hover);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--ds-shadow-md); border-color: var(--ds-brand); }
.blog-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: var(--ds-surface-3);
}
.blog-card__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; }
.blog-card__title { font-size: var(--ds-text-base); font-weight: 700; margin: 0; line-height: 1.5; color: var(--ds-ink); }
.blog-card__meta { font-size: var(--ds-text-xs); color: var(--ds-muted); display: flex; align-items: center; gap: 6px; }

/* ============== FAQ ============== */
.faq {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 40px;
}
.faq__head { text-align: center; margin-bottom: 32px; }
.faq__head h2 { font-size: var(--ds-text-2xl); font-weight: 800; color: var(--ds-ink); margin: 0 0 6px; }
.faq__head p { color: var(--ds-muted); margin: 0; font-size: var(--ds-text-base); }
@media (max-width: 768px) {
  .faq { padding: 40px 16px 32px; }
  .faq__head { margin-bottom: 22px; }
  .faq__head h2 { font-size: var(--ds-text-xl); }
  .faq__head p { font-size: var(--ds-text-sm); }
  .faq__summary { padding: 14px 16px; font-size: var(--ds-text-sm); }
  .faq__body { padding: 2px 16px 14px; font-size: var(--ds-text-xs); }
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 1024px) {
  .faq__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
.faq__item {
  border: 1px solid var(--ds-line);
  border-radius: var(--ds-radius-lg);
  overflow: hidden;
  background: var(--ds-surface);
  transition: border-color 200ms var(--ds-ease), box-shadow 200ms var(--ds-ease);
  align-self: start;
}
.faq__item[open] {
  border-color: var(--ds-brand);
  box-shadow: 0 4px 16px rgba(0, 166, 147, 0.08);
}
.faq__item:hover { border-color: var(--ds-brand-100); }
.faq__summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: var(--ds-text-base);
  color: var(--ds-ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq__summary::-webkit-details-marker { display: none; }
.faq__summary i {
  color: var(--ds-brand);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--ds-brand-50);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: transform 300ms var(--ds-ease);
}
.faq__item[open] .faq__summary i { transform: rotate(180deg); }
.faq__body {
  padding: 4px 22px 20px;
  color: var(--ds-muted);
  line-height: 1.85;
  font-size: var(--ds-text-sm);
}

/* ============== CTA BANNER ============== */
.cta-banner {
  max-width: 1200px;
  margin: 48px auto;
  padding: 0 24px;
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, var(--ds-brand), var(--ds-brand-800));
  color: #fff;
  padding: 36px 40px;
  border-radius: var(--ds-radius-2xl);
  box-shadow: var(--ds-shadow-brand);
}
.cta-banner h3 { font-size: var(--ds-text-2xl); font-weight: 800; margin: 0 0 8px; }
.cta-banner p { opacity: 0.92; margin: 0; font-size: var(--ds-text-base); }
.cta-banner__actions { display: flex; gap: 10px; justify-content: flex-end; }
.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--ds-radius-md);
  font-weight: 700;
  text-decoration: none;
  font-size: var(--ds-text-base);
  transition: transform var(--ds-hover);
  min-height: 50px;
}
.cta-banner__btn:hover { transform: translateY(-2px); }
.cta-banner__btn--primary { background: #fff; color: var(--ds-brand-800); }
.cta-banner__btn--ghost { background: rgba(255, 255, 255, 0.15); color: #fff; border: 1px solid rgba(255, 255, 255, 0.3); }

@media (max-width: 768px) {
  .cta-banner__inner { grid-template-columns: 1fr; text-align: center; padding: 28px 24px; }
  .cta-banner__actions { justify-content: center; flex-wrap: wrap; }
}

/* ============== EMPTY STATE ============== */
.empty-state {
  flex: 0 0 100%;
  padding: 36px 24px;
  text-align: center;
  color: var(--ds-muted);
  background: var(--ds-surface-2);
  border-radius: var(--ds-radius-lg);
  border: 1px dashed var(--ds-line);
}
.empty-state i { font-size: var(--ds-text-3xl); color: var(--ds-brand-100); margin-bottom: 10px; }
.empty-state h3 { font-size: var(--ds-text-base); color: var(--ds-ink); margin: 0 0 4px; }
.empty-state p  { font-size: var(--ds-text-sm); margin: 0; }

/* ============== VIRTUAL TOUR HIGHLIGHT (Block 6) ============== */
.vtour {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  background: linear-gradient(160deg, var(--ds-brand-50) 0%, #fff 60%);
  border: 1px solid var(--ds-brand-100);
  border-radius: var(--ds-radius-2xl);
  padding: 48px 48px;
  margin: 64px auto;
  max-width: 1200px;
  align-items: center;
  box-shadow: var(--ds-shadow-sm);
  overflow: hidden;
}

/* The 'art' is now a real-photo frame with a play button + 360° badge,
   not a single FA icon on a gradient. Mimics what a 3D-tour preview
   actually looks like in the wild. */
.vtour__art {
  position: relative;
  border-radius: var(--ds-radius-xl);
  aspect-ratio: 5 / 3;
  background: var(--ds-brand-800);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 91, 93, 0.20), 0 6px 12px rgba(0, 91, 93, 0.10);
  cursor: pointer;
  isolation: isolate;
}
.vtour__art-img,
.vtour__art-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
/* Subtle dark gradient + brand tint over the photo so the play button reads. */
.vtour__art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 35, 40, 0.45) 100%);
  pointer-events: none;
  z-index: 1;
}

.vtour__art-badge {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--ds-radius-pill);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ds-brand-800);
  font-weight: 700;
  font-size: var(--ds-text-xs);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.vtour__art-badge i { font-size: 0.85em; }

.vtour__art-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ds-brand);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.30);
  transition: transform 200ms var(--ds-ease), background 200ms var(--ds-ease);
}
.vtour__art-play::before {
  /* Soft pulsing halo to hint that the frame is interactive. */
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: vtour-pulse 2.4s ease-out infinite;
}
.vtour__art-play:hover { background: var(--ds-brand); color: #fff; transform: translate(-50%, -50%) scale(1.06); }
.vtour__art-play i { padding-inline-start: 4px; }
@keyframes vtour-pulse {
  0%   { transform: scale(1);   opacity: 0.9; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Two pin markers floating over the photo to suggest waypoints in a tour. */
.vtour__art-pin {
  position: absolute;
  z-index: 2;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ds-accent);
  box-shadow: 0 0 0 4px rgba(255, 133, 82, 0.32), 0 4px 10px rgba(0, 0, 0, 0.24);
}
.vtour__art-pin--a { top: 22%; inset-inline-end: 18%; }
.vtour__art-pin--b { bottom: 24%; inset-inline-start: 22%; background: #fff; box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.32), 0 4px 10px rgba(0, 0, 0, 0.24); }

/* Copy column. */
.vtour__eyebrow {
  font-size: var(--ds-text-sm);
  font-weight: 700;
  color: var(--ds-brand);
  margin: 0 0 8px;
  text-transform: none;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.vtour__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--ds-brand);
  border-radius: 1px;
}
.vtour__title { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; color: var(--ds-ink); margin: 0 0 14px; line-height: 1.3; }
.vtour__body { color: var(--ds-muted); line-height: 1.85; margin: 0 0 18px; font-size: var(--ds-text-base); }
.vtour__bullets { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.vtour__bullets li { display: flex; align-items: center; gap: 12px; color: var(--ds-ink); font-size: var(--ds-text-base); }
.vtour__bullets li i {
  width: 26px; height: 26px;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ds-brand-50);
  color: var(--ds-brand);
  border-radius: 8px;
  font-size: 0.78rem;
}
.vtour__cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ds-brand); color: #fff;
  padding: 13px 22px; border-radius: var(--ds-radius-pill);
  font-weight: 700; text-decoration: none;
  transition: background 200ms var(--ds-ease), transform 100ms var(--ds-ease);
}
.vtour__cta:hover { background: var(--ds-brand-700); color: #fff; transform: translateY(-1px); }
.vtour__cta-arrow { font-size: 0.7rem; opacity: 0.85; transition: transform 200ms var(--ds-ease); }
.vtour__cta:hover .vtour__cta-arrow { transform: translateX(4px); }

@media (max-width: 768px) {
  .vtour { grid-template-columns: 1fr; padding: 28px 22px; gap: 24px; margin: 40px 16px; }
  .vtour__art { aspect-ratio: 16 / 10; }
  .vtour__art-play { width: 64px; height: 64px; font-size: 1.2rem; }
}

/* ============== TESTIMONIALS (Block 7) ============== */
.testimonials {
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 166, 147, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(255, 133, 82, 0.06) 0%, transparent 45%),
    var(--ds-surface-2);
  border: 1px solid var(--ds-line);
  border-radius: var(--ds-radius-2xl);
  padding: 48px 32px;
  margin: 48px auto;
  max-width: 1200px;
}
.testimonials__head { text-align: center; margin-bottom: 36px; }
.testimonials__head h2 {
  font-size: var(--ds-text-2xl);
  font-weight: 800;
  color: var(--ds-ink);
  margin: 0 0 8px;
}
.testimonials__head p  { color: var(--ds-muted); margin: 0; font-size: var(--ds-text-base); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--ds-line);
  border-radius: var(--ds-radius-xl);
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform var(--ds-hover), box-shadow var(--ds-hover), border-color var(--ds-hover);
}
/* Decorative quote glyph — uses FA's fa-quote-right (Persian-direction safe)
   instead of the Latin '"' from Georgia that the card had before. */
.testimonial-card::before {
  content: '\f10e'; /* fa-quote-right */
  font-family: 'Font Awesome 6 Free', 'FontAwesome';
  font-weight: 900;
  position: absolute;
  top: 16px;
  inset-inline-end: 22px;
  font-size: 38px;
  line-height: 1;
  color: var(--ds-brand);
  opacity: 0.16;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ds-shadow-lg);
  border-color: var(--ds-brand-100);
}
.testimonial-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ds-brand-50);
  color: var(--ds-brand);
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ds-text-xl);
  border: 3px solid var(--ds-brand-50);
  box-shadow: 0 0 0 3px var(--ds-surface), 0 4px 12px rgba(0, 166, 147, 0.18);
  flex-shrink: 0;
}
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__rating {
  display: inline-flex;
  gap: 2px;
  color: #FBBF24;
  font-size: var(--ds-text-sm);
}
.testimonial-card__quote {
  margin: 0;
  padding: 0;
  color: var(--ds-ink);
  font-size: var(--ds-text-base);
  line-height: 1.9;
  position: relative;
  flex: 1;
}
.testimonial-card__quote i { display: none; }
.testimonial-card__quote p { margin: 0; }
.testimonial-card__author {
  border-top: 1px solid var(--ds-line);
  padding-top: 14px;
  margin-top: 4px;
}
.testimonial-card__author strong {
  display: block;
  color: var(--ds-ink);
  font-weight: 700;
  font-size: var(--ds-text-base);
}
.testimonial-card__author span {
  color: var(--ds-muted);
  font-size: var(--ds-text-sm);
}
@media (max-width: 768px) {
  .testimonials__grid { grid-template-columns: 1fr; gap: 12px; }
  .testimonials { padding: 32px 18px; margin: 32px 14px; border-radius: var(--ds-radius-xl); }
  .testimonials__head { margin-bottom: 22px; }
  .testimonials__head h2 { font-size: var(--ds-text-xl); }
  .testimonials__head p { font-size: var(--ds-text-sm); }
  .testimonial-card { padding: 26px 20px 20px; }
  .testimonial-card__quote { font-size: var(--ds-text-sm); line-height: 1.85; }
}

/* ============== APP REFERRAL (Block 9) ============== */
.app-cta {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(255, 133, 82, 0.20) 0%, transparent 45%),
    linear-gradient(135deg, var(--ds-brand-800) 0%, var(--ds-brand) 100%);
  color: #fff;
  border-radius: var(--ds-radius-2xl);
  padding: 48px 48px;
  margin: 64px auto;
  max-width: 1200px;
  align-items: center;
  box-shadow: var(--ds-shadow-brand);
  overflow: hidden;
  position: relative;
}
.app-cta__art {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CSS-only phone mockup — replaces the 200×200 'div with single FA icon'.
   A real device frame, a screen with a status bar, three skeleton cards,
   and a brand-colored map pin on the bottom. */
.app-cta__phone {
  position: relative;
  width: 178px;
  height: 270px;
  border-radius: 34px;
  background: linear-gradient(160deg, #1A2226 0%, #0E1518 100%);
  padding: 11px 9px;
  box-shadow:
    0 0 0 6px rgba(0, 0, 0, 0.20),
    0 24px 56px rgba(0, 0, 0, 0.40),
    inset 0 0 0 1px rgba(255, 255, 255, 0.10);
}
.app-cta__phone-notch {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 14px;
  background: #0E1518;
  border-radius: 7px;
  z-index: 2;
}
.app-cta__phone-screen {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 166, 147, 0.45) 0%, transparent 50%),
    linear-gradient(180deg, #FAFCFD 0%, #EEF4F5 100%);
  overflow: hidden;
  padding: 22px 12px 12px;
}
.app-cta__phone-bar {
  display: block;
  width: 70%;
  height: 8px;
  border-radius: 4px;
  background: var(--ds-brand);
  margin: 0 0 10px;
  opacity: 0.92;
}
.app-cta__phone-card {
  display: block;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 8px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.10);
  position: relative;
  overflow: hidden;
}
.app-cta__phone-card--a { height: 50px; background: linear-gradient(135deg, #fff 60%, var(--ds-brand-50) 100%); }
.app-cta__phone-card--b { height: 36px; background: #fff; }
.app-cta__phone-card--c { height: 36px; background: linear-gradient(135deg, #fff 60%, rgba(255, 133, 82, 0.18) 100%); }
.app-cta__phone-pin {
  position: absolute;
  bottom: 18px; right: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--ds-accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(255, 133, 82, 0.45);
}

/* Copy column */
.app-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 4px 12px;
  border-radius: var(--ds-radius-pill);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.20);
  font-size: var(--ds-text-xs);
  font-weight: 700;
  color: #fff;
}
.app-cta__eyebrow i { color: var(--ds-accent); }
.app-cta__title { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; margin: 0 0 12px; line-height: 1.3; }
.app-cta__body { font-size: var(--ds-text-base); line-height: 1.85; margin: 0 0 22px; opacity: 0.92; max-width: 60ch; }

.app-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.app-cta__btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--ds-brand-800);
  padding: 13px 24px; border-radius: var(--ds-radius-pill);
  font-weight: 800; text-decoration: none;
  border: 0;
  font-family: var(--ds-font);
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 100ms var(--ds-ease), background 200ms var(--ds-ease);
}
.app-cta__btn:hover { transform: translateY(-1px); color: var(--ds-brand-800); }
.app-cta__btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}
.app-cta__btn--ghost:hover { background: rgba(255, 255, 255, 0.22); color: #fff; }
.app-cta__btn--installed {
  background: rgba(16, 185, 129, 0.18);
  color: #BBF7D0;
  border: 1px solid rgba(16, 185, 129, 0.35);
  cursor: default;
}
.app-cta__btn--installed:hover { transform: none; }

@media (max-width: 768px) {
  .app-cta { grid-template-columns: 1fr; padding: 28px 22px; text-align: center; gap: 22px; margin: 32px 14px; border-radius: var(--ds-radius-xl); }
  .app-cta__phone { margin: 0 auto; width: 148px; height: 226px; }
  .app-cta__title { font-size: var(--ds-text-xl); }
  .app-cta__body { font-size: var(--ds-text-sm); margin-inline: auto; }
  .app-cta__actions { justify-content: center; }
  .app-cta__eyebrow { margin-inline: auto; }
}
