/* ─────────────────────────────────────────────
   StoryHomes Seller Landing Page
   Brand: Lora (headers) + Montserrat (body)
   ───────────────────────────────────────────── */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { font-family: 'Montserrat', system-ui, sans-serif; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }
ul { list-style: none; }

/* ── Design Tokens ── */
:root {
  /* Brand palette */
  --black:        #010101;
  --ivory:        #F6F1EC;
  --champagne:    #E3CDBC;
  --light-brown:  #9B8B7C;
  --forest:       #5C6D62;
  --olive:        #8C9965;

  /* Semantic */
  --bg:           var(--ivory);
  --surface:      #ffffff;
  --surface-2:    #faf7f4;
  --border:       var(--champagne);
  --border-subtle: rgba(227,205,188,0.5);
  --text-primary:  var(--black);
  --text-secondary: #4a4440;
  --text-muted:   var(--light-brown);
  --accent:       var(--forest);
  --accent-hover: #4a5a50;
  --accent-text:  #ffffff;
  --progress-bg:  rgba(0,0,0,0.08);

  /* Spacing */
  --header-h:     64px;

  /* Transitions */
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --dur:          380ms;
  --dur-fast:     200ms;

  /* Radius */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;

  /* Shadows */
  --shadow-card:  0 2px 16px rgba(1,1,1,0.07), 0 1px 4px rgba(1,1,1,0.04);
  --shadow-card-hover: 0 4px 32px rgba(1,1,1,0.11), 0 2px 8px rgba(1,1,1,0.06);
}

[data-theme="dark"] {
  --bg:           #171714;
  --surface:      #1f1e1a;
  --surface-2:    #252420;
  --border:       rgba(227,205,188,0.15);
  --border-subtle: rgba(227,205,188,0.08);
  --text-primary:  #F6F1EC;
  --text-secondary: rgba(246,241,236,0.75);
  --text-muted:   rgba(246,241,236,0.45);
  --accent:       var(--olive);
  --accent-hover: #7a8756;
  --accent-text:  #ffffff;
  --progress-bg:  rgba(255,255,255,0.1);
  --shadow-card:  0 2px 20px rgba(0,0,0,0.4);
  --shadow-card-hover: 0 4px 40px rgba(0,0,0,0.55);
}

/* ── Theme Transition ── */
body,
body *:not(.step):not(.check-svg *):not(.check-ring):not(.check-mark) {
  transition:
    background-color 350ms var(--ease),
    border-color 350ms var(--ease),
    color 350ms var(--ease),
    box-shadow 350ms var(--ease);
}

/* ── App Shell ── */
.app-shell {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text-primary);
}

/* ── Header ── */
.app-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 100;
  gap: 16px;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo { height: 32px; width: auto; }
[data-theme="dark"] .logo { filter: brightness(0) invert(1); }

/* Progress */
.progress-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  max-width: 320px;
  margin: 0 auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease);
}
.progress-wrap.visible { opacity: 1; pointer-events: auto; }
.progress-track {
  flex: 1;
  height: 3px;
  background: var(--progress-bg);
  border-radius: 99px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
  width: 0%;
  transition: width 550ms var(--ease-out);
}
.progress-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Theme Button */
.theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 99px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: background-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.theme-btn:hover { background: var(--surface); transform: scale(1.05); }
.theme-btn:active { transform: scale(0.97); }
.icon-sun, .icon-moon { display: flex; }
[data-theme="light"] .icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: flex; }

/* ── Header secondary CTA — matches primary CTA design language exactly ── */
.btn-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 99px;
  border: none;
  background: var(--accent);
  color: var(--accent-text);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.btn-header-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(92,109,98,0.3);
}
.btn-header-cta:active { transform: translateY(0); box-shadow: none; }

/* Hide on mobile — header is compact and the hero CTA is immediately visible */
@media (max-width: 600px) {
  .btn-header-cta { display: none; }
}

/* ── Steps Viewport ──
   Explicit height (not flex:1) so marketing sections below don't shrink it.
   flex:1 shares space with siblings; height:calc() guarantees the full viewport. */
.steps-viewport {
  position: relative;
  margin-top: var(--header-h);
  height: calc(100dvh - var(--header-h));
  height: calc(100vh - var(--header-h)); /* fallback for older browsers */
  flex: none;
  overflow: hidden;
}

/* ── Step Base ── */
.step {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(40px);
  transition:
    opacity var(--dur) var(--ease),
    transform var(--dur) var(--ease);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 32px 16px;
}
.step.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.step.exit-left {
  opacity: 0;
  transform: translateX(-40px);
  pointer-events: none;
}
.step.enter-right {
  opacity: 0;
  transform: translateX(40px);
  pointer-events: none;
}

/* ── Step Inner ── */
.step-inner {
  width: 100%;
  max-width: 520px;
  margin: auto;
}
.step-inner--scroll { max-width: 680px; }

/* ── Step Card ── */
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
}
.step-card--wide { max-width: 100%; }

@media (max-width: 600px) {
  .step-card { padding: 28px 20px; border-radius: var(--r-lg); }
}

/* ── Step Head ── */
.step-head { margin-bottom: 28px; }
.step-head h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 6px;
}
.step-head p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── Hero: Full-screen video background ── */
#step-1 {
  /* overflow:clip clips visually without creating a scroll container —
     scroll events propagate to the window so the page can scroll. */
  overflow: clip;
  padding: clamp(24px, 4vh, 48px) clamp(32px, 7vw, 96px);
  padding-bottom: calc(clamp(24px, 4vh, 48px) + var(--footer-h));
  align-items: center;
  justify-content: flex-start; /* left-anchor the content block */
}

/* Video layer */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0; /* WAAPI fades in on canplay */
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(4, 4, 3, 0.80) 0%,
    rgba(4, 4, 3, 0.65) 55%,
    rgba(4, 4, 3, 0.78) 100%
  );
}

/* Content panel — left-aligned over video */
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  padding: 0;
}

/* Text always reads as light — sitting over dark video overlay */
.hero-content .eyebrow              { color: var(--olive); }
.hero-content .hero-headline        { color: #F2EDE8; }
.hero-content .hero-headline em     { color: var(--olive); }
.hero-content .hero-sub             { color: rgba(242, 237, 232, 0.70); }
.hero-content .value-list li        { color: rgba(242, 237, 232, 0.88); }
.hero-content .vl-icon              { background: var(--olive); }
.hero-content .offer-callout {
  background: rgba(140, 153, 101, 0.50);
  border-color: rgba(140, 153, 101, 0.90);
  border-left-color: var(--olive);
  box-shadow: 0 0 36px rgba(140, 153, 101, 0.30);
}
[data-theme="dark"] .hero-content .offer-callout {
  background: rgba(140, 153, 101, 0.50);
}
.hero-content .oc-icon              { background: var(--olive); }
.hero-content .oc-body strong       { color: #F2EDE8; }
.hero-content .oc-body span         { color: rgba(242, 237, 232, 0.90); }

/* ── Rotating Word Container ── */
.rw-outer {
  display: inline-block;
  vertical-align: bottom;
  overflow: hidden;
}
.rw {
  display: block;
  white-space: nowrap;
  will-change: opacity, transform;
}

/* ── Scroll hint ── */
.hero-scroll-hint {
  position: absolute;
  bottom: calc(var(--footer-h) + 18px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(246, 241, 236, 0.38);
  padding: 8px;
  transition: color 200ms ease;
}
.hero-scroll-hint:hover { color: rgba(246, 241, 236, 0.65); }
@keyframes bounce-hint {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}
.hero-scroll-hint svg { animation: bounce-hint 2.4s ease-in-out infinite; }

/* ── Header over hero: dark glass treatment ── */
.app-header.on-hero {
  background: rgba(6, 6, 5, 0.70);
  border-bottom-color: rgba(246, 241, 236, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.app-header.on-hero .logo       { filter: brightness(0) invert(1); }
.app-header.on-hero .theme-btn  {
  background: rgba(246, 241, 236, 0.09);
  border-color: rgba(246, 241, 236, 0.12);
  color: rgba(246, 241, 236, 0.65);
}
.app-header.on-hero .btn-header-cta {
  background: var(--olive);
}

@media (max-width: 600px) {
  #step-1 {
    padding: 20px 20px 40px;
    padding-top: clamp(48px, 10vh, 80px);
    align-items: flex-start;
    justify-content: center;
  }
  .hero-content { max-width: 100%; }
}

/* ═══════════════════════════════════════════════
   Hamburger + Mobile Nav
   ═══════════════════════════════════════════════ */

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.ham-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
}
.app-header.on-hero .ham-bar { background: rgba(246, 241, 236, 0.85); }
.hamburger-btn[aria-expanded="true"] .ham-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn[aria-expanded="true"] .ham-bar:nth-child(2) {
  opacity: 0;
}
.hamburger-btn[aria-expanded="true"] .ham-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 98;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.mobile-nav[hidden] { display: none; }
.mob-nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.mob-nav-link:last-of-type { border-bottom: none; }
.mob-nav-link:hover { color: var(--accent); }
.mob-nav-cta {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

@media (max-width: 700px) {
  .hamburger-btn { display: flex; }
  .btn-header-cta { display: none; }
  .nav-link--cta { display: none !important; }
}

/* ── Comparison table scroll on mobile ── */
.comp-scroll-wrap {
  width: 100%;
}
@media (max-width: 560px) {
  .comp-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .comp-table {
    min-width: 480px;
  }
}

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: clamp(8px, 1.2vh, 16px);
}

.hero-headline {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: clamp(10px, 1.4vh, 18px);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
  white-space: nowrap;
}


.hero-sub {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: clamp(12px, 1.8vh, 20px);
  max-width: 480px;
}
.br-desk { display: none; }
@media (min-width: 600px) { .br-desk { display: inline; } }

/* Value List */
.value-list {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vh, 16px);
  margin-bottom: clamp(14px, 2vh, 24px);
}
.value-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.45;
}
.vl-icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  flex-shrink: 0;
}
[data-theme="dark"] .vl-icon { background: var(--olive); }

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--accent-text);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: background-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(92,109,98,0.3);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }
.btn-primary svg { flex-shrink: 0; }

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-start {
  align-self: auto;
  margin-bottom: clamp(8px, 1.2vh, 14px);
}
.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  padding: 14px 22px;
  border: 1px solid rgba(246, 241, 236, 0.32);
  border-radius: 99px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(246, 241, 236, 0.82);
  text-decoration: none;
  white-space: nowrap;
  background: rgba(246, 241, 236, 0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  margin-bottom: clamp(8px, 1.2vh, 14px);
}
.btn-ghost-hero:hover {
  background: rgba(246, 241, 236, 0.12);
  border-color: rgba(246, 241, 236, 0.5);
  color: rgba(246, 241, 236, 1);
}
@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
}

.micro-trust {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Back Button ── */
.btn-back {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 14px 20px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: color var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast);
}
.btn-back:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
  background: var(--surface-2);
}

/* ── Step Nav ── */
.step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

/* ── Form Fields ── */
.field-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field-group:last-of-type { margin-bottom: 0; }

.field-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.field-row .field-group { margin-bottom: 0; }
.grow-1 { flex: 1; min-width: 80px; }
.grow-2 { flex: 2; min-width: 130px; }

.field-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field-optional {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: 11px;
  opacity: 0.7;
}

.field-input {
  width: 100%;
  padding: 13px 16px;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background-color var(--dur-fast);
  -webkit-appearance: none;
}
.field-input::placeholder { color: var(--text-muted); }
.field-input:focus {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(92,109,98,0.15);
}
.field-input[readonly] {
  opacity: 0.6;
  cursor: default;
  background: var(--surface-2);
}
.field-input.is-error { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,0.1); }

.field-error {
  font-size: 12px;
  color: #c0392b;
  font-weight: 500;
  min-height: 16px;
  display: block;
}

/* Locked field (State) */
.locked-field .field-input { color: var(--text-muted); }

/* ── Autocomplete ── */
.autocomplete-wrap { position: relative; }
.ac-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card-hover);
  z-index: 200;
  overflow: hidden;
  max-height: 220px;
  overflow-y: auto;
}
.ac-dropdown.open { display: block; }
.ac-item {
  padding: 11px 16px;
  font-size: 14px;
  color: var(--text-primary);
  cursor: pointer;
  transition: background var(--dur-fast);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ac-item:hover, .ac-item.focused { background: var(--surface-2); }
.ac-item-icon { flex-shrink: 0; margin-top: 2px; color: var(--text-muted); }
.ac-item-text { display: flex; flex-direction: column; gap: 2px; }
.ac-item-main { font-weight: 500; }
.ac-item-sub { font-size: 12px; color: var(--text-muted); }

/* ── Selection Cards ── */
.question-block { margin-bottom: 28px; }
.question-block:last-of-type { margin-bottom: 0; }

.question-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.card-grid {
  display: grid;
  gap: 10px;
}
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 520px) {
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 380px) {
  .cols-2, .cols-3 { grid-template-columns: 1fr; }
}

.sel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: center;
  transition:
    border-color var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.sel-card:hover {
  border-color: var(--accent);
  background: var(--surface-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
}
.sel-card.selected {
  border-color: var(--accent);
  background: rgba(92,109,98,0.08);
  box-shadow: 0 0 0 3px rgba(92,109,98,0.15);
}
[data-theme="dark"] .sel-card.selected {
  background: rgba(140,153,101,0.12);
  box-shadow: 0 0 0 3px rgba(140,153,101,0.2);
}
.sel-card:active { transform: scale(0.98); }

/* Wide cards (condition) */
.sel-card--wide { flex-direction: column; align-items: flex-start; gap: 4px; padding: 16px 18px; }

.sc-icon { color: var(--accent); }
.sel-card.selected .sc-icon { color: var(--accent); }

.sc-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.sel-card.selected .sc-label { color: var(--accent); }

.sc-sub {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── Contact Step Trust Row ── */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-item svg { flex-shrink: 0; color: var(--accent); }

/* Submit button states */
.btn-submit .btn-spinner { display: none; }
.btn-submit.loading .btn-label { display: none; }
.btn-submit.loading .btn-spinner { display: flex; align-items: center; gap: 6px; }

@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin 0.9s linear infinite; }

/* ── Confirmation ── */
.confirmation-card {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.check-wrap {
  width: 80px; height: 80px;
  margin: 0 auto 28px;
}
.check-svg { width: 80px; height: 80px; }

.check-ring {
  stroke: var(--accent);
  fill: none;
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  transform-origin: center;
  transform: rotate(-90deg);
  transition: stroke-dashoffset 700ms var(--ease-out) 100ms;
}
.check-mark {
  stroke: var(--accent);
  fill: none;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  transition: stroke-dashoffset 450ms var(--ease-out) 650ms;
}
.step.active .check-ring { stroke-dashoffset: 0; }
.step.active .check-mark { stroke-dashoffset: 0; }

.confirmation-card h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(24px, 4.5vw, 32px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.confirmation-sub {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 420px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.next-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}

.ns-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ns-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
}
.ns-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ns-body strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.ns-body span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .app-header { padding: 0 16px; }
  .progress-wrap { max-width: 160px; }
  .progress-label { display: none; }
  .step { padding: 20px 12px; }
  .step-card { padding: 24px 16px; }
  /* hero-inner padding is handled by clamp() — no override needed */
  .step-nav { flex-direction: column-reverse; gap: 10px; }
  .step-nav .btn-primary,
  .step-nav .btn-back { width: 100%; justify-content: center; }
  .btn-back { text-align: center; }
  /* At narrow widths let the italic phrase wrap naturally */
  .hero-headline em { white-space: normal; }
}

/* No hero-inner or hero-headline overrides at 900px+ —
   clamp() handles sizing at all viewport sizes. */

/* ── Scrollbar ── */
.step::-webkit-scrollbar { width: 4px; }
.step::-webkit-scrollbar-track { background: transparent; }
.step::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }

/* ── Focus visible ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ─────────────────────────────────────────────
   Offer Callout
   ───────────────────────────────────────────── */
.offer-callout {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(92, 109, 98, 0.07);
  border: 1px solid rgba(92, 109, 98, 0.22);
  border-left-width: 3px;
  border-radius: var(--r-lg);
  /* Sits after the sub-headline, before the value list */
  margin-bottom: clamp(14px, 2vh, 24px);
  max-width: 420px;
  position: relative;
}
[data-theme="dark"] .offer-callout {
  background: rgba(140, 153, 101, 0.09);
  border-color: rgba(140, 153, 101, 0.22);
  border-left-color: var(--olive);
  box-shadow: 0 0 28px rgba(140, 153, 101, 0.06);
}
.oc-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.oc-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.oc-body strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.oc-body span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ─────────────────────────────────────────────
   Site Footer (fixed, slim)
   ───────────────────────────────────────────── */
:root { --footer-h: 0px; }

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  padding: 14px 0;
}
.site-footer-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 10.5px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.5;
  flex-shrink: 0;
}
.footer-copy {
  font-size: 10.5px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Padding adjustment: keep step content above footer */
.step {
  padding-bottom: calc(32px + var(--footer-h));
}

@media (max-width: 700px) {
  .footer-address { display: none; }
  .site-footer-inner { padding: 0 16px; }
}
@media (max-width: 480px) {
  .footer-legal { gap: 5px; }
  .site-footer-inner { flex-direction: column; gap: 2px; justify-content: center; }
  :root { --footer-h: 0px; }
  .step { padding-bottom: calc(20px + var(--footer-h)); }
}

/* ═══════════════════════════════════════════════
   Marketing Sections
   ═══════════════════════════════════════════════ */

/* ── Scroll reveal — uses @keyframes, not transition,
      to avoid the global specificity conflict ── */
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; }
.reveal.revealed { animation: reveal-up 680ms cubic-bezier(0.16, 1, 0.3, 1) both; }
.reveal--delay-1.revealed { animation-delay: 100ms; }
.reveal--delay-2.revealed { animation-delay: 200ms; }

/* ── Shared section shell ── */
.mkt {
  background: var(--bg);
  color: var(--text-primary);
}
.mkt-section {
  padding: clamp(64px, 9vw, 100px) 0;
}
.mkt-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.mkt-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.mkt-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.mkt-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
}
.accent-brand { color: var(--accent); }

/* ── Testimonials ── */
.trust-section .mkt-inner {
  max-width: 1440px;
  padding: 0 clamp(20px, 3vw, 48px);
}
.trust-section {
  padding-bottom: clamp(32px, 4vw, 44px);
}
.video-section {
  padding-top: clamp(32px, 4vw, 44px);
}
.process-section {
  padding-bottom: clamp(32px, 4vw, 44px);
}
.faq-section {
  padding-top: clamp(32px, 4vw, 44px);
}
.testimonials-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: stretch;
}
.testimonials-grid .testimonial-card {
  flex: 1 1 0;
  min-width: 0;
}
@media (max-width: 900px) {
  .testimonials-grid { flex-wrap: wrap; }
  .testimonials-grid .testimonial-card { flex: 0 1 calc(50% - 7px); min-width: 0; }
}
@media (max-width: 560px) {
  .testimonials-grid .testimonial-card { flex: 0 1 100%; }
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tc-quote {
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0.7;
  display: flex;
}
.tc-body {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
  flex: 1;
}
.tc-stars {
  display: flex;
  gap: 3px;
  color: #C9A84C;
}
.tc-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}
.tc-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.tc-date {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Credibility grid ── */
.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 820px) {
  .credibility-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .credibility-grid { grid-template-columns: 1fr; }
}

.credibility-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cr-icon {
  color: var(--accent);
  display: flex;
}
.credibility-item strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.credibility-item span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── Atmosphere section ── */
.atm-section {
  position: relative;
  height: clamp(280px, 38vw, 480px);
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.atm-image-wrap {
  position: absolute;
  inset: -10% 0;
  z-index: 0;
}
.atm-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  opacity: 0.88;
}
.atm-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(4, 4, 3, 0.80) 0%,
    rgba(4, 4, 3, 0.65) 50%,
    rgba(4, 4, 3, 0.80) 100%
  );
}
.atm-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(20px, 6vw, 80px);
}
.atm-quote {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 400;
  color: rgba(246, 241, 236, 0.9);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto;
}

/* ── Process section ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 720px) {
  .process-grid { grid-template-columns: 1fr; }
}

.process-card {
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.pc-number {
  font-family: 'Lora', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 24px;
}
.pc-icon { color: var(--accent); }
.pc-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.pc-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Final CTA section ── */
.final-cta-section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-top: none;
  padding-bottom: calc(clamp(64px, 9vw, 100px) + var(--footer-h));
}
.final-cta-section .mkt-inner {
  max-width: 680px;
  position: relative;
  z-index: 1;
}
.fcta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fcta-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.fcta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(4, 4, 3, 0.82) 0%,
    rgba(4, 4, 3, 0.68) 55%,
    rgba(4, 4, 3, 0.80) 100%
  );
}
.final-cta-section .mkt-eyebrow { color: var(--olive); }
.final-cta-section .final-cta-title { color: #F2EDE8; }
.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.final-cta-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
}

/* ── Bottom address card ── */
.ai-card {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
}
@media (max-width: 560px) {
  .ai-card { padding: 28px 22px; }
}

/* ── Section CTA (comparison + process) ── */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(36px, 5vw, 52px);
}

/* ── Credibility grid inside process section ── */
.process-section .credibility-grid {
  margin-top: clamp(20px, 3vw, 28px);
}

/* ── Cities list ── */
.cities-wrap {
  margin-top: clamp(40px, 5vw, 56px);
  text-align: center;
}
.cities-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.city-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 7px 15px;
  border: 1px solid var(--accent);
  border-radius: 99px;
  background: transparent;
  white-space: nowrap;
}
[data-theme="dark"] .city-link {
  color: #ffffff;
}
.city-link:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

/* ═══════════════════════════════════════════════
   Nav Links (hero only)
   ═══════════════════════════════════════════════ */

.nav-links {
  display: none;
  align-items: center;
  gap: 24px;
}
.app-header.on-hero .nav-links {
  display: flex;
}
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(246, 241, 236, 0.72);
  text-decoration: none;
  white-space: nowrap;
}
.nav-link:hover {
  color: rgba(246, 241, 236, 1);
}
.nav-link.nav-link--active {
  color: var(--accent);
}
/* "Next Steps" standalone link — always next to Get Started, visible on hero only */
.nav-link--cta {
  display: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(246, 241, 236, 0.72);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.app-header.on-hero .nav-link--cta {
  display: inline;
}
@media (max-width: 700px) {
  .nav-links { display: none !important; }
  .nav-link--cta { display: none !important; }
}

/* ═══════════════════════════════════════════════
   Metrics Section
   ═══════════════════════════════════════════════ */

.metrics-section {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 640px) {
  .metrics-grid { grid-template-columns: 1fr; }
}
.metric-card {
  padding: clamp(32px, 5vw, 52px) clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  border-right: 1px solid var(--border);
}
.metric-card:last-child { border-right: none; }
@media (max-width: 640px) {
  .metric-card { border-right: none; border-bottom: 1px solid var(--border); }
  .metric-card:last-child { border-bottom: none; }
}
.metric-number {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}
.metric-count {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(48px, 7vw, 68px);
  font-weight: 700;
  color: var(--accent);
}
.metric-suffix {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--accent);
  opacity: 0.65;
}
.metric-word {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.metric-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 200px;
}

/* ═══════════════════════════════════════════════
   Comparison Table
   ═══════════════════════════════════════════════ */

.comparison-section {
  background: var(--surface-2);
}
.comp-table {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.comp-header-row,
.comp-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
}
.comp-header-row {
  background: var(--surface-2);
  border-bottom: 2px solid var(--border);
}
.comp-row {
  border-bottom: 1px solid var(--border);
}
.comp-row:last-child { border-bottom: none; }
.comp-row:nth-child(odd) { background: var(--surface); }
.comp-row:nth-child(even) { background: var(--surface-2); }
.comp-cell {
  padding: 14px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border);
}
.comp-cell:last-child { border-right: none; }
.comp-feature-cell {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 13px;
}
.comp-col-header {
  justify-content: center;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.comp-col-header--us {
  color: var(--accent);
  background: rgba(140, 153, 101, 0.07);
}
[data-theme="light"] .comp-col-header--us {
  background: rgba(92, 109, 98, 0.14);
}
.comp-col-header--them {
  color: var(--text-muted);
}
.comp-us-cell {
  justify-content: center;
  background: rgba(140, 153, 101, 0.04);
}
[data-theme="light"] .comp-us-cell {
  background: rgba(92, 109, 98, 0.07);
}
.comp-them-cell {
  justify-content: center;
}
.comp-val--good {
  font-weight: 700;
  color: var(--accent);
}
.comp-val--bad {
  color: var(--text-muted);
  font-weight: 400;
}
.comp-check {
  display: flex;
  align-items: center;
  color: var(--accent);
}
.comp-x {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  opacity: 0.45;
}
@media (max-width: 600px) {
  .comp-cell { padding: 12px 10px; font-size: 12px; }
  .comp-feature-cell { font-size: 11.5px; }
  .comp-header-row,
  .comp-row { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* ═══════════════════════════════════════════════
   5-Star Rating — defined with .tc-author block above
   ═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   Video Section
   ═══════════════════════════════════════════════ */

.yt-wrap {
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}
.yt-facade {
  position: relative;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  background: #000;
  display: block;
}
.local-video {
  width: 100%;
  display: block;
  border-radius: var(--r-xl);
  aspect-ratio: 16 / 9;
  background: #111;
  object-fit: cover;
}
.yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.yt-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 3, 0.28);
}
.yt-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.yt-play-icon {
  width: 76px;
  height: 76px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}
.yt-play-icon svg { color: #111; }
@keyframes yt-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(0,0,0,0.28), 0 0 0 0 rgba(255,255,255,0.4); }
  50%       { box-shadow: 0 8px 32px rgba(0,0,0,0.28), 0 0 0 12px rgba(255,255,255,0); }
}
.yt-facade:not(.playing) .yt-play-icon {
  animation: yt-pulse 2.8s ease-in-out infinite;
}
.yt-facade:hover .yt-play-icon {
  animation: none;
  background: white;
  transform: scale(1.07);
}

/* ═══════════════════════════════════════════════
   FAQ Section
   ═══════════════════════════════════════════════ */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  line-height: 1.45;
}
.faq-trigger:hover { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}
.faq-body {
  height: 0;
  overflow: hidden;
}
.faq-body-inner {
  padding: 0 0 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.72;
  max-width: 680px;
}

