/* ================================================================
   WINDY CITY GROWTH — Shared stylesheet v2 (light theme)
   Light content sections  ·  dark hero/header/footer  ·  gold #BA7517
================================================================ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  /* Light section backgrounds */
  --bg:          #FFFFFF;
  --bg-2:        #F7F3EC;
  --bg-3:        #EEE8DA;

  /* Dark section backgrounds */
  --navy:        #14181F;
  --navy-2:      #1C2230;
  --navy-3:      #222A3A;

  /* Gold accent */
  --gold:        #BA7517;
  --gold-lt:     #D4901F;
  --gold-dim:    rgba(186,117,23,0.10);
  --gold-bdr:    rgba(186,117,23,0.28);

  /* Dark text (for light sections) */
  --text:        #1C2030;
  --text-2:      rgba(28,32,48,0.60);
  --text-3:      rgba(28,32,48,0.32);

  /* Light text (for dark sections) */
  --lt:          #EDE8DC;
  --lt-2:        rgba(237,232,220,0.58);
  --lt-3:        rgba(237,232,220,0.28);

  /* Borders — light sections */
  --bdr:         rgba(0,0,0,0.08);
  --bdr-md:      rgba(0,0,0,0.14);

  /* Borders — dark sections */
  --dbdr:        rgba(255,255,255,0.08);
  --dbdr-md:     rgba(255,255,255,0.13);

  /* Backward-compat aliases (used in some inline styles) */
  --cream:       var(--text);
  --cream-dim:   var(--text-2);
  --cream-mute:  var(--text-3);
  --border:      var(--bdr);
  --border-md:   var(--bdr-md);

  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Figtree', system-ui, sans-serif;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow:      0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.14);
  --tr:          0.22s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }

/* ── Typography helpers ─────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.6vw, 2.55rem);
  font-weight: 700; color: var(--text);
  line-height: 1.2; letter-spacing: -0.01em;
}
.section-sub {
  font-size: 1rem; color: var(--text-2);
  margin-top: 12px; line-height: 1.75; max-width: 560px;
}
.tc { text-align: center; }
.tc .section-sub { margin-left: auto; margin-right: auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 6px;
  font-weight: 600; font-size: 0.88rem; letter-spacing: 0.01em;
  border: 2px solid transparent; white-space: nowrap;
  transition: background var(--tr), color var(--tr), border-color var(--tr),
              transform var(--tr), box-shadow var(--tr);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); box-shadow: 0 6px 20px rgba(186,117,23,0.35); }

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

.btn-ghost { background: transparent; border: none; color: var(--text-2); padding: 13px 4px; font-size: 0.92rem; font-weight: 500; }
.btn-ghost:hover { color: var(--text); transform: none; }
.btn-ghost .arr { display: inline-block; transition: transform var(--tr); }
.btn-ghost:hover .arr { transform: translateX(5px); }

/* ghost on dark backgrounds */
.on-dark.btn-ghost { color: var(--lt-2); }
.on-dark.btn-ghost:hover { color: var(--lt); }

/* ── Navigation ─────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(20,24,31,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--dbdr);
  transition: background 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}
#nav.scrolled {
  background: #FFFFFF;
  border-bottom-color: var(--bdr);
  box-shadow: 0 2px 20px rgba(0,0,0,0.09);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }

/* logo */
.nav-logo { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--lt); letter-spacing: -0.01em; transition: color var(--tr); }
.nav-logo em { font-style: normal; color: var(--gold); }
#nav.scrolled .nav-logo { color: var(--text); }

/* links */
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--lt-2); transition: color var(--tr); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width var(--tr); border-radius: 1px; }
.nav-links a:hover,
.nav-links a.active { color: var(--lt); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
#nav.scrolled .nav-links a { color: var(--text-2); }
#nav.scrolled .nav-links a:hover,
#nav.scrolled .nav-links a.active { color: var(--text); }

/* nav CTA */
.nav-cta { margin-left: 8px; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--lt); border-radius: 2px; transition: transform 0.28s, opacity 0.28s, background var(--tr); }
#nav.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  display: none; position: absolute; top: 70px; left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid var(--dbdr);
  padding: 16px 24px 24px; box-shadow: 0 14px 36px rgba(0,0,0,0.3);
}
#nav.scrolled .mobile-menu { background: #FFFFFF; border-top-color: var(--bdr); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; font-size: 0.95rem; font-weight: 500; color: var(--lt-2); border-bottom: 1px solid var(--dbdr); transition: color var(--tr); }
#nav.scrolled .mobile-menu a { color: var(--text-2); border-bottom-color: var(--bdr); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ── Hero (dark section) ─────────────────────────────────────── */
#hero {
  background: var(--navy);
  padding: 148px 0 96px; position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 75% 50%, rgba(186,117,23,0.07) 0%, transparent 60%);
  pointer-events: none;
}
#hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: center; position: relative; z-index: 1; }

/* hero badge */
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(186,117,23,0.10); border: 1px solid var(--gold-bdr); border-radius: 100px; padding: 6px 14px 6px 8px; margin-bottom: 24px; }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; box-shadow: 0 0 0 3px rgba(186,117,23,0.2); animation: pulse 2s infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(186,117,23,0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(186,117,23,0.06); }
}
.hero-badge-text { font-size: 0.77rem; font-weight: 600; color: var(--gold); letter-spacing: 0.02em; }

/* hero text */
.hero-headline { font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 800; color: var(--lt); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 14px; }
.hero-italic { display: block; font-family: var(--font-head); font-size: clamp(1.4rem, 2.5vw, 1.85rem); font-style: italic; font-weight: 600; color: var(--gold); margin-bottom: 22px; }
.hero-body { font-size: 1.05rem; color: var(--lt-2); line-height: 1.75; max-width: 490px; margin-bottom: 36px; }
.hero-ctas { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* hero stats panel */
.stats-pre { font-size: 0.74rem; font-weight: 600; color: var(--lt-2); margin-bottom: 12px; letter-spacing: 0.01em; }
.stats-panel { background: var(--navy-2); border: 1px solid var(--dbdr-md); border-radius: var(--radius-lg); overflow: hidden; }
.stats-panel-head { padding: 18px 20px 0; }
.stats-lbl { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--dbdr); margin-top: 14px; }
.stat-item { background: var(--navy); padding: 20px 17px; transition: background var(--tr); }
.stat-item:hover { background: var(--navy-2); }
.stat-num { font-family: var(--font-head); font-size: 1.95rem; font-weight: 700; color: var(--lt); line-height: 1; margin-bottom: 5px; }
.stat-num .g { color: var(--gold); }
.stat-num sup { font-size: 0.85rem; font-family: var(--font-body); font-weight: 600; vertical-align: super; }
.stat-desc { font-size: 0.73rem; color: var(--lt-3); line-height: 1.4; font-weight: 500; }

/* city strip */
.city-strip { position: relative; z-index: 1; border-top: 1px solid var(--dbdr); margin-top: 56px; padding-top: 26px; }
.city-strip p { font-size: 0.8rem; color: var(--lt-3); font-weight: 500; letter-spacing: 0.04em; }
.city-strip p strong { color: var(--lt-2); }

/* ── Comparison section (light) ─────────────────────────────── */
#comparison { background: var(--bg-2); padding: 96px 0; }
.comp-head { margin-bottom: 32px; }
.comp-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.comp-tab {
  padding: 8px 18px; border-radius: 100px; font-size: 0.82rem; font-weight: 600;
  border: 1px solid var(--bdr-md); background: transparent; color: var(--text-2);
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.comp-tab.active { background: var(--gold); color: #fff; border-color: var(--gold); }
.comp-tab:hover:not(.active) { background: var(--gold-dim); border-color: var(--gold-bdr); color: var(--text); }
.chart-pane { display: none; }
.chart-pane.active { display: block; }
.chart-wrap { background: var(--bg); border: 1px solid var(--bdr); border-radius: var(--radius-lg); padding: 28px 24px 20px; box-shadow: var(--shadow); }
.chart-note { margin-top: 12px; font-size: 0.82rem; color: var(--text-2); font-style: italic; }
.verdict-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 36px; }
.verdict-card { border-radius: var(--radius); padding: 18px 16px; border: 1px solid rgba(0,0,0,0.06); }
.verdict-card.win  { background: #EAF3DE; color: #1a3a1a; }
.verdict-card.lose { background: #FCEBEB; color: #3a1a1a; }
.vc-name  { font-weight: 700; font-size: 0.85rem; margin-bottom: 4px; }
.vc-stat  { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; }
.vc-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.6; margin-top: 2px; }

/* ── AI Agent section (light) ───────────────────────────────── */
#ai-agent { background: var(--bg); padding: 96px 0; }
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 52px; align-items: start; }

/* timelines */
.timelines { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tl-box { background: var(--bg-2); border-radius: var(--radius); padding: 20px 18px; border-left: 3px solid transparent; border: 1px solid var(--bdr); border-left: 3px solid transparent; }
.tl-box.tl-bad  { border-left-color: #ef4444; }
.tl-box.tl-good { border-left-color: var(--gold); }
.tl-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.tl-box.tl-bad  .tl-title { color: #dc2626; }
.tl-box.tl-good .tl-title { color: var(--gold); }
.tl-item { display: flex; gap: 10px; margin-bottom: 13px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-time { font-size: 0.68rem; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.04em; min-width: 50px; padding-top: 1px; flex-shrink: 0; }
.tl-text { font-size: 0.8rem; color: var(--text-2); line-height: 1.5; }
.tl-lost { color: #dc2626; font-weight: 700; }

/* agent features */
.agent-right { display: flex; flex-direction: column; gap: 30px; }
.agent-feat-list { display: flex; flex-direction: column; gap: 13px; }
.af { display: flex; align-items: flex-start; gap: 12px; }
.af-ico { width: 24px; height: 24px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--gold-bdr); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.af strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.af span { font-size: 0.81rem; color: var(--text-2); line-height: 1.5; }

/* phone mockup (always dark) */
.phone-frame { background: #111318; border: 2px solid rgba(255,255,255,0.13); border-radius: 26px; padding: 18px 14px; max-width: 270px; margin: 0 auto; box-shadow: 0 20px 50px rgba(0,0,0,0.22); }
.phone-notch { width: 52px; height: 5px; background: rgba(255,255,255,0.1); border-radius: 3px; margin: 0 auto 14px; }
.phone-hdr { text-align: center; margin-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 10px; }
.phone-name { font-size: 0.78rem; font-weight: 700; color: #EDE8DC; }
.phone-status { font-size: 0.65rem; color: #6EE7A0; margin-top: 2px; }
.chat-msgs { display: flex; flex-direction: column; gap: 9px; }
.chat-row { display: flex; flex-direction: column; }
.chat-row.in  { align-items: flex-start; }
.chat-row.out { align-items: flex-end; }
.bubble { max-width: 82%; padding: 8px 11px; border-radius: 14px; font-size: 0.76rem; line-height: 1.45; }
.chat-row.in  .bubble { background: rgba(255,255,255,0.11); color: #EDE8DC; border-bottom-left-radius: 3px; }
.chat-row.out .bubble { background: var(--gold); color: #fff; border-bottom-right-radius: 3px; }
.chat-ts { font-size: 0.6rem; color: rgba(237,232,220,0.35); margin-top: 3px; padding: 0 3px; }

/* calculator */
.calc-wrap { margin-top: 56px; background: var(--bg-2); border: 1px solid var(--bdr-md); border-radius: var(--radius-lg); padding: 40px 36px; }
.calc-wrap h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.calc-intro { font-size: 0.88rem; color: var(--text-2); margin-bottom: 32px; }
.calc-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; }
.calc-inputs { display: flex; flex-direction: column; gap: 22px; }
.sl-group label { display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; font-weight: 600; color: var(--text-2); margin-bottom: 8px; }
.sl-group label span { font-size: 1rem; font-weight: 700; color: var(--gold); }
input[type="range"] { width: 100%; height: 4px; background: var(--bdr-md); border-radius: 2px; outline: none; -webkit-appearance: none; appearance: none; cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--gold); border: 2px solid var(--bg-2); box-shadow: 0 0 0 2px var(--gold); }
input[type="range"]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--gold); border: 2px solid var(--bg-2); }
.calc-outs { display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.co { background: var(--bg); border: 1px solid var(--bdr); border-radius: var(--radius); padding: 14px 18px; }
.co-lbl { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-3); margin-bottom: 4px; }
.co-val { font-family: var(--font-head); font-size: 1.55rem; font-weight: 700; color: var(--text); }
.co.red .co-val { color: #dc2626; }
.co.red-lg .co-val { font-size: 2.1rem; color: #dc2626; }
.calc-callout { margin-top: 22px; background: #F0FAF0; border: 1px solid rgba(34,170,82,0.2); border-radius: var(--radius); padding: 14px 18px; font-size: 0.88rem; color: #166534; line-height: 1.6; }
.calc-callout strong { color: #15803D; }

/* ── Social proof strip (light) ─────────────────────────────── */
#proof { background: var(--bg-2); padding: 72px 0; border-top: 1px solid var(--bdr); }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 36px; }
.proof-card { background: var(--bg); border-radius: var(--radius-lg); padding: 30px 26px; border: 1px solid var(--bdr); position: relative; box-shadow: var(--shadow); }
.proof-card::before { content: '\201C'; position: absolute; top: 10px; left: 18px; font-family: var(--font-head); font-size: 3.5rem; color: var(--gold-bdr); line-height: 1; }
.proof-quote { font-size: 0.92rem; color: var(--text-2); line-height: 1.75; font-style: italic; margin-bottom: 14px; padding-top: 18px; }
.proof-name  { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.proof-role  { font-size: 0.78rem; color: var(--text-3); }

/* ── Page header (dark, inner pages) ────────────────────────── */
.page-header {
  background: var(--navy);
  padding: 120px 0 68px; position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px; pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header .section-title { color: var(--lt); font-size: clamp(2rem, 4vw, 3rem); margin-top: 10px; }
.page-header .section-sub { color: var(--lt-2); }

/* ── How It Works page ──────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 48px 0 72px; }
.step-card { background: var(--bg); border: 1px solid var(--bdr); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr); }
.step-card:hover { border-color: var(--gold-bdr); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-dim); border: 2px solid var(--gold-bdr); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.step-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-desc { font-size: 0.86rem; color: var(--text-2); line-height: 1.65; }

/* services layout */
.services-layout { display: grid; grid-template-columns: 260px 1fr; gap: 64px; align-items: start; }
.services-sidebar { position: sticky; top: 90px; }
.services-sidebar .section-title { color: var(--text); }
.sidebar-rule { width: 36px; height: 2px; background: var(--gold); border-radius: 1px; margin: 16px 0 18px; }
.sidebar-note { font-size: 0.87rem; color: var(--text-2); line-height: 1.7; }
.services-list { display: flex; flex-direction: column; gap: 2px; }
.service-card { background: var(--bg-2); border-radius: var(--radius); padding: 26px 30px; border-left: 3px solid transparent; border: 1px solid var(--bdr); border-left: 3px solid transparent; transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr); }
.service-card:hover { border-left-color: var(--gold); box-shadow: var(--shadow-lg); transform: translateX(3px); }
.svc-num   { font-size: 0.74rem; color: var(--gold); font-weight: 600; letter-spacing: 0.06em; margin-bottom: 6px; }
.svc-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.svc-desc  { font-size: 0.87rem; color: var(--text-2); line-height: 1.65; margin-bottom: 12px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); background: var(--gold-dim); border: 1px solid var(--gold-bdr); border-radius: 100px; padding: 3px 9px; }

/* ── Results page ───────────────────────────────────────────── */
.cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.case-card { background: var(--bg); border-radius: var(--radius-lg); padding: 36px 32px; border: 1px solid var(--bdr); position: relative; overflow: hidden; box-shadow: var(--shadow); transition: box-shadow var(--tr), transform var(--tr); }
.case-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.case-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); }
.case-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--bg-2); color: var(--text-2); border: 1px solid var(--bdr-md); border-radius: 100px; padding: 4px 13px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
.cb-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.case-co  { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.case-loc { font-size: 0.79rem; color: var(--text-3); margin-bottom: 20px; }
.metrics { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 20px; }
.metric { background: var(--bg-2); border: 1px solid var(--bdr); border-radius: 8px; padding: 9px 12px; flex: 1; min-width: 95px; }
.metric-val { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 3px; }
.metric-val .g { color: var(--gold); }
.metric-lbl { font-size: 0.67rem; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; }
.case-rule { height: 1px; background: var(--bdr); margin: 18px 0; }
.case-q { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; font-style: italic; margin-bottom: 13px; position: relative; padding-left: 14px; }
.case-q::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 2px; background: var(--gold); border-radius: 1px; }
.case-attr { font-size: 0.81rem; font-weight: 700; color: var(--text); }
.case-attr span { font-weight: 400; color: var(--text-3); }

/* ── Pricing page ───────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.pc { background: var(--bg); border: 1px solid var(--bdr); border-radius: var(--radius-lg); padding: 32px 24px; position: relative; box-shadow: var(--shadow); transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr); }
.pc:hover { border-color: var(--gold-bdr); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pc.featured { background: var(--navy); border-color: transparent; transform: scale(1.02); }
.pc.featured:hover { transform: scale(1.02) translateY(-4px); border-color: transparent; box-shadow: 0 16px 48px rgba(20,24,31,0.3); }
.pc.featured .plan-name,
.pc.featured .plan-price { color: var(--lt); }
.pc.featured .plan-price sup { color: var(--gold); }
.pc.featured .plan-period { color: var(--lt-3); }
.pc.featured .plan-desc { color: var(--lt-2); }
.pc.featured .plan-rule { background: var(--dbdr); }
.pc.featured .plan-feats li { color: var(--lt-2); }
.pop-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 14px; border-radius: 100px; white-space: nowrap; }
.plan-name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--text); }
.plan-price { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--text); line-height: 1; margin: 12px 0 3px; letter-spacing: -0.02em; }
.plan-price sup { font-size: 1rem; vertical-align: super; font-family: var(--font-body); font-weight: 600; color: var(--gold); }
.plan-period { font-size: 0.77rem; color: var(--text-3); margin-bottom: 14px; }
.plan-rule { height: 1px; background: var(--bdr); margin: 14px 0; }
.plan-desc { font-size: 0.81rem; color: var(--text-2); line-height: 1.6; margin-bottom: 4px; }
.plan-feats { margin-bottom: 24px; }
.plan-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.84rem; color: var(--text-2); padding: 5px 0; line-height: 1.5; }
.plan-feats li::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 0.78rem; flex-shrink: 0; margin-top: 1px; }
.pc .btn { width: 100%; justify-content: center; }

/* pricing note */
.pricing-note { margin-top: 32px; background: var(--bg-2); border: 1px solid var(--bdr-md); border-radius: var(--radius); padding: 20px 26px; display: flex; align-items: center; gap: 16px; }
.pn-ico  { font-size: 1.25rem; flex-shrink: 0; }
.pn-copy { font-size: 0.88rem; color: var(--text-2); line-height: 1.65; }
.pn-copy strong { color: var(--text); }
.pn-copy a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.pn-copy a:hover { color: var(--gold-lt); }

/* FAQ */
.faq-section { margin-top: 72px; padding-top: 56px; border-top: 1px solid var(--bdr); }
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--bdr); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 19px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q span { font-size: 0.94rem; font-weight: 600; color: var(--text); transition: color var(--tr); }
.faq-q:hover span { color: var(--gold); }
.faq-ico { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--bdr-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem; color: var(--text-2); transition: transform var(--tr), background var(--tr); }
.faq-item.open .faq-ico { transform: rotate(45deg); background: var(--gold-dim); border-color: var(--gold-bdr); color: var(--gold); }
.faq-ans { overflow: hidden; max-height: 0; transition: max-height 0.32s ease; }
.faq-ans p { font-size: 0.9rem; color: var(--text-2); line-height: 1.75; padding-bottom: 18px; }

/* ── Contact page ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.cl-body { font-size: 0.94rem; color: var(--text-2); line-height: 1.75; margin-bottom: 32px; margin-top: 12px; }
.contact-rows { display: flex; flex-direction: column; gap: 16px; }
.cr { display: flex; align-items: flex-start; gap: 12px; }
.cr-ico { width: 36px; height: 36px; border-radius: 8px; background: var(--bg-2); border: 1px solid var(--bdr); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.cr-lbl { font-size: 0.72rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 2px; display: block; }
.cr-val { font-size: 0.87rem; color: var(--text-2); }
.cr-val a:hover { color: var(--text); }

/* form card */
.form-card { background: var(--bg); border: 1px solid var(--bdr-md); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow-lg); }
.form-card h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.fc-sub { font-size: 0.82rem; color: var(--text-3); margin-bottom: 22px; }
.fg { margin-bottom: 15px; }
.fg label { display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-2); margin-bottom: 6px; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 10px 13px; background: var(--bg-2); border: 1.5px solid var(--bdr-md); border-radius: 8px; font-size: 0.89rem; color: var(--text); -webkit-appearance: none; appearance: none; transition: border-color var(--tr), box-shadow var(--tr); }
.fg select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 34px; }
.fg textarea { resize: vertical; min-height: 96px; line-height: 1.6; }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(186,117,23,0.10); background: var(--bg); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-3); }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit { width: 100%; justify-content: center; padding: 14px 28px; font-size: 0.92rem; margin-top: 6px; }
.form-note { text-align: center; font-size: 0.75rem; color: var(--text-3); margin-top: 11px; }
#form-confirm { display: none; margin-top: 12px; text-align: center; padding: 13px 16px; background: #F0FAF0; border: 1px solid rgba(34,170,82,0.25); border-radius: 8px; font-size: 0.87rem; font-weight: 600; color: #166534; }

/* ── Footer (dark) ──────────────────────────────────────────── */
#footer { background: var(--navy); border-top: 1px solid var(--dbdr); padding: 72px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--dbdr); }
.footer-brand .nav-logo { display: inline-block; font-size: 1.3rem; margin-bottom: 12px; color: var(--lt); }
.footer-brand .nav-logo em { color: var(--gold); }
.footer-brand p { font-size: 0.875rem; color: var(--lt-3); line-height: 1.7; max-width: 230px; }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: var(--lt-3); transition: color var(--tr); }
.footer-col ul li a:hover { color: var(--lt); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.footer-bottom p { font-size: 0.78rem; color: var(--lt-3); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 0.78rem; color: var(--lt-3); transition: color var(--tr); }
.footer-legal a:hover { color: var(--lt); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-grid { grid-template-columns: 1fr 360px; gap: 44px; }
  .services-layout { grid-template-columns: 220px 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .ai-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pc.featured { transform: none; }
  .pc.featured:hover { transform: translateY(-4px); }
  .contact-grid { grid-template-columns: 1fr; }
  .services-layout { grid-template-columns: 1fr; }
  .services-sidebar { position: static; }
  .proof-grid { grid-template-columns: 1fr; }
  .verdict-row { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 64px 0; }
  .hero-grid { gap: 36px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .timelines { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .verdict-row { grid-template-columns: 1fr 1fr; }
  .comp-tabs { gap: 6px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 2.2rem; }
  .verdict-row { grid-template-columns: 1fr; }
}
