/* ============================================================
   SZYM CARS — v2 Design System
   "Showroom, not garage."
   Porsche Maritime Blue lacquer on graphite +
   Gold as per-service signature texture +
   Fraunces (display serif) × Manrope (body grotesk)
   ============================================================ */

:root {
  /* ---------- Color: graphite scale ---------- */
  --graphite-deep:  #0F1216;
  --graphite:       #161A20;
  --graphite-mid:   #1F242C;
  --graphite-soft:  #2A303A;
  --graphite-line:  #3A4150;

  /* ---------- Color: Porsche-paint blue ---------- */
  --blue:           #3FA9D6;   /* Maritime / Miami territory */
  --blue-bright:    #6BC3E8;
  --blue-deep:      #1F6B92;
  --blue-glow:      rgba(63, 169, 214, 0.16);
  --blue-glow-soft: rgba(63, 169, 214, 0.06);

  /* ---------- Color: gold (per-service motifs) ---------- */
  --gold:           #C8A45C;   /* warm champagne */
  --gold-bright:    #E0BD78;
  --gold-deep:      #8E7234;
  --gold-glow:      rgba(200, 164, 92, 0.14);

  /* ---------- Color: chalk neutrals ---------- */
  --chalk:          #F4F2EE;   /* slightly warm off-white */
  --chalk-soft:     #C2C5CB;
  --chalk-mid:      #92969E;
  --chalk-dim:      #6A6F78;

  /* ---------- Color: surface roles ---------- */
  --bg:             var(--graphite);
  --bg-deep:        var(--graphite-deep);
  --bg-elev:        var(--graphite-mid);
  --bg-card:        var(--graphite-soft);
  --text:           var(--chalk);
  --text-muted:     var(--chalk-soft);
  --text-dim:       var(--chalk-mid);
  --border:         rgba(244, 242, 238, 0.07);
  --border-strong:  rgba(244, 242, 238, 0.16);

  /* ---------- Typography ---------- */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-xs:    0.75rem;
  --fs-sm:    0.875rem;
  --fs-base:  1rem;
  --fs-lg:    1.125rem;
  --fs-xl:    1.25rem;
  --fs-2xl:   1.5rem;
  --fs-3xl:   2rem;
  --fs-4xl:   2.5rem;
  --fs-5xl:   clamp(2.75rem, 5vw, 4rem);
  --fs-6xl:   clamp(3.5rem, 8vw, 6rem);
  --fs-7xl:   clamp(5rem, 14vw, 10rem);

  /* ---------- Spacing ---------- */
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  24px;
  --s-6:  32px;
  --s-7:  48px;
  --s-8:  64px;
  --s-9:  96px;
  --s-10: 128px;
  --s-11: 160px;

  /* ---------- Layout ---------- */
  --container:     1280px;
  --container-narrow: 980px;
  --container-text: 720px;

  /* ---------- Radius ---------- */
  --r-sm:  4px;
  --r:     8px;
  --r-lg:  16px;
  --r-xl:  28px;

  /* ---------- Motion ---------- */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:      180ms;
  --t:           360ms;
  --t-slow:      720ms;

  /* ---------- Elevation ---------- */
  --shadow-1: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-2: 0 12px 36px rgba(0, 0, 0, 0.4);
  --shadow-3: 0 28px 80px rgba(0, 0, 0, 0.55);
  --shadow-blue: 0 24px 56px rgba(63, 169, 214, 0.18);
  --shadow-gold: 0 24px 56px rgba(200, 164, 92, 0.12);
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, var(--blue-glow), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, var(--gold-glow), transparent 70%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--blue); color: var(--graphite-deep); }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 0;
}
h1 { font-size: var(--fs-6xl); letter-spacing: -0.035em; }
h2 { font-size: var(--fs-5xl); letter-spacing: -0.03em; }
h3 { font-size: var(--fs-3xl); letter-spacing: -0.02em; }
h4 { font-size: var(--fs-xl); letter-spacing: -0.015em; }
h5 { font-size: var(--fs-base); letter-spacing: 0.16em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; color: var(--text-dim); }

p { color: var(--text-muted); max-width: 64ch; }
.lede { font-size: var(--fs-lg); line-height: 1.55; color: var(--text-muted); max-width: 56ch; }

.serif-italic { font-style: italic; font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1; }

/* Editorial display number — for segments, large stats */
.editorial-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-7xl);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--blue);
  font-variation-settings: 'opsz' 144, 'SOFT' 0, 'WONK' 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-bright);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--blue);
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.container--narrow { max-width: var(--container-narrow); }
.container--text { max-width: var(--container-text); }

.section { padding: var(--s-10) 0; position: relative; }
.section--tight { padding: var(--s-9) 0; }
.section--flush { padding-top: 0; }

.section-head {
  display: grid;
  gap: var(--s-4);
  max-width: var(--container-text);
  margin-bottom: var(--s-9);
}
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head h2 { max-width: 18ch; }
.section-head--center h2 { margin-inline: auto; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 14px 26px;
  border-radius: var(--r);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.02em;
  transition: all var(--t-fast) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--blue);
  color: var(--graphite-deep);
  box-shadow: 0 8px 24px rgba(63, 169, 214, 0.22);
}
.btn--primary:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(63, 169, 214, 0.32);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover {
  background: var(--blue-glow-soft);
  border-color: var(--blue);
  color: var(--blue-bright);
}

.btn--gold {
  background: var(--gold);
  color: var(--graphite-deep);
  box-shadow: 0 8px 24px rgba(200, 164, 92, 0.22);
}
.btn--gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.btn--lg { padding: 18px 32px; font-size: var(--fs-base); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--s-3) 0;
  transition: padding var(--t) var(--ease-out), border-bottom-color var(--t) var(--ease-out);
  background: #000;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 10px 0;
  border-bottom-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 60px;
}
.brand img {
  height: 100%;
  width: auto;
  filter: invert(1);
  transition: opacity var(--t-fast) var(--ease-out);
}
.brand:hover img { opacity: 0.85; }

/* Footer brand variant — larger for footer presence */
.footer-brand .brand { height: 84px; }

.nav-links {
  display: flex;
  gap: 0;
}
.nav-links a {
  display: block;
  padding: 10px 11px;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--r-sm);
  transition: color var(--t-fast) var(--ease-out);
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 11px; right: 11px; bottom: 4px;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t) var(--ease-out);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--blue-bright); }

.nav-cta { display: flex; align-items: center; gap: var(--s-2); flex-shrink: 0; }
.nav-cta .btn { flex-shrink: 0; }
.nav-phone {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--text);
  padding: 8px 10px;
  white-space: nowrap;
}
.nav-phone svg { width: 16px; height: 16px; color: var(--blue); }
@media (max-width: 1280px) {
  .nav-phone span { display: none; }
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--r-sm);
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: all var(--t-fast) var(--ease-out);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero (homepage)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 180px 0 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 18, 22, 0.6) 0%, rgba(15, 18, 22, 0.85) 70%, var(--bg) 100%);
  z-index: -1;
}
.hero-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center 40%;
  opacity: 0.55;
  filter: saturate(0.85) contrast(1.05);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-9);
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(63, 169, 214, 0.1);
  border: 1px solid var(--border-strong);
  color: var(--blue-bright);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: var(--s-6);
}
.hero-eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px var(--blue);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.hero h1 {
  font-size: var(--fs-6xl);
  margin-bottom: var(--s-6);
  max-width: 18ch;
}
.hero h1 .accent {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  background: linear-gradient(140deg, var(--blue-bright), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: var(--fs-lg);
  color: var(--text-muted);
  margin-bottom: var(--s-7);
  max-width: 56ch;
  line-height: 1.6;
}

.hero-actions {
  display: flex; flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-9);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  padding-top: var(--s-7);
  border-top: 1px solid var(--border);
  max-width: 640px;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: 300;
  color: var(--blue-bright);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--s-2);
}
.hero-stat span {
  font-size: var(--fs-xs);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* Page hero (subpages, narrower) */
.page-hero {
  padding: 200px 0 var(--s-9);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--graphite-deep);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15, 18, 22, 0.8) 0%, rgba(15, 18, 22, 0.5) 55%, var(--bg) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  filter: saturate(0.95);
}
.page-hero h1 {
  font-size: var(--fs-5xl);
  margin-bottom: var(--s-5);
  max-width: 22ch;
}
.page-hero p { font-size: var(--fs-lg); max-width: 56ch; }

/* ============================================================
   Pillar rail (homepage 4-service grid)
   ============================================================ */
.pillar-rail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.pillar {
  position: relative;
  padding: var(--s-8) var(--s-7);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--graphite);
  overflow: hidden;
  transition: background var(--t) var(--ease-out);
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% -20%, var(--gold-glow), transparent 65%);
  opacity: 0;
  transition: opacity var(--t) var(--ease-out);
  pointer-events: none;
}
.pillar:hover { background: var(--graphite-mid); }
.pillar:hover::before { opacity: 1; }

.pillar-num {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--blue);
  margin-bottom: var(--s-7);
  font-feature-settings: 'tnum';
}

.pillar h3 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--s-4);
  max-width: 14ch;
}
.pillar p {
  color: var(--text-muted);
  font-size: var(--fs-base);
  margin-bottom: var(--s-6);
  flex: 1;
}
.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--blue-bright);
  text-transform: uppercase;
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
}
.pillar-link svg { width: 14px; height: 14px; transition: transform var(--t-fast) var(--ease-out); }
.pillar:hover .pillar-link svg { transform: translateX(6px); }

@media (max-width: 768px) {
  .pillar-rail { grid-template-columns: 1fr; }
  .pillar { min-height: 320px; padding: var(--s-7) var(--s-5); }
}

/* ============================================================
   Split (image + content)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split--asymmetric { grid-template-columns: 1.2fr 1fr; }

.split-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--graphite-mid);
  box-shadow: var(--shadow-3);
  border: 1px solid var(--border);
}
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.split-media:hover img { transform: scale(1.02); }
.split-media .placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  color: var(--text-dim);
  font-size: var(--fs-sm);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 24px, rgba(255,255,255,0.025) 24px, rgba(255,255,255,0.025) 25px),
    linear-gradient(135deg, var(--graphite-mid), var(--graphite-soft));
}

.split-content > * + * { margin-top: var(--s-4); }
.split-content h2 { margin-bottom: var(--s-5); }
.split-content .eyebrow { margin-bottom: var(--s-4); }
.split-content p { font-size: var(--fs-base); }

.check-list {
  display: flex; flex-direction: column;
  gap: var(--s-3);
  margin: var(--s-6) 0 var(--s-7);
}
.check-list li {
  display: flex; gap: var(--s-4); align-items: flex-start;
  padding: 0;
  color: var(--text);
  font-size: var(--fs-base);
  line-height: 1.55;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue-glow) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233FA9D6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 13px no-repeat;
  border: 1px solid var(--border-strong);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .split, .split--asymmetric { grid-template-columns: 1fr; gap: var(--s-7); }
  .split--reverse .split-media { order: 0; }
  .split-media { aspect-ratio: 4 / 3; }
}

/* ============================================================
   Segment ladder (rental pricing)
   ============================================================ */
.segments {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.segment {
  display: grid;
  grid-template-columns: 120px 1fr 1fr auto;
  gap: var(--s-7);
  padding: var(--s-7) 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
  position: relative;
  transition: background var(--t-fast) var(--ease-out);
}
.segment:hover { background: rgba(63, 169, 214, 0.03); }

.segment-letter {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 0.85;
  color: var(--blue);
  letter-spacing: -0.05em;
  font-variation-settings: 'opsz' 144, 'SOFT' 0, 'WONK' 0;
}
.segment-letter small {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  margin-top: var(--s-3);
  text-transform: uppercase;
}
.segment-letter--premium { color: var(--gold); }

.segment-name h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--s-3);
}
.segment-cars {
  display: flex; flex-wrap: wrap;
  gap: 4px var(--s-4);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.segment-cars li {
  position: relative;
  padding-left: var(--s-4);
}
.segment-cars li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--blue);
}
.segment-cars li:first-child { padding-left: 0; }
.segment-cars li:first-child::before { display: none; }

.segment-price {
  display: flex; flex-direction: column;
  gap: var(--s-2);
}
.segment-tier {
  display: flex; align-items: baseline;
  gap: var(--s-3);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.segment-tier strong {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
}
.segment-tier .yr {
  font-size: var(--fs-xs);
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.segment-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 10px 18px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text);
  transition: all var(--t-fast) var(--ease-out);
}
.segment-cta:hover {
  background: var(--blue);
  color: var(--graphite-deep);
  border-color: var(--blue);
}

@media (max-width: 900px) {
  .segment {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "letter name"
      "letter price"
      "cta cta";
    gap: var(--s-4) var(--s-5);
    padding: var(--s-6) 0;
  }
  .segment-letter { grid-area: letter; font-size: 3rem; }
  .segment-name { grid-area: name; }
  .segment-price { grid-area: price; }
  .segment-cta { grid-area: cta; justify-self: start; margin-top: var(--s-3); }
}

/* ============================================================
   Process steps (numbered)
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.step {
  padding: var(--s-7);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--graphite);
  position: relative;
  transition: background var(--t) var(--ease-out);
}
.step:hover { background: var(--graphite-mid); }
.step-num {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 0, 'WONK' 0;
  font-style: normal;
  color: var(--blue);
  margin-bottom: var(--s-5);
  display: block;
}
.step h4 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 400;
  margin-bottom: var(--s-3);
  letter-spacing: -0.02em;
}
.step p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

.step { min-width: 0; }

.steps--5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1100px) { .steps--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .steps, .steps--5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps, .steps--5 { grid-template-columns: 1fr; } }

/* ============================================================
   Feature triplet (3-up icon cards)
   ============================================================ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.feature {
  padding: var(--s-7) var(--s-6);
  background: var(--graphite-mid);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--t) var(--ease-out);
}
.feature:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.feature-num {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 300;
  color: var(--blue);
  letter-spacing: -0.04em;
  margin-bottom: var(--s-4);
  line-height: 1;
}
.feature h4 { margin-bottom: var(--s-3); }
.feature p { font-size: var(--fs-sm); }

@media (max-width: 900px) { .features { grid-template-columns: 1fr; } }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.testimonial {
  padding: var(--s-7);
  background: var(--graphite-mid);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: var(--s-4);
  right: var(--s-5);
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--blue);
  opacity: 0.25;
  font-style: italic;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'WONK' 1;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: var(--s-6);
  flex: 1;
}
.testimonial-author {
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
  font-size: var(--fs-sm);
}
.testimonial-author strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 2px;
}
.testimonial-author span { color: var(--text-dim); font-size: var(--fs-xs); }

@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: var(--container-text);
  margin: 0 auto;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: background var(--t-fast) var(--ease-out);
}
.faq-item[open] { background: rgba(63, 169, 214, 0.04); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-6) 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-5);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-xl);
  color: var(--text);
  user-select: none;
  letter-spacing: -0.015em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233FA9D6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>") center / contain no-repeat;
  transition: transform var(--t) var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item-body {
  padding: 0 0 var(--s-6);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 56ch;
  font-size: var(--fs-base);
}
.faq-item-body a { color: var(--blue-bright); border-bottom: 1px solid currentColor; }

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner {
  margin: var(--s-9) auto;
  padding: var(--s-9) var(--s-8);
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 100% 0%, var(--blue-glow), transparent 50%),
    radial-gradient(circle at 0% 100%, var(--gold-glow), transparent 50%),
    linear-gradient(140deg, var(--graphite-mid), var(--graphite-soft));
  border: 1px solid var(--border-strong);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: var(--s-7);
  align-items: center;
}
.cta-inner h2 {
  font-size: var(--fs-4xl);
  margin-bottom: var(--s-3);
  max-width: 18ch;
}
.cta-inner p { font-size: var(--fs-lg); }

@media (max-width: 800px) {
  .cta-banner { padding: var(--s-7) var(--s-5); margin: var(--s-7) auto; }
  .cta-inner { grid-template-columns: 1fr; gap: var(--s-5); }
}

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-9);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: var(--s-7); } }

.contact-cards {
  display: flex; flex-direction: column;
  gap: var(--s-3);
}
.contact-card {
  display: flex; gap: var(--s-4);
  padding: var(--s-5);
  background: var(--graphite-mid);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: all var(--t-fast) var(--ease-out);
}
.contact-card:hover {
  border-color: var(--border-strong);
  background: var(--graphite-soft);
}
.contact-card-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--blue-glow);
  color: var(--blue-bright);
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card-body small {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--s-2);
}
.contact-card-body strong {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.015em;
}
.contact-card-body a { color: var(--text); }
.contact-card-body a:hover { color: var(--blue-bright); }

.contact-form {
  background: var(--graphite-mid);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-7);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: var(--s-5); }
.form-group label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--s-2);
  color: var(--text-muted);
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--graphite-deep);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: inherit;
  font-size: var(--fs-base);
  transition: all var(--t-fast) var(--ease-out);
}
.form-control:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--graphite);
  box-shadow: 0 0 0 4px var(--blue-glow);
}
.form-control::placeholder { color: var(--text-dim); }
textarea.form-control { resize: vertical; min-height: 140px; }

/* ============================================================
   Blog
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-7);
}
.blog-card {
  display: flex; flex-direction: column;
  padding: var(--s-7);
  background: var(--graphite-mid);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--t) var(--ease-out);
  overflow: hidden;
}
.blog-thumb {
  margin: calc(-1 * var(--s-7)) calc(-1 * var(--s-7)) var(--s-6);
  height: 220px;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  flex-shrink: 0;
}
.blog-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.blog-meta {
  display: flex; gap: var(--s-3);
  font-size: var(--fs-xs);
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.blog-meta time { color: var(--blue); }
.blog-card h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--s-4);
  letter-spacing: -0.02em;
}
.blog-card p {
  font-size: var(--fs-sm);
  margin-bottom: var(--s-5);
  flex: 1;
}
.blog-link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--blue-bright);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
@media (max-width: 700px) { .blog-grid { grid-template-columns: 1fr; } }

.article {
  max-width: var(--container-text);
  margin: 0 auto;
  padding: 200px var(--s-5) var(--s-9);
}
.article-meta {
  display: flex; gap: var(--s-3);
  font-size: var(--fs-xs);
  color: var(--text-dim);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--s-5);
}
.article-meta time { color: var(--blue); }
.article h1 {
  font-size: var(--fs-5xl);
  margin-bottom: var(--s-7);
  letter-spacing: -0.03em;
}
.article-body > * + * { margin-top: var(--s-5); }
.article-body p { font-size: var(--fs-lg); line-height: 1.7; max-width: none; }
.article-body h2 {
  font-size: var(--fs-3xl);
  margin-top: var(--s-8) !important;
  margin-bottom: var(--s-4);
}
.article-body h3 {
  font-size: var(--fs-xl);
  margin-top: var(--s-6) !important;
  margin-bottom: var(--s-3);
}
.article-body ul, .article-body ol {
  padding-left: var(--s-5);
  margin: 0;
}
.article-body ul li, .article-body ol li {
  font-size: var(--fs-lg);
  line-height: 1.7;
  color: var(--text-muted);
  list-style: disc;
  margin-bottom: var(--s-3);
}
.article-body ol li { list-style: decimal; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-body a { color: var(--blue-bright); border-bottom: 1px solid currentColor; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  margin-top: var(--s-10);
  padding: var(--s-9) 0 var(--s-6);
  background: #000;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-7);
  padding-bottom: var(--s-8);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--s-6);
}
.footer-brand p {
  margin-top: var(--s-5);
  font-size: var(--fs-sm);
  max-width: 36ch;
  color: var(--text-muted);
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: var(--s-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--s-3); }
.footer-col a {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  transition: color var(--t-fast) var(--ease-out);
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex; justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-size: var(--fs-xs);
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--blue); }

.social-links {
  display: flex; gap: var(--s-2);
  margin-top: var(--s-5);
}
.social-links a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--graphite-mid);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--t-fast) var(--ease-out);
}
.social-links a:hover {
  background: var(--blue-glow);
  color: var(--blue-bright);
  border-color: var(--blue);
}
.social-links svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--s-7); }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Mobile nav
   ============================================================ */
@media (max-width: 1180px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 100%; max-width: 380px;
    height: 100vh;
    flex-direction: column;
    background: var(--graphite-deep);
    padding: 110px var(--s-6) var(--s-6);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform var(--t) var(--ease-out);
    gap: var(--s-1);
    z-index: 90;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 14px 18px; font-size: var(--fs-base); }
  .nav-toggle { display: flex; }
  .nav-phone span { display: none; }
}

@media (max-width: 720px) {
  .section { padding: var(--s-9) 0; }
  .hero { padding: 140px 0 var(--s-8); min-height: auto; }
  .page-hero { padding: 130px 0 var(--s-7); }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .contact-form { padding: var(--s-5); }
  .step { padding: var(--s-5); }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-eyebrow::before { animation: none; }
}

/* ============================================================
   Utility
   ============================================================ */
.bg-deep { background: var(--graphite-deep); }
.text-muted { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--s-4); }
.mb-0 { margin-bottom: 0; }
.fine-print {
  font-size: var(--fs-xs);
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 18, 22, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--blue);
  padding: 1.4rem 1rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.5);
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner .cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
#cookie-banner p {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 1;
  min-width: 280px;
  margin: 0;
  font-family: var(--font-body);
}
#cookie-banner p strong {
  color: var(--blue);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
}
#cookie-banner .cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
#cookie-banner button {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
#cookie-banner .btn-accept {
  background: var(--blue);
  color: var(--graphite-deep);
}
#cookie-banner .btn-accept:hover {
  background: var(--blue-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px var(--blue-glow);
}
#cookie-banner .btn-reject {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
#cookie-banner .btn-reject:hover {
  border-color: var(--text);
}
@media (max-width: 600px) {
  #cookie-banner .cookie-inner { flex-direction: column; align-items: stretch; }
  #cookie-banner .cookie-actions { justify-content: stretch; }
  #cookie-banner button { flex: 1; }
}
