/* ============================================================
   Section 34 Co — style.css
   Design tokens from DESIGN.md, mobile-first, no framework
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy:          #1b2a4a;
  --gold:          #c5a55a;
  --gold-light:    #d4b472;
  --gold-dark:     #a8893f;
  --white:         #ffffff;
  --off-white:     #f8f7f4;
  --slate:         #f1f0ed;
  --text-primary:  #1b2a4a;
  --text-secondary:#4a5568;
  --text-muted:    #718096;
  --border:        #e2e0db;
  --success:       #2d6a4f;
  --error:         #c62828;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-pill: 9999px;

  --shadow-card: 0 1px 0 var(--border);
  --shadow-chat: 0 4px 24px rgba(0,0,0,0.06);

  --max-width: 1100px;
  --section-pad-v: 56px;
}

@media (min-width: 768px) {
  :root {
    --section-pad-v: 80px;
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

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

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .container {
    padding-inline: 40px;
  }
}

/* ---------- Typography ---------- */
.section-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .section-h2 {
    font-size: 2.25rem;
  }
}

.section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-top: 12px;
}

@media (min-width: 768px) {
  .section-sub {
    font-size: 1.075rem;
  }
}

.section-header {
  margin-bottom: 48px;
}

.body-lg {
  font-family: 'Inter', sans-serif;
  font-size: 1.075rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.body-lg + .body-lg {
  margin-top: 16px;
}

.inline-link {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-link:hover {
  color: var(--gold-dark);
}

/* ---------- Buttons ---------- */
.btn-primary,
.btn-secondary-light,
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-secondary-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-secondary-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: var(--white);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .nav-inner {
    padding-inline: 40px;
  }
}

.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s ease;
  position: relative;
  z-index: 101;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.nav.scrolled .nav-logo {
  color: var(--navy);
}

.nav-logo-34 {
  position: relative;
}

.nav-logo-34::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Hamburger — CSS-only toggle */
.nav-toggle-input {
  display: none;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav.scrolled .nav-hamburger span {
  background: var(--navy);
}

.nav-toggle-input:checked ~ .nav-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle-input:checked ~ .nav-hamburger span:nth-child(2) {
  opacity: 0;
}
.nav-toggle-input:checked ~ .nav-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav links — mobile: full-screen overlay */
.nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: fixed;
  inset: 0;
  background: var(--navy);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 100;
}

.nav-toggle-input:checked ~ .nav-links {
  opacity: 1;
  pointer-events: all;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.15s ease, opacity 0.15s ease;
}

.nav-link:hover {
  color: var(--white);
}

.nav-cta-link {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
}

.nav-cta-link:hover {
  background: var(--gold-dark);
}

/* Desktop nav */
@media (min-width: 768px) {
  .nav-hamburger {
    display: none;
  }

  .nav-links {
    flex-direction: row;
    position: static;
    background: transparent;
    opacity: 1;
    pointer-events: all;
    gap: 32px;
  }

  .nav-link {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.75);
  }

  .nav.scrolled .nav-link {
    color: rgba(27,42,74,0.75);
  }

  .nav-link:hover {
    color: var(--white);
    opacity: 1;
  }

  .nav.scrolled .nav-link:hover {
    color: var(--navy);
  }

  .nav-cta-link,
  .nav.scrolled .nav-cta-link {
    color: var(--navy) !important;
    font-size: 0.9375rem;
    padding: 10px 22px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(197,165,90,0.07) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  padding-top: 152px;
  padding-bottom: 80px;
}

.hero-accent-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 680px;
}

@media (min-width: 768px) {
  .hero-h1 {
    font-size: 3.5rem;
  }
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.075rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.trust-sep {
  color: var(--gold);
  font-size: 1rem;
}

/* ---------- Trust Stats ---------- */
.stats {
  background: var(--off-white);
  padding-block: var(--section-pad-v);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.stat-item {
  text-align: center;
}

@media (min-width: 768px) {
  .stat-item {
    padding-inline: 24px;
    border-right: 1px solid var(--border);
  }
  .stat-item:last-child {
    border-right: none;
  }
}

.stat-rule {
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 16px;
}

.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 3rem;
  }
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* ---------- Problem / Stakes ---------- */
.problem {
  background: var(--white);
  padding-block: var(--section-pad-v);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
}

.problem-copy .section-h2 {
  margin-bottom: 24px;
}

.problem-callout {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  color: var(--white);
}

.callout-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.callout-amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}

.callout-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  margin-bottom: 24px;
}

.callout-rule {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 20px;
}

.callout-footnote {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

/* ---------- How It Works ---------- */
.how-it-works {
  background: var(--off-white);
  padding-block: var(--section-pad-v);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  counter-reset: steps;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.step {
  position: relative;
}

@media (min-width: 768px) {
  .step {
    padding-right: 32px;
  }

  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 10px;
    width: calc(100% - 20px);
    height: 1px;
    background: linear-gradient(to right, var(--gold) 0%, var(--border) 100%);
    opacity: 0.5;
  }
}

.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(27,42,74,0.1);
  line-height: 1;
  margin-bottom: 12px;
}

.step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- Documents ---------- */
.documents {
  background: var(--white);
  padding-block: var(--section-pad-v);
}

.docs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .docs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.doc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: box-shadow 0.18s ease;
}

.doc-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.doc-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  display: inline-block;
  background: rgba(197,165,90,0.12);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.doc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}

.doc-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- Intake Section ---------- */
.intake-section {
  background: var(--off-white);
  padding-block: var(--section-pad-v);
}

/* Chat Container */
.chat-container {
  max-width: 680px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-chat);
  overflow: hidden;
}

/* Progress bar */
.chat-progress-wrap {
  height: 4px;
  background: var(--border);
}

.chat-progress-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 0 2px 2px 0;
  transition: width 0.35s ease;
  width: 0%;
}

.chat-progress-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: right;
  padding: 10px 20px 0;
}

.chat-messages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  max-height: 400px;
  overflow-y: auto;
}

/* Bot message row */
.chat-row-bot {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  animation: chat-appear 0.2s ease both;
}

@keyframes chat-appear {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.chat-bubble-bot {
  background: var(--slate);
  color: var(--text-primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.55;
  max-width: 520px;
}

/* User message row */
.chat-row-user {
  display: flex;
  justify-content: flex-end;
  animation: chat-appear 0.2s ease both;
}

.chat-bubble-user {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg) 0 var(--radius-lg) var(--radius-lg);
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.55;
  max-width: 520px;
}

/* Typing indicator */
.chat-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 18px;
}

.chat-typing span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typing-dot 1s infinite ease;
}

.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing-dot {
  0%, 80%, 100% { transform: scale(0.8); opacity: 0.4; }
  40%           { transform: scale(1);   opacity: 1; }
}

/* Input area */
.chat-input-area {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Option buttons */
.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-option {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.chat-option:hover,
.chat-option.selected {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Text/email/textarea inputs */
.chat-text-input {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  resize: vertical;
  transition: border-color 0.15s ease;
}

.chat-text-input:focus {
  outline: none;
  border-color: var(--navy);
}

.chat-text-input.error {
  border-color: var(--error);
}

.chat-send-btn {
  align-self: flex-end;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.15s ease;
  border: none;
}

.chat-send-btn:hover {
  background: var(--gold-dark);
}

.chat-send-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.chat-continue-btn {
  align-self: flex-end;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.15s ease, opacity 0.15s ease;
  border: none;
  cursor: pointer;
}

.chat-continue-btn:hover:not(:disabled) {
  background: var(--gold-dark);
}

.chat-continue-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

/* Spinner */
.chat-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.chat-spinner::before {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Completion state */
.chat-complete {
  padding: 32px 24px;
  text-align: center;
}

.chat-complete-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(45,106,79,0.1);
  color: var(--success);
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.chat-complete h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.chat-complete p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}

.chat-complete .ref {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
}

/* ---------- Pricing ---------- */
.pricing {
  background: var(--white);
  padding-block: var(--section-pad-v);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.pricing-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-tier {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.pricing-amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: inherit;
  line-height: 1.1;
  margin-bottom: 12px;
}

.pricing-card--featured .pricing-amount {
  color: var(--white);
}

.pricing-best-for {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-card--featured .pricing-best-for {
  color: rgba(255,255,255,0.65);
  border-bottom-color: rgba(255,255,255,0.15);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-list li {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
  padding-left: 0;
}

.pricing-card--featured .pricing-list li {
  color: rgba(255,255,255,0.75);
}

.pricing-footnote {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 28px;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--off-white);
  padding-block: var(--section-pad-v);
}

.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}

@media (min-width: 768px) {
  .faq-question {
    font-size: 1.0625rem;
  }
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.faq-icon::before {
  content: '+';
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--navy);
  border-color: var(--navy);
}

.faq-question[aria-expanded="true"] .faq-icon::before {
  content: '−';
  color: var(--white);
}

.faq-answer {
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer[hidden] {
  display: block;
  max-height: 0;
  visibility: hidden;
}

.faq-answer:not([hidden]) {
  max-height: 400px;
  visibility: visible;
}

.faq-answer p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  padding-bottom: 20px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: var(--white);
  padding-block: 56px 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .footer-nav {
    flex-direction: row;
    gap: 28px;
  }
}

.footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s ease;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-sep {
  color: rgba(255,255,255,0.2);
}

.footer-link-sm {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.15s ease;
}

.footer-link-sm:hover {
  color: var(--white);
}

/* ---------- Error message ---------- */
.chat-error {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--error);
  padding: 10px 14px;
  background: rgba(198,40,40,0.07);
  border-radius: var(--radius-md);
}
