/* ═══════════════════════════════════════════
   GC4S — Apple-Inspired Design System
   Inter + Cormorant Garamond · Dark + Gold
   ═══════════════════════════════════════════ */

:root {
  /* Apple-inspired palette */
  --white: #FFFFFF;
  --offwhite: #F5F5F7;
  --dark: #111111;
  --dark-surface: #1d1d1f;
  --text-primary: #1d1d1f;
  --text-secondary: #86868b;
  --text-tertiary: #b0b0b0;
  --gold: #C9A84C;
  --gold-hover: #d4b455;
  --navy: #1B2A4A;
  /* Keep these for non-landing pages */
  --navy-deep: #111D3A;
  --cream: #F9F8F5;
  --text: #2A2A2A;
  --text-mid: #5C5C5C;
  --text-light: #8A8A8A;
  --border: #DDD9D0;
  --gold-dim: rgba(201, 168, 76, 0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--white);
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

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

/* ── Layout ── */
.container { max-width: 980px; margin: 0 auto; padding: 0 24px; }

/* ── Section Label ── */
.section-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
  display: none;
}

.section-label--center { justify-content: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn--pill { border-radius: 980px; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  color: var(--dark);
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.25);
}
.btn--gold:hover {
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
  transform: translateY(-1px);
}

.btn--gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--gold-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(0, 0, 0, 0.12);
}
.btn--outline:hover {
  background: var(--text-primary);
  color: var(--white);
  border-color: var(--text-primary);
}

.btn--sm { padding: 12px 24px; font-size: 0.82rem; }
.btn--lg { padding: 16px 36px; font-size: 0.95rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--white); }
}

/* ════════════════════════════════════════
   NAVIGATION — Frosted Glass
   ════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  height: 52px;
}

.nav__logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.nav__logo span { color: var(--gold); }

.nav__links {
  display: none;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__cta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  padding: 8px 20px;
  border-radius: 980px;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 1px 4px rgba(201, 168, 76, 0.2);
}
.nav__cta:hover {
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.35);
  transform: translateY(-0.5px);
}

/* ── Language Toggle ── */
.lang-toggle {
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.lang-btn {
  padding: 4px 10px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  background: transparent;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.lang-btn:hover { color: var(--text-primary); }
.lang-btn--active {
  background: var(--gold);
  color: var(--dark);
}

/* ════════════════════════════════════════
   HERO — Center-Aligned, Dark Background
   ════════════════════════════════════════ */
.hero {
  background: var(--white);
  color: var(--text-primary);
  padding: 160px 0 0;
  overflow: hidden;
}

.hero__image {
  max-width: 1080px;
  margin: 60px auto 0;
  padding: 0 24px;
}
.hero__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.hero__center {
  text-align: center;
  display: flex;
  justify-content: center;
}

.hero__content {
  text-align: center;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 32px;
}

.hero__badge-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(3.2rem, 8vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.07;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--text-secondary);
}

.hero__sub {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.hero .btn--gold {
  background: var(--gold);
  box-shadow: none;
  border-radius: 980px;
  padding: 14px 30px;
}
.hero .btn--gold:hover {
  background: var(--gold-hover);
  box-shadow: none;
  transform: none;
}

.btn--outline-light {
  background: transparent;
  color: var(--gold);
  border: none;
  padding: 14px 20px;
  font-size: 1rem;
}
.btn--outline-light:hover {
  text-decoration: underline;
}

.hero__note {
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--text-tertiary);
  letter-spacing: 0.01em;
  font-weight: 400;
}

/* ════════════════════════════════════════
   THE PROCESS — Clean Steps with Watermark
   ════════════════════════════════════════ */
.process-section {
  padding: 140px 0;
  background: var(--white);
}

.process__header {
  margin-bottom: 80px;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}

.process__title {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}

.process__sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 400;
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.process-step {
  position: relative;
  padding-left: 0;
}

.process-step__image {
  display: none;
}

.process-step__image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.process-step__number {
  font-family: 'Inter', sans-serif;
  font-size: 6rem;
  font-weight: 200;
  color: #e8e8ed;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.process-step__body h3 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.process-step__body p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 540px;
  font-weight: 400;
}

.process-step__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process-step__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-primary);
  font-weight: 500;
}

.process-step__features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   WHY GC4S — Glass Cards
   ════════════════════════════════════════ */
.trust-section {
  padding: 120px 0;
  background: var(--offwhite);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.trust-card {
  background: var(--white);
  border-radius: 18px;
  padding: 40px 32px;
  text-align: center;
}

.trust-card__icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  background: var(--offwhite);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.trust-card__icon-wrap--gold { background: rgba(201, 168, 76, 0.08); border-color: rgba(201, 168, 76, 0.15); }
.trust-card__icon-wrap--gold .trust-card__icon { color: var(--gold); }

.trust-card__icon {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.trust-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.trust-card__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 300px;
  margin: 0 auto;
}

/* ════════════════════════════════════════
   PRICING — Glass Cards
   ════════════════════════════════════════ */
.pricing-section {
  padding: 140px 0;
  background: var(--white);
}

.pricing-section__header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-section__title {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}

.pricing-section__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
}

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

.price-card {
  background: var(--offwhite);
  border-radius: 18px;
  padding: 36px 28px;
  position: relative;
}

.price-card--featured {
  background: var(--white);
  border: 2px solid var(--gold);
  padding-top: 44px;
}

.price-card__badge {
  position: absolute;
  top: 0;
  left: 28px;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  padding: 5px 16px;
  border-radius: 980px;
}

.price-card__name {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.price-card__price {
  font-family: 'Inter', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.price-card__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  line-height: 1.55;
}

.price-card__features {
  list-style: none;
  margin-bottom: 24px;
}

.price-card__features li {
  padding: 5px 0;
  font-size: 0.85rem;
  color: var(--text-primary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.price-card__features li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-card__features li.excluded { color: var(--text-secondary); }
.price-card__features li.excluded::before {
  content: '\2014';
  color: var(--text-tertiary);
}

/* ════════════════════════════════════════
   FINAL CTA — Dark Background
   ════════════════════════════════════════ */
.cta-final {
  padding: 120px 0;
  text-align: center;
  background: var(--offwhite);
}

.cta-final__title {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

.cta-final__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
  font-weight: 400;
}

.cta-final__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

/* ════════════════════════════════════════
   FOOTER — Minimal
   ════════════════════════════════════════ */
.footer {
  background: var(--offwhite);
  color: var(--text-secondary);
  padding: 40px 0;
  font-size: 0.75rem;
  line-height: 1.8;
}

.footer__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.footer__logo {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.footer__logo span { color: var(--gold); }

.footer__links { display: flex; gap: 24px; }
.footer__links a {
  color: var(--text-secondary);
  font-size: 0.78rem;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--text-primary); }

.footer__disclaimer {
  max-width: 580px;
  margin-bottom: 6px;
  color: var(--text-tertiary);
}

.footer__copy {
  margin-top: 14px;
  color: var(--text-tertiary);
}

/* ════════════════════════════════════════
   RESPONSIVE — Desktop (768px+)
   ════════════════════════════════════════ */
@media (min-width: 768px) {
  .nav__links {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .nav__links a {
    font-size: 0.82rem;
    color: var(--text-secondary);
    transition: color 0.2s;
    font-weight: 500;
  }
  .nav__links a:hover { color: var(--text-primary); }

  .hero { padding: 160px 0 0; }
  .hero__content { max-width: 800px; }
  .hero__image img { height: 520px; }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-step--with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .process-step--reverse {
    direction: rtl;
  }
  .process-step--reverse > * {
    direction: ltr;
  }
  .process-step__image {
    display: block;
  }
  .process-step__image img {
    height: 340px;
  }
  .process-step__number {
    margin-bottom: 8px;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1.08fr 1fr;
    gap: 16px;
  }
  .price-card--featured {
    margin-top: -8px;
  }

  .cta-final__actions {
    flex-direction: row;
    justify-content: center;
  }

  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ═════════════════════════════════════════
   Screener Page
   ═════════════════════════════════════════ */
.screener-page {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}

.screener-header {
  background: var(--navy);
  padding: 16px 0;
}

.screener-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

.screener-header__logo {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.screener-header__logo span { color: var(--gold); }

.screener-header .lang-toggle {
  position: absolute;
  right: 24px;
}

.progress-bar {
  width: 100%;
  height: 3px;
  background: var(--border);
}

.progress-bar__fill {
  height: 100%;
  background: var(--gold);
  transition: width 0.4s ease;
}

.screener-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.screener-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.screener-card__step {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.screener-card__question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 28px;
}

.screener-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.screener-option {
  display: block;
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s;
  text-align: left;
}

.screener-option:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.screener-option.selected {
  border-color: var(--navy);
  background: rgba(27, 46, 94, 0.04);
  color: var(--navy);
  font-weight: 600;
}

/* ── Screener Result ── */
.result { text-align: center; }

.result__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
  border: 1px solid var(--border);
}

.result__icon--green { border-color: #059669; }
.result__icon--gold { border-color: var(--gold); }
.result__icon--red { border-color: #B91C1C; }

.result__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.result__desc {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.result__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

/* ── Email Capture ── */
.email-capture { margin-top: 20px; }

.input-row { margin-bottom: 10px; }
.input-row input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
}
.input-row input:focus { border-color: var(--navy); }

/* ═════════════════════════════════════════
   Intake Form
   ═════════════════════════════════════════ */
.intake-subtitle {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: -12px;
  margin-bottom: 24px;
}

.intake-field { margin-bottom: 16px; }

.intake-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.intake-req { color: var(--gold); }

.intake-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
  color: var(--text);
}
.intake-input:focus { border-color: var(--navy); }

.intake-input--error { border-color: #C0392B; }
.intake-error {
  color: #C0392B;
  font-size: 0.8rem;
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
}

select.intake-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C5C5C' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

textarea.intake-input {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

/* ── Toggle Yes/No (multi-field steps) ── */
.intake-yesno {
  display: flex;
  gap: 10px;
}

.intake-yesno__btn {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s;
}

.intake-yesno__btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.intake-yesno__btn.selected {
  border-color: var(--navy);
  background: rgba(27, 46, 94, 0.04);
  color: var(--navy);
  font-weight: 600;
}

.intake-next { margin-top: 24px; }
.intake-back { margin-top: 12px; }

.intake-saving {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
}

/* HTMX indicator: hidden by default, shown during request */
.htmx-indicator { display: none; }
.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator { display: block; }

/* ── Review ── */
.intake-review { text-align: left; margin-top: 20px; }

.intake-review__section {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 24px;
  margin-bottom: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.intake-review__section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.intake-review__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(221, 217, 208, 0.5);
  font-size: 0.84rem;
}

.intake-review__label {
  color: var(--text-mid);
  font-weight: 500;
  flex-shrink: 0;
  max-width: 50%;
}

.intake-review__value {
  color: var(--navy);
  font-weight: 600;
  text-align: right;
  word-break: break-word;
}

/* ═════════════════════════════════════════
   Contract E-Sign
   ═════════════════════════════════════════ */
.contract-wrapper {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  animation: fadeIn 0.3s ease;
}

.contract-header {
  text-align: center;
  margin-bottom: 32px;
}

.contract-header__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.contract-header__sub {
  font-size: 0.88rem;
  color: var(--text-mid);
}

.contract-body {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 36px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
}

.contract-intro {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.contract-section {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 24px;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.contract-list {
  margin: 8px 0 0 20px;
  list-style: disc;
}

.contract-list li {
  padding: 2px 0;
  line-height: 1.7;
}

.contract-sign {
  background: var(--white);
  border: 2px solid var(--gold);
  padding: 32px 36px;
  margin-bottom: 16px;
}

.contract-sign__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.contract-sign__input {
  font-size: 1.1rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.02em;
}

.contract-sign__btn {
  margin-top: 20px;
}

.contract-sign__note {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
}

.contract-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.contract-consent__check {
  margin-top: 3px;
  accent-color: var(--navy);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.contract-consent__text {
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.6;
}

.contract-confirmation {
  text-align: left;
  max-width: 320px;
  margin: 20px auto 0;
  background: var(--cream);
  padding: 16px 20px;
  border: 1px solid var(--border);
}

.contract-confirmation__row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.84rem;
}

.contract-confirmation__label {
  color: var(--text-mid);
  font-weight: 500;
}

.contract-confirmation__value {
  color: var(--navy);
  font-weight: 600;
}

.contract-actions { margin-top: 28px; }

.contract-actions__note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-light);
}

.btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.contract-back {
  text-align: center;
  margin-top: 16px;
}

/* ═════════════════════════════════════════
   Responsive
   ═════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero { padding: 120px 0 80px; }

  .price-card--featured { margin-top: 0; order: -1; }

  .footer__top { flex-direction: column; gap: 16px; }

  .screener-card { padding: 32px 24px; }
  .contract-body { padding: 28px 20px; }
  .contract-sign { padding: 24px 20px; }
  .nav__cta { display: none; }

  .cta-final { padding: 80px 0; }

  .process-section { padding: 80px 0; }
  .trust-section { padding: 80px 0; }
  .pricing-section { padding: 80px 0; }
  .process__steps { gap: 48px; }
  .process-step__number { font-size: 4rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .btn--lg { padding: 14px 28px; font-size: 0.88rem; }
}

/* ═════════════════════════════════════════
   Attorney Dashboard
   ═════════════════════════════════════════ */

/* ── Dashboard Navigation ── */
.dash-nav {
  background: var(--navy);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.dash-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
}

.dash-nav__logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}
.dash-nav__logo span { color: var(--gold); }

.dash-nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dash-nav__link {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.dash-nav__link:hover { color: var(--gold); }

/* ── Dashboard Layout ── */
.dash-page {
  min-height: 100vh;
  background: var(--cream);
}

.dash-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 32px 24px;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dash-header__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
}

.dash-header__count {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ── Dashboard Table ── */
.dash-table {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-collapse: collapse;
  font-size: 0.88rem;
}

.dash-table th {
  padding: 12px 16px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.dash-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(221, 217, 208, 0.5);
  color: var(--text);
  vertical-align: middle;
}

.dash-table tr:last-child td { border-bottom: none; }
.dash-table tr:hover td { background: rgba(249, 248, 245, 0.5); }

.dash-table__name {
  font-weight: 600;
  color: var(--navy);
}

.dash-table__link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.82rem;
}
.dash-table__link:hover { text-decoration: underline; }

/* ── Status Badges ── */
.dash-badge {
  display: inline-block;
  padding: 3px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dash-badge--signed {
  background: var(--gold-dim);
  color: #8B7024;
}

.dash-badge--reviewed {
  background: rgba(27, 46, 94, 0.1);
  color: var(--navy);
}

.dash-badge--delivered {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
}

/* ── Dashboard Cards ── */
.dash-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 32px;
  margin-bottom: 16px;
}

.dash-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ── Detail Info Grid ── */
.dash-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}

.dash-info-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dash-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash-info-value {
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 600;
}

/* ── Forms Tags ── */
.dash-forms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dash-form-tag {
  padding: 4px 12px;
  background: var(--cream);
  border: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── Notes ── */
.dash-notes {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  resize: vertical;
  min-height: 80px;
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
  line-height: 1.6;
}
.dash-notes:focus { border-color: var(--navy); }

/* ── Action Buttons Row ── */
.dash-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* ── Empty State ── */
.dash-empty {
  text-align: center;
  padding: 60px 24px;
  background: var(--white);
  border: 1px solid var(--border);
}

.dash-empty__icon {
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.dash-empty__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.dash-empty__desc {
  font-size: 0.88rem;
  color: var(--text-mid);
}

/* ── Back Link ── */
.dash-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 20px;
  transition: color 0.2s;
}
.dash-back:hover { color: var(--navy); }

/* ── Login ── */
.dash-login-error {
  text-align: center;
  margin-bottom: 16px;
}

.dash-login-btn { margin-top: 16px; }

/* ═════════════════════════════════════════
   Client Status Page
   ═════════════════════════════════════════ */

.status-timeline {
  text-align: left;
  max-width: 360px;
  margin: 24px auto 0;
}

.status-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
}

.status-step__dot {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-light);
  margin-top: 1px;
}

.status-step--done .status-step__dot {
  border-color: #059669;
  background: #059669;
  color: var(--white);
}

.status-step--active .status-step__dot {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}

.status-step__content { flex: 1; }

.status-step__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.status-step--pending .status-step__title { color: var(--text-light); }

.status-step__desc {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ── Dashboard Responsive ── */
@media (max-width: 768px) {
  .dash-info-grid { grid-template-columns: 1fr; }
  .dash-card { padding: 20px 16px; }
  .dash-table { font-size: 0.82rem; }
  .dash-table th,
  .dash-table td { padding: 10px 12px; }
  .dash-actions { flex-direction: column; }
  .dash-actions .btn { width: 100%; justify-content: center; }
}

/* ═════════════════════════════════════════
   Chat Consultation
   ═════════════════════════════════════════ */

/* ── Disclaimer Page ── */
.chat-disclaimer-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--cream);
  padding: 24px;
}

.chat-disclaimer {
  max-width: 520px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px 40px;
  text-align: center;
}

.chat-disclaimer__icon {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.chat-disclaimer__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
}

.chat-disclaimer__body {
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text);
}

.chat-disclaimer__body p { margin-bottom: 12px; }

.chat-disclaimer__highlight {
  background: #FFF8E1;
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  margin: 16px 0;
}

.chat-disclaimer__body ul {
  list-style: disc;
  padding-left: 20px;
  margin: 12px 0;
}

.chat-disclaimer__body li { margin-bottom: 8px; }

.chat-disclaimer__btn {
  margin-top: 24px;
  width: 100%;
  padding: 14px 24px;
  font-size: 0.95rem;
}

/* ── Chat Page Layout ── */
.chat-page {
  height: 100vh;
  overflow: hidden;
  background: var(--cream);
}

.chat-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

/* ── Chat Header ── */
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--white);
  flex-shrink: 0;
}

.chat-header__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-header__back {
  color: var(--white);
  font-size: 1.2rem;
  text-decoration: none;
  opacity: 0.8;
}
.chat-header__back:hover { opacity: 1; }

.chat-header__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

.chat-header__subtitle {
  font-size: 0.72rem;
  opacity: 0.7;
}

.chat-header__lang {
  padding: 4px 8px;
  font-size: 0.75rem;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}
.chat-header__lang option { color: var(--text); background: var(--white); }

.chat-header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-header__controls {
  display: flex;
  gap: 6px;
}

/* ── Timer ── */
.chat-timer {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.chat-timer--warning {
  color: #DC3545;
  animation: timerPulse 1s infinite;
}

@keyframes timerPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ── Messages Area ── */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Message Bubbles ── */
.chat-bubble {
  max-width: 75%;
  padding: 10px 14px;
  position: relative;
  word-wrap: break-word;
}

.chat-bubble--mine {
  align-self: flex-end;
  background: #F0F0F0;
  color: var(--text);
  border-radius: 16px 16px 4px 16px;
}

.chat-bubble--theirs {
  align-self: flex-start;
  background: var(--navy);
  color: var(--white);
  border-radius: 16px 16px 16px 4px;
}

.chat-bubble--system {
  align-self: center;
  max-width: 90%;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  padding: 6px 12px;
  background: transparent;
}

.chat-bubble__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
  margin-bottom: 4px;
}

.chat-bubble__text {
  font-size: 0.9rem;
  line-height: 1.55;
}

.chat-bubble__toggle {
  display: block;
  font-size: 0.72rem;
  margin-top: 6px;
  opacity: 0.6;
  cursor: pointer;
}
.chat-bubble--theirs .chat-bubble__toggle:hover { opacity: 1; }

.chat-bubble__original {
  display: block;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.82rem;
  opacity: 0.7;
  font-style: italic;
}

.chat-bubble__time {
  display: block;
  font-size: 0.65rem;
  text-align: right;
  margin-top: 4px;
  opacity: 0.5;
}

/* ── Input Area ── */
.chat-input {
  display: flex;
  gap: 8px;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
}

.chat-input__field {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.chat-input__field:focus { border-color: var(--navy); }

.chat-input__send {
  padding: 10px 20px;
  background: var(--navy);
  color: var(--white);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.chat-input__send:hover { background: var(--navy-deep); }

/* ── Session Ended Overlay ── */
.chat-ended {
  padding: 32px 20px;
  text-align: center;
  background: var(--cream);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.chat-ended p {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: 16px;
}

/* ── Attorney Memo ── */
.chat-memo-form { text-align: left; }

.chat-memo {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  resize: vertical;
  min-height: 80px;
  outline: none;
  margin-bottom: 12px;
}
.chat-memo:focus { border-color: var(--navy); }

.chat-memo-actions {
  display: flex;
  gap: 8px;
}

/* ── Consultations Management ── */
.consult-create-form { margin-top: 8px; }

.consult-create-fields {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
}

.consult-create-field label { display: block; margin-bottom: 4px; }

.consult-actions-cell {
  display: flex;
  gap: 8px;
  align-items: center;
}

.consult-copy-link {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  opacity: 0.6;
  padding: 2px 6px;
}
.consult-copy-link:hover { opacity: 1; }

.dash-table__link--danger { color: #DC3545; }

.dash-nav__link--active {
  color: var(--gold) !important;
}

/* ── Button variants for chat ── */
.btn--xs {
  padding: 4px 10px;
  font-size: 0.72rem;
}

.btn--danger {
  background: #DC3545;
  color: var(--white);
  border: none;
}
.btn--danger:hover { background: #C82333; }

/* ── Badge variants ── */
.dash-badge--included { background: #E8F5E9; color: #2E7D32; }
.dash-badge--paid { background: #FFF3E0; color: #E65100; }
.dash-badge--available { background: #E3F2FD; color: #1565C0; }
.dash-badge--booked { background: #E8F5E9; color: #2E7D32; }
.dash-badge--completed { background: var(--cream); color: var(--text-mid); }
.dash-badge--cancelled { background: #FFEBEE; color: #C62828; }

/* ── Voice Consultation ── */
.voice-page { background: var(--dark); }
.voice-container { border-color: var(--gold-dim); }
.voice-header { flex-wrap: wrap; }
.voice-subtitles {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  min-height: 200px;
}
.voice-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.voice-mic-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 32px;
  border: 2px solid var(--navy);
  border-radius: 50px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.voice-mic-btn:hover { background: var(--navy-deep); }
.voice-mic-btn--muted {
  background: #C62828;
  border-color: #C62828;
}
.voice-mic-btn--muted:hover { background: #B71C1C; }
.voice-mic-btn span:first-child { font-size: 24px; }
.voice-status {
  font-size: 12px;
  color: var(--text-mid);
  font-family: 'Inter', sans-serif;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--cream);
}
.dash-badge--voice { background: #E8EAF6; color: #283593; }
.dash-badge--text { background: var(--cream); color: var(--text-mid); }
.consult-mode-radios {
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}
.consult-mode-radios label {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

/* ── Utility ── */
.hidden { display: none !important; }

/* ── Chat Responsive ── */
@media (max-width: 768px) {
  .chat-container { border: none; }
  .chat-bubble { max-width: 85%; }
  .chat-header__controls { flex-direction: column; gap: 4px; }
  .consult-create-fields { grid-template-columns: 1fr; }
  .voice-mic-btn { padding: 12px 24px; }
}
