:root {
  --cream: #F5F2EA;
  --paper: #FAF8F2;
  --white: #FFFFFF;
  --sky-1: #E7F0F8;
  --sky-2: #C7DCEE;
  --sky-3: #9DC0DE;
  --sky-4: #6FA0CB;
  --navy-1: #1B3457;
  --navy-2: #0E2244;
  --navy-3: #061530;
  --ink: #08152C;
  --mute: #4A5B75;
  --line: rgba(8, 21, 44, 0.10);
  --line-strong: rgba(8, 21, 44, 0.18);
  --shadow-soft: 0 30px 60px -30px rgba(8, 21, 44, 0.25);
  --shadow-card: 0 20px 50px -20px rgba(8, 21, 44, 0.18);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.serif { font-family: 'Instrument Serif', 'Times New Roman', serif; font-weight: 400; font-style: normal; letter-spacing: -0.01em; }
.serif-i { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }

/* ====== LAYOUT ====== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; position: relative; }
.section.tight { padding: 80px 0; }

/* ====== NAV ====== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
  transition: all 0.4s cubic-bezier(.2,.7,.2,1);
}
.nav.scrolled {
  background: rgba(245, 242, 234, 0.85);
  backdrop-filter: saturate(1.4) blur(18px);
  -webkit-backdrop-filter: saturate(1.4) blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 20px; letter-spacing: -0.02em; }
.logo-mark {
  width: 28px; height: 28px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #FFE3B5 0%, #FF8A4C 35%, #C13D2A 70%, #061530 100%);
  box-shadow: 0 0 0 1px rgba(8,21,44,0.08), 0 6px 20px -6px rgba(193, 61, 42, 0.6);
}
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--mute); }
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--navy-2); color: var(--paper);
  padding: 10px 20px; border-radius: 999px; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1), background 0.3s;
}
.nav-cta:hover { transform: translateY(-1px); background: var(--navy-3); }
.nav-cta .dot { width: 6px; height: 6px; border-radius: 50%; background: #5BE36A; box-shadow: 0 0 8px #5BE36A; }

/* ====== HERO ====== */
.hero {
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  width: 920px; height: 920px;
  right: -200px; top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #DDE9F4 0%, #B0CCE3 30%, #6F9CC4 55%, #1B3457 80%, #061530 100%);
  filter: blur(0px);
  opacity: 0.55;
  z-index: 0;
  animation: float 14s ease-in-out infinite;
}
.hero-orb-2 {
  position: absolute;
  width: 480px; height: 480px;
  left: -120px; bottom: -200px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #C7DCEE 0%, #9DC0DE 40%, transparent 70%);
  opacity: 0.5;
  z-index: 0;
  animation: float 18s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.05); }
}

.hero-inner { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy-2);
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.eyebrow .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: #C13D2A;
  box-shadow: 0 0 0 0 rgba(193, 61, 42, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(193, 61, 42, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(193, 61, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(193, 61, 42, 0); }
}

.hero h1 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 28px 0 0;
  color: var(--ink);
  max-width: 14ch;
}
.hero h1 em { font-style: italic; color: var(--navy-2); }
.hero-sub {
  max-width: 520px; margin-top: 28px;
  font-size: 18px; line-height: 1.55; color: var(--mute);
}
.hero-actions { display: flex; gap: 16px; margin-top: 36px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--navy-2); color: var(--paper);
  padding: 16px 28px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 12px;
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1), background 0.3s, box-shadow 0.3s;
  box-shadow: 0 20px 40px -20px rgba(8, 21, 44, 0.5);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--navy-3); box-shadow: 0 30px 50px -20px rgba(8, 21, 44, 0.6); }
.btn-primary .arrow { transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  padding: 16px 24px; font-size: 15px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  transition: gap 0.3s, color 0.3s;
}
.btn-ghost:hover { gap: 14px; color: var(--navy-2); }

.hero-meta {
  margin-top: 64px;
  display: flex; gap: 40px; flex-wrap: wrap;
  align-items: center;
}
.hero-meta .stars { display: flex; gap: 2px; color: #E8A53D; font-size: 16px; }
.hero-meta-text { font-size: 13px; color: var(--mute); }
.hero-meta-text strong { color: var(--ink); font-weight: 500; }

.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint .line { width: 1px; height: 36px; background: var(--line-strong); position: relative; overflow: hidden; }
.scroll-hint .line::after {
  content: ''; position: absolute; top: -36px; left: 0; right: 0;
  height: 12px; background: var(--ink);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(0); }
  100% { transform: translateY(72px); }
}

/* ====== MARQUEE / LOGOS ====== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: var(--paper);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 72px; align-items: center;
  width: max-content;
  animation: scroll-x 40s linear infinite;
}
.marquee-track .item {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--mute);
  white-space: nowrap;
}
.marquee-track .item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--navy-2); }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ====== STATS ====== */
.stats { background: var(--navy-3); color: var(--paper); position: relative; overflow: hidden; }
.stats::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 80% 30%, rgba(157, 192, 222, 0.18), transparent 70%),
    radial-gradient(600px 400px at 10% 80%, rgba(193, 61, 42, 0.10), transparent 70%);
  pointer-events: none;
}
.stats-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 80px; gap: 40px; flex-wrap: wrap; position: relative;
}
.stats-head h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 5vw, 64px); line-height: 1; letter-spacing: -0.02em;
  margin: 0; max-width: 14ch;
}
.stats-head h2 em { font-style: italic; color: var(--sky-3); }
.stats-head p { color: var(--sky-2); max-width: 360px; font-size: 15px; margin: 0; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; position: relative; }
.stats-grid::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to right, transparent calc(33.33% - 1px), rgba(255,255,255,0.08) calc(33.33% - 1px), rgba(255,255,255,0.08) 33.33%, transparent 33.33%),
    linear-gradient(to right, transparent calc(66.66% - 1px), rgba(255,255,255,0.08) calc(66.66% - 1px), rgba(255,255,255,0.08) 66.66%, transparent 66.66%);
}
.stat {
  padding: 20px 32px 20px 0;
  position: relative;
}
.stat:not(:first-child) { padding-left: 40px; }
.stat-num {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--paper);
  display: flex; align-items: baseline; gap: 4px;
}
.stat-num .prefix { font-size: 0.4em; color: var(--sky-3); margin-right: 4px; align-self: flex-start; padding-top: 0.4em; }
.stat-num .suffix { font-size: 0.4em; color: var(--sky-3); }
.stat-label {
  margin-top: 20px;
  font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sky-2);
}
.stat-sub { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,0.55); max-width: 28ch; }

/* ====== SECTION HEADER ====== */
.s-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px; gap: 32px; flex-wrap: wrap;
}
.s-head .label {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-2);
  display: flex; align-items: center; gap: 10px;
}
.s-head .label::before { content: ''; width: 24px; height: 1px; background: var(--navy-2); }
.s-head h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 5.5vw, 72px); line-height: 0.95;
  letter-spacing: -0.02em; margin: 14px 0 0; max-width: 18ch;
}
.s-head h2 em { font-style: italic; color: var(--navy-2); }
.s-head .right { max-width: 360px; color: var(--mute); font-size: 15px; }

/* ====== CASE STUDIES ====== */
.cases { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; }
.case {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), box-shadow 0.5s;
}
.case:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.case-big { grid-row: span 2; min-height: 580px; display: flex; flex-direction: column; }
.case-visual {
  flex: 1; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--sky-1) 0%, var(--sky-3) 60%, var(--navy-1) 100%);
}
.case-visual.v2 { background: linear-gradient(160deg, #F5E5D4 0%, #E4B89A 40%, var(--navy-2) 100%); }
.case-visual.v3 { background: linear-gradient(140deg, var(--sky-1) 0%, #DCE9F2 40%, var(--navy-3) 100%); }
.case-visual::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(8, 21, 44, 0.3) 0%, transparent 50%);
}
.case-tag {
  position: absolute; top: 20px; left: 20px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.9);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy-2);
  backdrop-filter: blur(8px);
}
.case-metric-float {
  position: absolute; right: 24px; bottom: 24px;
  background: rgba(8, 21, 44, 0.85);
  color: var(--paper);
  padding: 18px 22px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  font-family: 'Instrument Serif', serif;
  display: flex; flex-direction: column; align-items: flex-end;
}
.case-metric-float .num { font-size: 48px; line-height: 1; letter-spacing: -0.02em; }
.case-metric-float .num em { font-style: italic; color: var(--sky-3); }
.case-metric-float .lbl { font-family: 'Geist', sans-serif; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sky-2); margin-top: 8px; }

.case-body { padding: 32px; }
.case-body .name {
  font-family: 'Instrument Serif', serif;
  font-size: 28px; letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.case-body .name em { font-style: italic; color: var(--navy-2); }
.case-body .loc { font-size: 13px; color: var(--mute); margin-bottom: 20px; }
.case-body .desc { font-size: 14px; color: var(--mute); line-height: 1.55; }

.case-metrics-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--line);
  margin-top: 24px; padding-top: 24px;
  gap: 8px;
}
.case-metrics-row .m .v {
  font-family: 'Instrument Serif', serif; font-size: 32px; line-height: 1; letter-spacing: -0.02em;
}
.case-metrics-row .m .v em { font-style: italic; color: var(--navy-2); }
.case-metrics-row .m .l { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mute); margin-top: 8px; }

.case-small { padding: 28px; min-height: 278px; display: flex; flex-direction: column; justify-content: space-between; }
.case-small .top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.case-small .top .name { font-family: 'Instrument Serif', serif; font-size: 22px; margin: 0; }
.case-small .top .name em { font-style: italic; color: var(--navy-2); }
.case-small .top .loc { font-size: 12px; color: var(--mute); margin-top: 2px; }
.case-small .top .badge {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-2), var(--navy-2));
  flex-shrink: 0;
}
.case-small .top .badge.b2 { background: linear-gradient(135deg, #F5E5D4, var(--navy-2)); }
.case-small .big-num {
  font-family: 'Instrument Serif', serif;
  font-size: 72px; line-height: 1; letter-spacing: -0.03em;
  color: var(--ink);
}
.case-small .big-num em { font-style: italic; color: var(--navy-2); }
.case-small .big-num .pct { font-size: 0.5em; color: var(--mute); }
.case-small .lbl { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mute); margin-top: 8px; }

/* ====== SERVICES ====== */
.services-section { background: var(--paper); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; }
.service {
  background: var(--paper);
  padding: 40px 32px;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background 0.4s;
  position: relative;
}
.service:hover { background: var(--white); }
.service-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--navy-2);
}
.service h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 28px; letter-spacing: -0.01em;
  margin: 24px 0 12px; font-weight: 400;
}
.service p { font-size: 14px; color: var(--mute); margin: 0; line-height: 1.55; }
.service-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--sky-1), var(--sky-3));
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-2);
  margin-bottom: 0;
}

/* ====== PROCESS ====== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-step {
  position: relative;
}
.process-step .num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 64px; line-height: 1;
  color: var(--sky-3);
  margin-bottom: 16px;
}
.process-step h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 24px; letter-spacing: -0.01em;
  margin: 0 0 8px; font-weight: 400;
}
.process-step p { font-size: 14px; color: var(--mute); margin: 0; }
.process-step .dur { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy-2); margin-top: 16px; display: block; }

/* ====== REVIEWS ====== */
.reviews-section { background: var(--cream); position: relative; overflow: hidden; }
.reviews-header-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 56px; gap: 32px; flex-wrap: wrap;
}
.rating-large {
  display: flex; flex-direction: column; align-items: flex-end;
}
.rating-large .stars { display: flex; gap: 4px; color: #E8A53D; font-size: 24px; }
.rating-large .meta { font-size: 13px; color: var(--mute); margin-top: 6px; }
.rating-large .meta strong { color: var(--ink); font-weight: 500; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: flex; flex-direction: column;
  transition: transform 0.4s, box-shadow 0.4s;
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.review .stars { display: flex; gap: 2px; color: #E8A53D; font-size: 14px; margin-bottom: 16px; }
.review .quote {
  font-family: 'Instrument Serif', serif;
  font-size: 22px; line-height: 1.3; letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.review .quote em { font-style: italic; color: var(--navy-2); }
.review .author {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line);
}
.review .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--paper); font-weight: 500;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.review .who { font-size: 13px; }
.review .who .n { font-weight: 500; }
.review .who .r { color: var(--mute); font-size: 12px; }

/* ====== CTA ====== */
.cta-section {
  background: var(--navy-3);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  padding: 160px 0;
}
.cta-orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--sky-2) 0%, var(--navy-1) 40%, transparent 70%);
  filter: blur(20px);
  opacity: 0.4;
  right: -100px; top: -150px;
  animation: float 16s ease-in-out infinite;
}
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-inner h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.95; letter-spacing: -0.025em;
  margin: 0 auto; max-width: 14ch;
}
.cta-inner h2 em { font-style: italic; color: var(--sky-3); }
.cta-inner p {
  max-width: 480px; margin: 28px auto 0;
  color: var(--sky-2); font-size: 17px; line-height: 1.55;
}
.cta-inner .btn-primary {
  margin-top: 40px;
  background: var(--paper); color: var(--navy-3);
  font-size: 16px; padding: 18px 32px;
}
.cta-inner .btn-primary:hover { background: var(--white); }
.cta-meta {
  display: flex; gap: 40px; justify-content: center;
  margin-top: 48px; flex-wrap: wrap;
  font-size: 13px; color: var(--sky-2);
}
.cta-meta .item { display: flex; align-items: center; gap: 8px; }
.cta-meta .item::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--sky-3);
}

/* ====== FOOTER ====== */
.footer { background: var(--navy-3); color: var(--sky-2); padding: 60px 0 40px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer .logo { color: var(--paper); margin-bottom: 16px; }
.footer .blurb { font-size: 14px; color: var(--sky-2); max-width: 280px; line-height: 1.55; }
.footer h4 {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--paper); margin: 0 0 16px; font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: var(--sky-2); transition: color 0.2s; }
.footer ul a:hover { color: var(--paper); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; color: rgba(255,255,255,0.5);
}

/* ====== REVEAL ANIMATIONS ====== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* ====== OFFER ====== */
.offer-section {
  background: var(--navy-3);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.offer-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(700px 500px at 90% 0%, rgba(157, 192, 222, 0.20), transparent 70%),
    radial-gradient(500px 400px at 0% 100%, rgba(193, 61, 42, 0.10), transparent 70%);
}
.offer-section .container { position: relative; z-index: 1; }

.offer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 8px;
}
.offer-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), border-color 0.4s, background 0.4s;
}
.offer-card::after {
  content: ''; position: absolute; top: -1px; left: -1px; right: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sky-3) 50%, transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(157, 192, 222, 0.30);
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%);
}
.offer-card:hover::after { opacity: 1; }

.offer-badge {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--sky-3);
  position: absolute; top: 32px; right: 32px;
}

.offer-amount {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(72px, 9vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--paper);
  display: flex; align-items: baseline; gap: 2px;
  margin-bottom: 24px;
}
.offer-amount .prefix { font-size: 0.45em; color: var(--sky-3); align-self: flex-start; padding-top: 0.35em; margin-right: 2px; }
.offer-amount .suffix { font-size: 0.32em; color: var(--sky-2); opacity: 0.6; margin-left: 4px; }
.offer-amount-text {
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  display: block;
}
.offer-amount-text em { font-style: italic; color: var(--sky-3); }

.offer-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 32px; letter-spacing: -0.01em;
  margin: 0 0 16px; font-weight: 400;
  color: var(--paper);
}
.offer-card h3 em { font-style: italic; color: var(--sky-3); }

.offer-card p {
  font-size: 15px; line-height: 1.6;
  color: var(--sky-2);
  margin: 0 0 28px;
  max-width: 40ch;
}

.offer-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: rgba(91, 227, 106, 0.10);
  border: 1px solid rgba(91, 227, 106, 0.25);
  color: #8FE89B;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

.offer-strip {
  margin-top: 72px;
  display: flex; align-items: center; gap: 16px;
  padding: 24px 32px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  flex-wrap: wrap;
  justify-content: space-between;
}
.offer-strip-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--sky-2);
}
.offer-strip-item .n {
  font-size: 18px;
  color: var(--sky-3);
}
.offer-strip-item.highlight {
  color: var(--paper);
  font-weight: 500;
}
.offer-strip-item.highlight .n { color: #8FE89B; }
.offer-arrow {
  color: rgba(255,255,255,0.25);
  font-size: 18px;
}

@media (max-width: 960px) {
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { padding: 36px 28px; }
  .offer-strip { flex-direction: column; align-items: flex-start; gap: 12px; }
  .offer-arrow { display: none; }
}

/* ====== LEAD FORM ====== */
.cta-section { padding: 140px 0; }
.cta-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.cta-copy h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.95; letter-spacing: -0.025em;
  margin: 20px 0 0;
}
.cta-copy h2 em { font-style: italic; color: var(--sky-3); }
.cta-copy p {
  max-width: 460px; margin: 24px 0 0;
  color: var(--sky-2); font-size: 17px; line-height: 1.55;
}
.cta-quote {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 440px;
}
.cta-quote-stars { display: flex; gap: 2px; color: #E8A53D; font-size: 14px; margin-bottom: 14px; }
.cta-quote p {
  font-family: 'Instrument Serif', serif;
  font-size: 20px; line-height: 1.35;
  margin: 0 0 12px;
  color: var(--paper);
}
.cta-quote p em { font-style: italic; color: var(--sky-3); }
.cta-quote-who { font-size: 13px; color: var(--sky-2); }
.cta-quote-who strong { color: var(--paper); font-weight: 500; }

.cta-form-wrap {
  background: var(--paper);
  color: var(--ink);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 50px 100px -30px rgba(0,0,0,0.5);
  position: relative;
}
.cta-form-wrap::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--sky-3), transparent 40%, var(--navy-2) 100%);
  z-index: -1;
  opacity: 0.4;
  filter: blur(20px);
}

.lead-form { display: flex; flex-direction: column; gap: 24px; }

.lead-progress { display: flex; align-items: center; gap: 0; position: relative; margin-bottom: 4px; }
.lead-progress-line {
  position: absolute; left: 14px; right: 14px; top: 50%; transform: translateY(-50%);
  height: 1px; background: var(--line); z-index: 0;
}
.lead-progress-fill { height: 100%; background: var(--navy-2); transition: width 0.5s cubic-bezier(.2,.7,.2,1); }
.lead-dot {
  position: relative; z-index: 1;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--mute);
  transition: all 0.3s;
  margin-right: auto;
}
.lead-dot:last-of-type { margin-right: 0; }
.lead-dot.on { background: var(--navy-2); border-color: var(--navy-2); color: var(--paper); }
.lead-dot.active { box-shadow: 0 0 0 4px rgba(8, 21, 44, 0.08); }

.lead-step-label {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mute);
  display: flex; align-items: center; gap: 10px;
}
.lead-step-label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--navy-2);
}

.lead-fields { display: flex; flex-direction: column; gap: 18px; animation: fieldIn 0.5s cubic-bezier(.2,.7,.2,1); }
@keyframes fieldIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field-label {
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--navy-2); font-weight: 500;
}
.field input, .field textarea {
  font-family: inherit; font-size: 15px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  transition: border 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy-2);
  box-shadow: 0 0 0 3px rgba(8, 21, 44, 0.06);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(8,21,44,0.35); }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.choice {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 13px;
  text-align: left;
  color: var(--ink);
  transition: all 0.2s;
}
.choice:hover { border-color: var(--line-strong); transform: translateY(-1px); }
.choice.sel {
  border-color: var(--navy-2);
  background: rgba(8, 21, 44, 0.04);
  box-shadow: 0 0 0 3px rgba(8, 21, 44, 0.05);
}
.choice-radio {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.choice.sel .choice-radio { border-color: var(--navy-2); }
.choice.sel .choice-radio::after {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--navy-2);
}

.lead-error {
  font-size: 13px; color: #C13D2A;
  background: rgba(193, 61, 42, 0.08);
  border: 1px solid rgba(193, 61, 42, 0.2);
  padding: 10px 14px; border-radius: 10px;
  animation: shake 0.4s;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

.lead-actions { display: flex; gap: 12px; align-items: center; margin-top: 8px; }
.lead-back {
  font-size: 14px; color: var(--mute); padding: 14px 16px;
  border-radius: 12px; transition: color 0.2s;
}
.lead-back:hover { color: var(--ink); }
.lead-next {
  flex: 1;
  background: var(--navy-2); color: var(--paper);
  padding: 16px 22px; border-radius: 12px;
  font-size: 15px; font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1), background 0.3s, box-shadow 0.3s;
  box-shadow: 0 12px 30px -12px rgba(8, 21, 44, 0.5);
}
.lead-next:hover { transform: translateY(-1px); background: var(--navy-3); }
.lead-next svg { transition: transform 0.3s; }
.lead-next:hover svg { transform: translateX(3px); }
.lead-next:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.lead-spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  animation: spin 0.7s linear infinite;
  display: inline-block; flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

.lead-trust {
  font-size: 12px; color: var(--mute);
  text-align: center; padding-top: 4px;
}

/* ====== SUCCESS ====== */
.lead-done .lead-success {
  text-align: center; padding: 20px 8px;
  animation: fieldIn 0.6s cubic-bezier(.2,.7,.2,1);
}
.success-mark {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-2), var(--navy-2));
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 20px 40px -10px rgba(8, 21, 44, 0.3);
  animation: pop 0.6s cubic-bezier(.4,1.4,.5,1);
}
@keyframes pop { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.lead-success h3 {
  font-size: 36px; letter-spacing: -0.01em; margin: 0 0 12px;
}
.lead-success h3 em { font-style: italic; color: var(--navy-2); }
.lead-success p { color: var(--mute); margin: 0 auto; max-width: 380px; font-size: 15px; }
.lead-success p strong { color: var(--ink); font-weight: 500; }
.success-meta {
  display: flex; gap: 16px; justify-content: center; margin-top: 28px;
  font-size: 12px; letter-spacing: 0.04em; color: var(--mute); flex-wrap: wrap;
}

/* ====== FLOATING PILL ====== */
.lead-pill {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--navy-2);
  color: var(--paper);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 20px 40px -12px rgba(8, 21, 44, 0.5);
  z-index: 40;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.5s, transform 0.5s cubic-bezier(.2,.7,.2,1), background 0.3s;
}
.lead-pill.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.lead-pill.hidden { opacity: 0; transform: translateY(20px); pointer-events: none; }
.lead-pill:hover { background: var(--navy-3); transform: translateY(-2px); }
.lead-pill-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #5BE36A;
  box-shadow: 0 0 0 0 rgba(91, 227, 106, 0.5);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(91, 227, 106, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(91, 227, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(91, 227, 106, 0); }
}

/* ====== MODAL ====== */
.lead-modal-bg {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(8, 21, 44, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s;
  overflow-y: auto;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lead-modal {
  background: var(--paper);
  border-radius: 28px;
  padding: 40px;
  max-width: 540px; width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  position: relative;
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.4);
  animation: modalIn 0.4s cubic-bezier(.2,.7,.2,1);
  margin: auto;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.lead-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(8, 21, 44, 0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.lead-close:hover { background: rgba(8, 21, 44, 0.12); transform: rotate(90deg); }
.lead-modal-head { margin-bottom: 28px; padding-right: 40px; }
.lead-modal-head .eyebrow { margin-bottom: 16px; }
.lead-modal-head h3 {
  font-size: 32px; line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 0 12px; font-weight: 400;
}
.lead-modal-head h3 em { font-style: italic; color: var(--navy-2); }
.lead-modal-head p { color: var(--mute); font-size: 15px; margin: 0; line-height: 1.5; }

/* ====== RESPONSIVE ====== */
@media (max-width: 960px) {
  .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-form-wrap { padding: 28px; }
  .lead-pill { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 13px; }
  .lead-modal { padding: 28px; }
  .choice-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .services-grid, .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .case-metrics-row { grid-template-columns: 1fr 1fr; }
}
