/* =========================================================
   CVC Engineers — FRAMER design language
   Pure black void · Framer Blue (#0099ff) · pill buttons ·
   frosted glass · aggressive negative tracking · motion-first
   ========================================================= */

:root {
  /* === Framer palette === */
  --bg: #000000;              /* pure void */
  --bg-elev: #0a0a0a;
  --bg-sub:  #050505;
  --ink: #ffffff;
  --ink-mute: #a6a6a6;
  --ink-faint: rgba(255,255,255,0.6);
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.18);

  --accent: #0099ff;          /* Framer Blue */
  --accent-soft: #66c2ff;
  --accent-glow: rgba(0,153,255,0.18);

  --frost: rgba(255,255,255,0.06);
  --frost-hi: rgba(255,255,255,0.12);

  --serif: 'Fraunces', 'Georgia', serif;        /* used sparingly */
  --sans:  'Inter', -apple-system, 'Segoe UI', sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, 'Menlo', monospace;

  --container: 1320px;

  /* Pill radii — Framer uses 40-100px on buttons */
  --r-pill: 999px;
  --r-card: 24px;
  --r-card-lg: 32px;
  --r-md: 16px;
  --r-sm: 8px;

  --t-fast: 240ms cubic-bezier(.2,.8,.2,1);
  --t-med:  520ms cubic-bezier(.2,.8,.2,1);
  --t-slow: 900ms cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'cv01','cv05','cv09','cv11','ss03','ss07';
  letter-spacing: -0.01em;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
em { font-style: normal; color: var(--accent); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.mono { font-family: var(--mono); letter-spacing: -0.02em; }

/* =========================================================
   CURSOR (custom — Framer-style)
   ========================================================= */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot {
  position: absolute; left: 0; top: 0;
  width: 6px; height: 6px;
  background: #fff; border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.cursor-ring {
  position: absolute; left: 0; top: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width var(--t-med), height var(--t-med), border-color var(--t-med), background var(--t-med);
}
.cursor.is-link .cursor-ring { width: 56px; height: 56px; border-color: rgba(255,255,255,0.85); }
.cursor.is-cta  .cursor-ring { width: 80px; height: 80px; border-color: var(--accent); background: var(--accent-glow); }
.cursor.is-card .cursor-ring { width: 100px; height: 100px; }
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* =========================================================
   CVC LOGO (architectural CAD-style monogram) + HOLLYWOOD PHONE
   ========================================================= */
.brand { gap: 16px !important; }

.cvc-logo {
  width: 48px; height: 48px;
  color: var(--ink);
  flex-shrink: 0;
  display: block;
}
.nav.is-stuck .cvc-logo { width: 42px; height: 42px; }

/* Hollywood-style phone number — large standing block letters */
.hollywood-phone {
  display: inline-flex;
  align-items: flex-end;
  position: relative;
  height: 52px;
  padding: 0 4px 4px;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--t-fast);
}
.hollywood-phone:hover { transform: translateY(-1px); }
.hollywood-phone svg {
  height: 100%;
  width: auto;
  display: block;
  pointer-events: none;
}
.hollywood-phone .hp-digit {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 900;
  font-size: 38px;
  fill: #ffffff;
  letter-spacing: -2px;
}
.hollywood-phone .hp-shadow {
  fill: var(--accent);
  opacity: 0.45;
}
.hollywood-phone .hp-scaffold {
  stroke: rgba(255,255,255,0.35);
  stroke-width: 0.8;
  fill: none;
}
.hollywood-phone .hp-ground {
  stroke: var(--accent);
  stroke-width: 1;
  opacity: 0.5;
}
.hollywood-phone .hp-tag {
  position: absolute;
  top: -2px; right: 0;
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.16em;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(0,153,255,0.4);
  padding: 1px 5px;
  border-radius: 3px;
  pointer-events: none;
}
.hollywood-phone .hp-callout {
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.18em;
  color: var(--accent-soft);
  pointer-events: none;
  white-space: nowrap;
}
.nav.is-stuck .hollywood-phone { height: 44px; }
.nav.is-stuck .hollywood-phone .hp-callout { display: none; }

@media (max-width: 1100px) {
  .hollywood-phone { display: none; }
  .hp-mobile-tel {
    display: inline-flex;
    align-items: center; gap: 6px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--accent);
    padding: 8px 12px;
    border: 1px solid var(--accent);
    border-radius: var(--r-pill);
    background: var(--accent-glow);
  }
}
@media (min-width: 1101px) { .hp-mobile-tel { display: none !important; } }

/* =========================================================
   ELEVATION GAUGE — sticky left edge skyscraper indicator
   ========================================================= */
.elevation-gauge {
  position: fixed;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 50;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 153, 255, 0.45);
  opacity: 0;
  transition: opacity 600ms ease;
}
.elevation-gauge.is-ready { opacity: 1; }
.elevation-gauge svg {
  width: 100%;
  height: 80vh;
  max-height: 720px;
}
#gauge-elevator {
  filter: drop-shadow(0 0 4px var(--accent));
  will-change: transform;
}
.gauge-label {
  position: fixed;
  left: 84px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--line-strong);
  border-left: 2px solid var(--accent);
  border-radius: 4px;
  padding: 8px 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 50;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 600ms ease, top 320ms cubic-bezier(.2,.8,.2,1);
}
.elevation-gauge.is-ready + .gauge-label,
.gauge-label.is-ready { opacity: 1; }
.gauge-floor {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.gauge-zone {
  font-size: 9.5px;
  color: var(--ink-mute);
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .elevation-gauge, .gauge-label { display: none; }
}

/* =========================================================
   SECTION FLOOR LABEL (added inside section-tag)
   ========================================================= */
.floor-label {
  display: inline-block;
  margin-right: 14px;
  padding: 4px 8px;
  border: 1px solid var(--accent);
  background: var(--accent-glow);
  color: var(--accent);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
}

/* =========================================================
   SKIP LINK (a11y + SEO)
   ========================================================= */
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--accent); color: var(--ink);
  padding: 12px 18px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em;
  z-index: 10000;
  border-radius: 0 0 var(--r-md) 0;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 0; outline: 2px solid var(--ink); outline-offset: 2px; }

/* =========================================================
   PAGE VEIL
   ========================================================= */
.page-veil {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--accent);
  transform: translateY(0);
  pointer-events: none;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  z-index: 101;
  transition: width 100ms linear;
  box-shadow: 0 0 12px var(--accent-glow);
}

/* =========================================================
   GRID OVERLAY — kept subtle on void
   ========================================================= */
.grid-overlay {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  inset: 0 auto 0 50%;
  transform: translateX(-50%);
  width: 100%;
  opacity: .35;
}
.grid-line {
  border-left: 1px dashed rgba(255,255,255,0.04);
  height: 100%;
}
.grid-line:first-child { border-left: 0; }

/* =========================================================
   NAV — frosted pill on scroll
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding var(--t-med);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  transition: background var(--t-med), backdrop-filter var(--t-med), border-radius var(--t-med), padding var(--t-med), border-color var(--t-med);
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  padding: 0;
}
.nav.is-stuck { padding: 14px 0; }
.nav.is-stuck .nav-inner {
  background: rgba(0,0,0,0.6);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-color: var(--line-strong);
  padding: 10px 14px 10px 22px;
}

.brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.brand-mark {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-weight: 600; font-size: 15px;
  letter-spacing: -0.04em;
}
.brand-sub {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
  margin-top: 4px;
}

.nav-links {
  display: flex; justify-content: center; gap: 8px;
  font-size: 14px;
}
.nav-links a {
  position: relative;
  color: var(--ink-mute);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: color var(--t-fast), background var(--t-fast);
  letter-spacing: -0.01em;
}
.nav-links a:hover { color: var(--ink); background: var(--frost); }

.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong); border-radius: var(--r-pill);
  position: relative; background: var(--frost);
}
.nav-burger span {
  position: absolute; left: 12px; right: 12px; height: 1.5px;
  background: var(--ink);
}
.nav-burger span:first-child { top: 18px; }
.nav-burger span:last-child  { bottom: 18px; }

/* =========================================================
   BUTTONS — pill-shaped, Framer-style
   ========================================================= */
.btn-primary, .btn-ghost, .btn-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 500;
  letter-spacing: -0.015em;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  transition: all var(--t-fast);
  white-space: nowrap;
  position: relative;
}
.btn-primary {
  background: var(--ink); color: var(--bg);
  padding: 13px 22px;
  font-weight: 600;
}
.btn-primary svg { width: 16px; height: 16px; }
.btn-primary:hover {
  background: var(--accent); color: var(--ink);
  box-shadow: 0 0 0 6px var(--accent-glow);
}
.btn-primary.lg {
  padding: 18px 30px; font-size: 15.5px;
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink); background: var(--frost);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--accent); color: var(--accent);
  background: var(--accent-glow);
}

.btn-link {
  padding: 6px 0; color: var(--ink-mute);
  border-radius: 0;
}
.btn-link:hover { color: var(--ink); }
.btn-link .arrow-down { transition: transform var(--t-fast); }
.btn-link:hover .arrow-down { transform: translateY(2px); }

.magnetic { will-change: transform; }

/* =========================================================
   HERO — pure-black void, blueprint glow
   ========================================================= */
.hero {
  position: relative;
  background: var(--bg);
  color: var(--ink);
  padding: 200px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-blueprint { width: 110%; height: 110%; opacity: 0.7; transform: translate(-5%, -5%); }
.hero-bg-tint {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 75% 25%, rgba(0,153,255,0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 15% 85%, rgba(0,153,255,0.10), transparent 60%),
    linear-gradient(180deg, transparent 50%, var(--bg) 100%);
}
.bp-lines {
  transform-origin: center;
  animation: bp-breathe 14s ease-in-out infinite;
}
@keyframes bp-breathe {
  0%,100% { opacity: 0.5; }
  50%     { opacity: 1; }
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 64px;
  align-items: end;
}
.hero-copy { padding-top: 20px; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  margin-bottom: 36px;
  background: var(--frost);
  backdrop-filter: blur(10px);
}
.kicker .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
  animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 4px var(--accent-glow); }
  50%     { box-shadow: 0 0 0 9px rgba(0,153,255,0.04); }
}

/* DISPLAY — Framer's signature aggressive negative tracking */
.display {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(54px, 9vw, 132px);
  line-height: 0.86;
  letter-spacing: -0.05em;       /* ≈ -5.5px at 110px */
  margin-bottom: 32px;
  color: var(--ink);
}
.display .line { display: block; overflow: hidden; }
.display .line > span {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}
.display .hi {
  font-style: normal;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  font-size: 19px; line-height: 1.5;
  color: var(--ink-mute);
  max-width: 600px;
  margin-bottom: 40px;
  letter-spacing: -0.012em;
}

.hero-actions {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  max-width: 760px;
}
.meta-item { display: flex; flex-direction: column; gap: 4px; }
.meta-num {
  font-family: var(--sans);
  font-size: 44px; font-weight: 500; line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: inline;
}
.meta-suffix {
  font-family: var(--mono); font-size: 13px; color: var(--ink-mute);
  margin-left: 6px;
}
.meta-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.02em;
  color: var(--ink-mute);
  margin-top: 10px;
}

/* hero card — frosted glass */
.hero-card {
  background: var(--frost);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-card-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.hero-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: var(--r-card-lg);
  background: linear-gradient(140deg, var(--accent-glow), transparent 50%);
  z-index: -1;
  opacity: 0.6;
}
.card-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.04em;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.2);
  animation: pulse-dot 1.6s infinite;
}
.hero-card h3 {
  font-family: var(--sans); font-weight: 500;
  font-size: 22px; line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: var(--ink);
}
.ticker { list-style: none; border-top: 1px solid var(--line); margin-bottom: 16px; }
.ticker li {
  display: grid; grid-template-columns: 60px 1fr; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px; color: var(--ink-mute);
  align-items: center;
  letter-spacing: -0.01em;
}
.ticker .t-mono {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.02em;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 4px 6px;
  border-radius: 4px;
  text-align: center;
}
.card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink);
  margin-top: 6px;
  letter-spacing: -0.01em;
}
.card-cta svg { width: 14px; height: 14px; transition: transform var(--t-fast); }
.card-cta:hover svg { transform: translateX(3px); }

.hero-scroll {
  position: absolute; bottom: 30px; left: 32px;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.04em;
  color: var(--ink-mute);
  z-index: 3;
}
.scroll-bar {
  width: 60px; height: 1px; background: var(--line-strong);
  position: relative; overflow: hidden;
}
.scroll-bar::after {
  content: ''; position: absolute; left: -30px; top: 0;
  width: 30px; height: 100%; background: var(--accent);
  animation: scroll-track 2.4s linear infinite;
}
@keyframes scroll-track { to { left: 60px; } }

/* =========================================================
   TRUST MARQUEE
   ========================================================= */
.trust {
  background: var(--bg-sub);
  color: var(--ink-mute);
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.trust-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 32px;
  white-space: nowrap;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em;
  animation: marquee 38s linear infinite;
  padding-right: 32px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   SECTION DEFAULTS — all dark on Framer aesthetic
   ========================================================= */
section { position: relative; }
.services, .why, .process, .faq, .about, .contact {
  padding: 140px 0;
  background: var(--bg);
}

.section-head { max-width: 820px; margin-bottom: 72px; }

.section-tag {
  display: inline-block;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--ink-mute);
  padding-bottom: 16px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.section-tag.light { color: var(--ink-mute); border-bottom-color: var(--line); }

.section-title {
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-title.light { color: var(--ink); }
.section-title em {
  font-style: normal;
  background: linear-gradient(180deg, var(--accent), var(--accent-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-lede {
  font-size: 18px; line-height: 1.55;
  color: var(--ink-mute);
  max-width: 640px;
  letter-spacing: -0.012em;
}

/* =========================================================
   SERVICES
   ========================================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc-card {
  position: relative;
  background: var(--frost);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 36px 30px;
  min-height: 300px;
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.svc-card.featured {
  background: linear-gradient(160deg, rgba(0,153,255,0.18) 0%, rgba(0,153,255,0.04) 100%);
  border-color: rgba(0,153,255,0.35);
}
a.svc-card.svc-card-link {
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
  cursor: pointer;
}
a.svc-card.svc-card-link::after {
  content: 'READ MORE →';
  position: absolute; bottom: 28px; left: 30px;
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 0.06em;
  color: var(--accent);
  opacity: 0.7;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
a.svc-card.svc-card-link:hover::after { opacity: 1; transform: translateX(4px); }
.svc-card.wide { grid-column: span 3; }
.svc-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: var(--frost-hi);
}
.svc-card.featured:hover { border-color: var(--accent); }

.svc-num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.02em;
  color: var(--ink-mute);
  margin-bottom: 36px;
}

.svc-badge {
  position: absolute; top: 26px; right: 26px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.04em;
  color: var(--accent-soft);
  padding: 5px 10px;
  border: 1px solid rgba(0,153,255,0.3);
  border-radius: var(--r-pill);
  background: var(--accent-glow);
}
.svc-card h3 {
  font-family: var(--sans); font-weight: 500;
  font-size: 28px; line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
  color: var(--ink);
}
.svc-card p {
  color: var(--ink-mute);
  font-size: 15px; line-height: 1.55;
  margin-bottom: 20px;
  letter-spacing: -0.012em;
}

.svc-list {
  list-style: none;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.svc-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 5px 0;
  font-size: 13.5px; color: var(--ink-mute);
  letter-spacing: -0.01em;
}
.svc-list li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--accent); border-radius: 50%;
  flex-shrink: 0;
}

.svc-arrow {
  position: absolute; bottom: 28px; right: 30px;
  font-size: 22px;
  color: var(--ink-mute);
  transition: transform var(--t-med), color var(--t-med);
}
.svc-card:hover .svc-arrow { transform: translateX(8px); color: var(--accent); }

.svc-card.wide {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
  min-height: 0;
  padding: 40px 32px;
}
.svc-card.wide .svc-num { margin-bottom: 0; }
.svc-card.wide h3 { font-size: 28px; margin-bottom: 6px; }
.svc-card.wide p { margin-bottom: 0; max-width: 620px; }
.svc-inline-cta {
  font-size: 14.5px; font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
  letter-spacing: -0.012em;
}

/* =========================================================
   WHY
   ========================================================= */
.why {
  position: relative; overflow: hidden;
}
.why::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(0,153,255,0.14), transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 90%, rgba(0,153,255,0.10), transparent 60%);
  pointer-events: none;
}
.why .container { position: relative; z-index: 1; }

.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px 64px;
  margin-top: 40px;
}
.why-item {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 80px 1fr;
  grid-template-rows: auto auto;
  column-gap: 24px;
  align-items: start;
}
.why-item .why-num { grid-row: 1 / span 2; }
.why-item h3, .why-item p { grid-column: 2; }
.why-num {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 44px;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--accent), var(--accent-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.why-item h3 {
  font-family: var(--sans); font-weight: 500;
  font-size: 24px; line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: var(--ink);
}
.why-item p {
  color: var(--ink-mute); font-size: 16px; line-height: 1.55;
  letter-spacing: -0.012em;
}

/* =========================================================
   PROCESS
   ========================================================= */
.process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 64px;
  height: 1px; background: var(--line);
}
.step {
  position: relative;
  background: var(--frost);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 30px 26px;
  transition: border-color var(--t-fast), transform var(--t-med), background var(--t-fast);
  backdrop-filter: blur(8px);
}
.step:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  background: var(--frost-hi);
}
.step-num {
  width: 64px; height: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--bg);
  font-family: var(--mono); font-size: 14px;
  color: var(--accent);
  margin-bottom: 24px;
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute; inset: -5px;
  border: 1px dashed var(--line-strong);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--t-med), transform var(--t-med);
}
.step:hover .step-num::after { opacity: 1; transform: rotate(45deg); }
.step h3 {
  font-family: var(--sans); font-weight: 500;
  font-size: 24px; margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.step p {
  font-size: 14.5px; color: var(--ink-mute); line-height: 1.55;
  letter-spacing: -0.01em;
}
.step-time {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.02em;
  color: var(--accent-soft);
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  width: 100%;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-head { position: sticky; top: 110px; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 8px 0;
  transition: padding var(--t-fast);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 50px 22px 0;
  font-family: var(--sans); font-weight: 500;
  font-size: 21px; line-height: 1.25;
  color: var(--ink);
  position: relative;
  letter-spacing: -0.03em;
  transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  position: absolute; right: 8px; top: 50%;
  width: 22px; height: 22px;
  margin-top: -11px;
  background:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-size: 14px 1.5px, 1.5px 14px;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--ink-mute);
  transition: transform var(--t-med), color var(--t-fast);
}
.faq-item[open] summary { color: var(--accent); }
.faq-item[open] summary::after {
  transform: rotate(135deg);
  color: var(--accent);
}
.faq-item p {
  padding: 0 0 24px 0;
  font-size: 15.5px; color: var(--ink-mute); line-height: 1.65;
  max-width: 680px;
  letter-spacing: -0.012em;
}
.faq-item[open] p { animation: faq-open 480ms cubic-bezier(.2,.8,.2,1); }
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-copy p {
  font-size: 17.5px; line-height: 1.65; color: var(--ink-mute);
  margin-bottom: 18px;
  max-width: 600px;
  letter-spacing: -0.012em;
}
.about-copy p strong { color: var(--ink); font-weight: 600; }
.about-standards { margin-top: 40px; }
.about-standards h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.02em;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.standards-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
}
.standards-grid span {
  font-size: 13.5px;
  color: var(--ink);
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--frost);
  letter-spacing: -0.01em;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.standards-grid span:hover { border-color: var(--accent); background: var(--accent-glow); }

/* PE registration card */
.about-card { position: sticky; top: 110px; }
.reg-card {
  background:
    radial-gradient(circle at 80% 0%, rgba(0,153,255,0.25), transparent 60%),
    linear-gradient(160deg, #0a0f1f 0%, #000 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-card-lg);
  padding: 36px 32px;
  position: relative; overflow: hidden;
  box-shadow: 0 0 60px rgba(0,153,255,0.08);
}
.reg-line {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.04em;
  color: var(--accent-soft);
  margin-bottom: 14px;
}
.reg-num {
  font-family: var(--sans); font-weight: 500;
  font-size: 38px;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
  color: var(--ink);
}
.reg-num strong { color: #fff; font-weight: 600; }
.reg-disc {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--accent-soft);
}
.reg-card hr {
  border: 0; border-top: 1px solid var(--line);
  margin: 28px 0;
}
.reg-meta { display: grid; gap: 14px; position: relative; z-index: 1; }
.reg-meta > div {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px;
  gap: 16px;
}
.reg-meta span {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.02em;
  color: var(--ink-mute);
}
.reg-meta strong {
  color: var(--ink); font-weight: 500;
  text-align: right;
  letter-spacing: -0.01em;
}
.status-live { display: inline-flex; align-items: center; gap: 8px; }
.dot-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,0.18);
  animation: pulse-dot 1.6s infinite;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-card {
  background: var(--frost);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-card-lg);
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.contact-card::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  pointer-events: none;
}
.contact-card .section-tag { color: var(--ink-mute); border-bottom-color: var(--line); }
.contact-title {
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin-bottom: 22px;
  max-width: 820px;
  position: relative;
  color: var(--ink);
}
.contact-lede {
  font-size: 17.5px; color: var(--ink-mute); line-height: 1.6;
  max-width: 600px;
  margin-bottom: 44px;
  position: relative;
  letter-spacing: -0.012em;
}

.contact-form {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px;
  position: relative;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.02em;
  color: var(--ink-mute);
}
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  padding: 14px 16px;
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  letter-spacing: -0.01em;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}
.field textarea { resize: vertical; min-height: 100px; }

.form-actions {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 22px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.form-actions .btn-link { color: var(--ink-mute); }
.form-actions .btn-link:hover { color: var(--ink); }

.form-success {
  grid-column: 1 / -1;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  border-radius: var(--r-md);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--accent-soft);
  letter-spacing: -0.01em;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--bg);
  color: var(--ink-mute);
  padding: 100px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 64px;
}
.footer-brand {
  display: flex; gap: 16px; align-items: flex-start;
  color: var(--ink);
}
.footer-brand .brand-mark { color: var(--ink); }
.footer-brand div { display: flex; flex-direction: column; gap: 6px; }
.footer-brand strong {
  font-weight: 600; font-size: 17px; color: var(--ink);
  letter-spacing: -0.02em;
}
.footer-brand span { font-size: 13.5px; color: var(--ink-mute); letter-spacing: -0.01em; }
.footer-brand .mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.02em; }
.footer-brand .footer-email {
  font-style: normal;
  font-size: 13.5px; color: var(--accent-soft);
  margin-top: 6px;
  letter-spacing: -0.01em;
  transition: color var(--t-fast);
}
.footer-brand .footer-email:hover { color: var(--accent); }
.footer-brand .footer-address {
  font-style: normal;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.02em;
  color: var(--ink-mute);
  margin-top: 4px;
}

.footer-cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-cols h5 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--ink-mute); text-transform: uppercase;
  margin-bottom: 18px; font-weight: 400;
}
.footer-cols a {
  display: block;
  font-size: 14px; color: var(--ink);
  padding: 5px 0;
  letter-spacing: -0.01em;
  transition: color var(--t-fast);
}
.footer-cols a:hover { color: var(--accent); }

.footer-bottom {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 36px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.02em;
  color: var(--ink-mute);
}

/* =========================================================
   REVEALS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 800ms cubic-bezier(.16,1,.3,1), transform 800ms cubic-bezier(.16,1,.3,1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 480px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card.wide { grid-column: span 2; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .faq-grid { grid-template-columns: 1fr; gap: 56px; }
  .faq-head { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-card { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-cta .btn-ghost { display: none; }
  .hero { padding: 150px 0 90px; }
  .hero-meta { grid-template-columns: 1fr; gap: 16px; }
  .meta-item { padding-bottom: 16px; border-bottom: 1px solid var(--line); }
  .meta-item:last-child { border-bottom: 0; }
  .services, .why, .process, .faq, .about, .contact { padding: 90px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .svc-card.wide { grid-column: span 1; grid-template-columns: 1fr; gap: 16px; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-card { padding: 44px 26px; }
  .contact-form { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .display .line > span { transform: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
