/* ============================================================
   COUNSELWORKS — styles.css
   Production stylesheet for counselintake.com
   Design: Premium legal infrastructure · Navy / Mustard / Off-white
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: #111827;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

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

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

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --navy:       #0F1E2E;
  --navy-2:     #162535;
  --navy-3:     #1C2F42;
  --mustard:    #C97D2E;
  --mustard-lt: rgba(201,125,46,.12);
  --canvas:     #F5F4F0;
  --white:      #FFFFFF;
  --border:     #E0DDD7;
  --border-dk:  rgba(255,255,255,.09);
  --t1:         #111827;
  --t2:         #6B7280;
  --t3:         #9CA3AF;
  --green:      #16A34A;
  --green-bg:   rgba(22,163,74,.08);
  --amber:      #D97706;
  --amber-bg:   rgba(217,119,6,.09);
  --red:        #DC2626;
  --red-bg:     rgba(220,38,38,.07);
  --radius-sm:  4px;
  --radius-md:  6px;
  --radius-lg:  10px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
}

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.max-60 { max-width: 620px; }
.max-50 { max-width: 520px; }

/* ── TYPOGRAPHY HELPERS ───────────────────────────────────── */
.section-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 12px;
}

.section-tag-light { color: rgba(201,125,46,.8); }

.section-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 18px;
}

.section-heading-light { color: var(--white); }

.section-body {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.75;
  margin-bottom: 40px;
}

.section-body-light { color: rgba(255,255,255,.6); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 22px;
  background: var(--mustard);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: background .15s, transform .1s;
  white-space: nowrap;
  border: none;
}

.btn-primary:hover {
  background: #b5701f;
  transform: translateY(-1px);
}

.btn-primary:active { transform: translateY(0); }

.btn-lg { padding: 13px 26px; font-size: 14px; }

.btn-full { width: 100%; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 0;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  font-weight: 500;
  transition: color .15s;
}

.btn-ghost:hover { color: rgba(255,255,255,.9); }

.btn-login {
  font-size: 12px;
  font-weight: 600;
  color: var(--t2);
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: color .15s, border-color .15s;
}

.btn-login:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* ── SECTIONS ─────────────────────────────────────────────── */
.section {
  padding: 80px 0;
}

.section-light { background: var(--white); }
.section-canvas { background: var(--canvas); }

.section-dark {
  background: var(--navy);
}

/* ── HEADER ───────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow .2s;
}

.header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 60px;
  gap: 0;
}

.logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.025em;
  flex-shrink: 0;
  margin-right: 36px;
}

.logo-counsel { color: var(--navy); }
.logo-works   { color: var(--mustard); }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--t2);
  transition: color .15s;
  white-space: nowrap;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .2s;
}

.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  background: var(--white);
  gap: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--t2);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-link:last-of-type { border-bottom: none; }
.mobile-cta { margin-top: 12px; text-align: center; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,.025) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,.025) 40px);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-pre {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 24px;
}

.hero-pre-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mustard);
  flex-shrink: 0;
}

.hero-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 22px;
}

.hero-headline em {
  color: var(--mustard);
  font-style: italic;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  line-height: 1.72;
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-trust li {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mustard);
  flex-shrink: 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-self: center;
}

.metric-item {
  background: rgba(255,255,255,.04);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background .2s;
}

.metric-item:hover { background: rgba(255,255,255,.07); }

.metric-val {
  font-family: 'DM Mono', monospace;
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
}

.metric-lbl {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  font-weight: 500;
  line-height: 1.4;
}

/* ── PROBLEM ──────────────────────────────────────────────── */
.problem-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background .15s;
}

.problem-item:last-child { border-bottom: none; }
.problem-item:hover { background: #FAFAF8; }

.problem-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--mustard);
  flex-shrink: 0;
  margin-top: 2px;
  min-width: 22px;
}

.problem-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.4;
}

.problem-body {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.65;
}

/* ── OFFER ────────────────────────────────────────────────── */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}

.offer-item {
  background: rgba(255,255,255,.04);
  padding: 28px;
  transition: background .15s;
}

.offer-item:hover { background: rgba(255,255,255,.07); }

.offer-step {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 10px;
}

.offer-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.offer-body {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin-bottom: 14px;
}

.offer-specs {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.offer-specs li {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.45;
}

.offer-specs li::before {
  content: '→';
  color: var(--mustard);
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 1px;
}

.offer-statement {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(201,125,46,.08);
  border: 1px solid rgba(201,125,46,.2);
  border-radius: var(--radius-md);
}

.offer-statement-bar {
  width: 3px;
  height: 36px;
  background: var(--mustard);
  border-radius: 2px;
  flex-shrink: 0;
}

.offer-statement p {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  font-style: italic;
  line-height: 1.55;
}

/* ── SYSTEM ───────────────────────────────────────────────── */
.system-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.system-modules {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sys-module {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background .15s;
}

.sys-module:last-child { border-bottom: none; }
.sys-module:hover { background: #FAFAF8; }

.sys-module-active {
  background: #FAFAF8;
  border-left: 3px solid var(--mustard);
  padding-left: 17px;
}

.sys-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mustard);
  flex-shrink: 0;
  margin-top: 5px;
}

.sys-indicator-off { background: var(--border); }

.sys-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.35;
}

.sys-body {
  font-size: 12px;
  color: var(--t2);
  line-height: 1.6;
}

/* Portal Mockup */
.portal-mock {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

.pm-topbar {
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pm-logo {
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
}

.pm-logo em {
  color: var(--mustard);
  font-style: normal;
}

.pm-topbar-right {
  display: flex;
  align-items: center;
  gap: 7px;
}

.pm-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.pm-firm {
  font-size: 10px;
  color: rgba(255,255,255,.35);
  font-weight: 500;
}

.pm-body {
  display: flex;
  height: 340px;
}

.pm-sidebar {
  width: 108px;
  background: rgba(0,0,0,.22);
  padding: 12px 0;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,.05);
}

.pm-nav-item {
  padding: 8px 14px;
  font-size: 11px;
  color: rgba(255,255,255,.38);
  font-weight: 500;
  cursor: default;
}

.pm-nav-active {
  background: rgba(201,125,46,.13);
  color: var(--white);
  border-left: 2px solid var(--mustard);
  font-weight: 700;
  padding-left: 12px;
}

.pm-main {
  flex: 1;
  padding: 16px 18px;
  overflow: hidden;
}

.pm-section-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 10px;
}

.pm-case {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 5px;
  padding: 10px 12px;
  margin-bottom: 6px;
}

.pm-case-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
}

.pm-case-name {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  display: block;
}

.pm-case-ref {
  font-size: 9px;
  color: rgba(255,255,255,.3);
  font-family: 'DM Mono', monospace;
  margin-top: 1px;
  display: block;
}

.pm-badge {
  font-size: 8px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}

.pm-badge-blue   { background: rgba(37,99,235,.2);  color: #93C5FD; }
.pm-badge-amber  { background: rgba(217,119,6,.18); color: #FCD34D; }
.pm-badge-green  { background: rgba(22,163,74,.18);  color: #86EFAC; }

.pm-readiness {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.pm-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  overflow: hidden;
}

.pm-fill {
  height: 100%;
  border-radius: 2px;
  transition: width .4s ease;
}

.pm-fill-green { background: #16A34A; }
.pm-fill-amber { background: #D97706; }

.pm-score {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  font-family: 'DM Mono', monospace;
  min-width: 22px;
  text-align: right;
}

.pm-case-meta {
  font-size: 9px;
  color: rgba(255,255,255,.28);
}

.pm-health-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 5px;
  padding: 10px 12px;
  margin-top: 8px;
}

.pm-health-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 5px;
}

.pm-health-text {
  font-size: 10px;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
  font-style: italic;
}

.system-quote {
  background: var(--canvas);
  border-left: 3px solid var(--mustard);
  padding: 20px 26px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 15px;
  color: var(--t2);
  line-height: 1.7;
  font-style: italic;
  font-family: 'DM Serif Display', Georgia, serif;
}

/* ── WHO ──────────────────────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.who-card {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.who-yes {
  background: var(--green-bg);
  border: 1px solid rgba(22,163,74,.15);
}

.who-no {
  background: var(--red-bg);
  border: 1px solid rgba(220,38,38,.13);
}

.who-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.who-title-yes { color: var(--green); }
.who-title-no  { color: var(--red); }

.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--t2);
  margin-bottom: 11px;
  line-height: 1.5;
}

.who-list li:last-child { margin-bottom: 0; }

.who-yes .who-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.who-no .who-list li::before {
  content: '✗';
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── PROCESS ──────────────────────────────────────────────── */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
}

.process-item {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}

.process-item:last-child { padding-bottom: 0; }

.process-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.process-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'DM Mono', monospace;
  position: relative;
  z-index: 1;
}

.process-line {
  width: 1px;
  flex: 1;
  background: var(--border);
  margin-top: 6px;
}

.process-content { padding-top: 6px; }

.process-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.process-time {
  font-size: 11px;
  font-weight: 600;
  color: var(--mustard);
  background: var(--mustard-lt);
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: .03em;
}

.process-body {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 12px;
}

.process-outcome {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.65;
  background: var(--canvas);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--border);
}

.process-outcome strong { color: var(--navy); }

/* ── PRICING ──────────────────────────────────────────────── */
.pricing-card {
  max-width: 660px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.pricing-header {
  background: var(--navy);
  padding: 32px 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.pricing-amount {
  font-family: 'DM Mono', monospace;
  font-size: 52px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1;
}

.pricing-period {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  margin-top: 6px;
}

.pricing-right { text-align: right; }

.pricing-badge {
  display: inline-block;
  background: rgba(201,125,46,.15);
  border: 1px solid rgba(201,125,46,.25);
  color: var(--mustard);
  font-size: 9px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pricing-terms {
  font-size: 11px;
  color: rgba(255,255,255,.3);
  line-height: 1.6;
  text-align: right;
}

.pricing-body { padding: 28px 36px; }

.pricing-includes-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.pricing-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--t2);
  line-height: 1.5;
}

.pricing-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 13px;
}

.pricing-compare {
  background: var(--canvas);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 22px;
}

.pricing-compare-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}

.compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.compare-row:last-child { border-bottom: none; }

.compare-row-total { padding-top: 12px; }

.compare-label { font-size: 13px; color: var(--t2); flex: 1; }
.compare-label-bold { font-weight: 700; color: var(--t1); }

.compare-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--t1);
  white-space: nowrap;
}

.compare-high { color: var(--red); }
.compare-green { color: var(--green); }

.compare-note {
  font-size: 11px;
  color: var(--t3);
  margin-top: 10px;
  font-style: italic;
}

.pricing-sub {
  text-align: center;
  font-size: 12px;
  color: var(--t3);
  margin-top: 12px;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 720px;
}

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

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  background: var(--white);
  border: none;
  cursor: pointer;
  transition: background .15s;
}

.faq-question:hover { background: #FAFAF8; }
.faq-question[aria-expanded="true"] { background: #FAFAF8; }

.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--mustard);
  flex-shrink: 0;
  transition: transform .2s;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
  background: #FAFAF8;
}

.faq-answer p {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.7;
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-body p {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.75;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pillar {
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.pillar:last-child { border-bottom: none; }

.pillar-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}

.pillar-body {
  font-size: 12px;
  color: var(--t2);
  line-height: 1.65;
}

/* ── APPLICATION ──────────────────────────────────────────── */
.apply-section {
  background: var(--navy);
  padding: 88px 0;
}

.apply-inner {
  max-width: 580px;
  margin: 0 auto;
}

.apply-form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 0;
}

.form-row { display: flex; gap: 16px; }
.form-row-2 > * { flex: 1; min-width: 0; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

.form-input {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,.9);
  transition: border-color .15s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder { color: rgba(255,255,255,.22); }

.form-input:focus {
  outline: none;
  border-color: rgba(201,125,46,.5);
  background: rgba(255,255,255,.08);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-select option { background: #1C2F42; color: #fff; }

.form-textarea {
  min-height: 80px;
  resize: vertical;
  line-height: 1.6;
}

.form-note {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,.25);
  margin-top: 14px;
  line-height: 1.55;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: #0A1520;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 48px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.footer-logo { margin-bottom: 8px; display: inline-block; }

.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,.25);
  line-height: 1.55;
}

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

.footer-link {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  font-weight: 500;
  transition: color .15s;
}

.footer-link:hover { color: rgba(255,255,255,.7); }

.footer-legal p {
  font-size: 10px;
  color: rgba(255,255,255,.18);
  line-height: 1.65;
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 10px;
  color: rgba(255,255,255,.2);
  margin-top: 14px;
}

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .hero-inner { gap: 40px; }
  .system-layout { gap: 32px; }
  .about-grid { gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-legal { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  /* Header */
  .nav, .header-actions { display: none; }
  .mobile-toggle { display: flex; }

  /* Hero */
  .hero { padding: 64px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-metrics { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-wrap: wrap; }

  /* Sections */
  .problem-item { padding: 18px 20px; }
  .offer-grid { grid-template-columns: 1fr; }
  .system-layout { grid-template-columns: 1fr; }
  .pm-body { height: 260px; }
  .who-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .pricing-list { grid-template-columns: 1fr; }
  .pricing-header { flex-direction: column; gap: 14px; }
  .pricing-right { text-align: left; }
  .pricing-terms { text-align: left; }
  .form-row { flex-direction: column; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .hero-headline { font-size: 36px; }
  .section-heading { font-size: 28px; }
  .pricing-amount { font-size: 40px; }
  .pricing-body { padding: 22px 22px; }
  .pricing-header { padding: 24px 22px; }
  .apply-form { padding: 22px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-metrics { grid-template-columns: 1fr 1fr; }
  .metric-val { font-size: 22px; }
  .hero-headline { font-size: 30px; }
}

/* ── PRINT ────────────────────────────────────────────────── */
@media print {
  .header, .mobile-toggle, .hero-ctas, .apply-section, .footer { display: none; }
  body { color: #000; }
  .section { padding: 20px 0; }
}
