/* ============================================================
   MEDYFI — Design System v3 "Ledger"
   Canvas: warm paper · green-black ink · single emerald accent
   Dark surfaces: hero, product mockup, CTA, footer
   Type: Schibsted Grotesk (display) / Instrument Sans (body)
   Motion: restrained, physical. Fade-up 20px, 0.8s, staggered.
   ============================================================ */

:root {
  --paper: #fafaf7;
  --white: #ffffff;
  --ink: #101816;
  --ink-soft: #3a4442;
  --muted: #6b7573;
  --muted-2: #9aa39f;
  --hairline: #e8e8e1;
  --hairline-dark: #d7d7cd;
  --green: #0c7a5e;
  --green-deep: #095c47;
  --green-bright: #27c493;
  --green-soft: rgba(12, 122, 94, 0.08);
  --slate: #0b1412;
  --slate-2: #101b18;
  --slate-3: #15211e;
  --slate-line: rgba(250, 250, 247, 0.09);
  --slate-text: #eef2ef;
  --slate-muted: #8fa09b;
  --shadow-soft: 0 8px 30px rgba(16, 24, 22, 0.06);
  --shadow-deep: 0 18px 55px rgba(16, 24, 22, 0.13);
  --font-display: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 78px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: rgba(12, 122, 94, 0.18); color: var(--ink); }

img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-deep); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: var(--ink);
}

p { color: var(--ink-soft); }

.container { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }
.narrow { max-width: 780px; }

/* ============================================================
   Preloader
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--slate);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 22px;
  animation: pre-auto-hide 2.6s forwards; /* JS hides sooner; this is the no-JS/failure fallback */
}
.preloader .pre-mark { width: 52px; height: 52px; animation: pre-pulse 1.4s ease-in-out infinite; }
.preloader .pre-word {
  font-size: 12px; font-weight: 600; letter-spacing: 0.5em; text-indent: 0.5em;
  color: rgba(238, 242, 239, 0.5); text-transform: uppercase;
}
.preloader.is-done { opacity: 0; visibility: hidden; transition: opacity 0.55s ease, visibility 0.55s ease; }
@keyframes pre-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }
@keyframes pre-auto-hide {
  0%, 88% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}
@media (prefers-reduced-motion: reduce) {
  .preloader { display: none; }
}

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
.header-inner {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}

/* light pages (default) */
.site-header.is-scrolled {
  background: rgba(250, 250, 247, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
}

/* dark-hero pages (homepage) */
body.dark-hero .site-header { color: var(--slate-text); }
body.dark-hero .site-header.is-scrolled {
  background: rgba(11, 20, 18, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--slate-line);
}

/* wordmark */
.wordmark {
  display: inline-flex; align-items: center;
  font-family: var(--font-display);
  font-weight: 600; font-size: 15px;
  letter-spacing: 0.22em; text-transform: uppercase; text-indent: 0.02em;
  color: var(--ink); line-height: 1;
}
.wordmark:hover { color: var(--ink); }
.wordmark .fi { color: var(--green); }
.logo-mark { display: inline-flex; width: 33px; height: 33px; margin-right: 13px; flex-shrink: 0; }
.logo-mark svg { width: 100%; height: 100%; display: block; }
.wordmark:hover .logo-mark { animation: mark-nudge 0.5s var(--ease-out); }
@keyframes mark-nudge { 40% { transform: translateY(-2px); } 100% { transform: translateY(0); } }
body.dark-hero .wordmark { color: var(--slate-text); }
body.dark-hero .wordmark .fi { color: var(--green-bright); }

/* nav links */
.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  position: relative; padding: 4px 0;
  transition: color 0.3s ease;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1px; background: var(--green);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.main-nav a.active { color: var(--ink); }
.main-nav a.active::after { transform: scaleX(1); }
body.dark-hero .main-nav a { color: rgba(238, 242, 239, 0.62); }
body.dark-hero .main-nav a:hover, body.dark-hero .main-nav a.active { color: #fff; }
body.dark-hero .main-nav a::after { background: var(--green-bright); }

/* nav contact button */
.main-nav a.btn-primary { padding: 11px 24px; font-size: 13.5px; }
.main-nav a.btn-primary::after { display: none; }
.main-nav .btn { margin-left: 6px; }

/* mobile toggle */
.nav-toggle { display: none; background: none; border: none; padding: 10px; margin-right: -10px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--ink); margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
body.dark-hero .nav-toggle span { background: var(--slate-text); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 10px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease,
              transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn .arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-deep); color: #fff; box-shadow: 0 10px 28px rgba(12, 122, 94, 0.32); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--hairline-dark); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.hero .btn-ghost, .cta-band .btn-ghost { color: var(--slate-text); border-color: rgba(250, 250, 247, 0.22); }
.hero .btn-ghost:hover, .cta-band .btn-ghost:hover { border-color: rgba(250, 250, 247, 0.6); color: #fff; }

.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: #fff; color: var(--ink); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28); }

/* ============================================================
   Dark hero (homepage)
   ============================================================ */
.hero {
  position: relative;
  background: var(--slate);
  color: var(--slate-text);
  padding: calc(var(--nav-h) + 92px) 0 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.9;
}
.hero-bg::before {
  content: "";
  position: absolute; inset: -20%;
  background:
    radial-gradient(38% 45% at 18% 20%, rgba(15, 130, 98, 0.20), transparent 70%),
    radial-gradient(32% 40% at 85% 12%, rgba(23, 106, 84, 0.14), transparent 70%),
    radial-gradient(45% 50% at 60% 95%, rgba(10, 80, 62, 0.12), transparent 70%);
  animation: aurora-drift 22s ease-in-out infinite alternate;
}
@keyframes aurora-drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(2.5%, 3%, 0) scale(1.06); }
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(250, 250, 247, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 250, 247, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 0%, black 0%, transparent 78%);
  mask-image: radial-gradient(ellipse 90% 90% at 50% 0%, black 0%, transparent 78%);
}
.hero .container { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--slate-muted);
  margin-bottom: 40px;
}
.hero-eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--green-bright); }

.hero h1 {
  font-size: clamp(46px, 6.6vw, 92px);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.02;
  color: #fff;
  max-width: 1000px;
}
.hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero h1 .line > span { display: inline-block; transform: translateY(112%); }
body.intro-done .hero h1 .line > span,
body.no-intro .hero h1 .line > span { transform: translateY(0); }
.hero h1 .line:nth-child(1) > span { transition: transform 1.1s var(--ease-out) 0.05s; }
.hero h1 .line:nth-child(2) > span { transition: transform 1.1s var(--ease-out) 0.17s; }
.hero h1 .accent { color: var(--green-bright); }

.hero-sub {
  margin-top: 42px;
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 30px;
}
.hero-sub p {
  max-width: 520px; font-size: 17.5px; line-height: 1.7;
  color: rgba(238, 242, 239, 0.66);
}
.hero-sub p strong { color: #fff; font-weight: 500; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-eyebrow, .hero-sub { opacity: 0; transform: translateY(20px); }
body.intro-done .hero-eyebrow, body.no-intro .hero-eyebrow { opacity: 1; transform: none; transition: opacity 0.8s var(--ease-out) 0.35s, transform 0.8s var(--ease-out) 0.35s; }
body.intro-done .hero-sub, body.no-intro .hero-sub { opacity: 1; transform: none; transition: opacity 0.8s var(--ease-out) 0.5s, transform 0.8s var(--ease-out) 0.5s; }

/* ============================================================
   Product mockup (dark, flows out of hero)
   ============================================================ */
.product-stage {
  position: relative;
  padding: 84px 0 0;
}
.dash {
  position: relative;
  background: linear-gradient(180deg, var(--slate-2), var(--slate-3));
  border: 1px solid var(--slate-line);
  border-radius: 20px 20px 0 0;
  border-bottom: none;
  box-shadow: 0 -30px 90px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(39, 196, 147, 0.05);
  padding: 30px 34px 40px;
  opacity: 0; transform: translateY(34px);
}
body.intro-done .dash, body.no-intro .dash {
  opacity: 1; transform: none;
  transition: opacity 1s var(--ease-out) 0.65s, transform 1s var(--ease-out) 0.65s;
}
.dash-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 22px; margin-bottom: 26px;
  border-bottom: 1px solid var(--slate-line);
}
.dash-head .dh-left { display: flex; align-items: center; gap: 12px; }
.dash-head .dh-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 10px rgba(39, 196, 147, 0.8); animation: live-blink 2.4s ease-in-out infinite; }
@keyframes live-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.dash-head .dh-title {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--slate-muted);
}
.dash-head .dh-right { font-size: 12.5px; color: var(--slate-muted); font-variant-numeric: tabular-nums; }

.dash-grid {
  display: grid;
  grid-template-columns: 300px 1fr 280px;
  gap: 40px;
  align-items: stretch;
}

/* left metrics */
.dash-metric .dm-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--slate-muted); margin-bottom: 10px;
}
.dash-metric .dm-value {
  font-family: var(--font-display);
  font-size: clamp(38px, 3.6vw, 52px);
  font-weight: 500; letter-spacing: -0.02em;
  color: #fff; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.dash-metric .dm-delta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-size: 12.5px; font-weight: 600;
  color: var(--green-bright);
  background: rgba(39, 196, 147, 0.1);
  border: 1px solid rgba(39, 196, 147, 0.22);
  border-radius: 999px;
  padding: 5px 12px;
}
.dash-metric .dm-note { margin-top: 12px; font-size: 12.5px; color: var(--slate-muted); }

.dm-bars { margin-top: 30px; display: grid; gap: 10px; }
.dm-bar-row {
  display: grid; grid-template-columns: 44px 1fr 38px;
  align-items: center; gap: 10px;
  font-size: 11.5px; color: var(--slate-muted);
  font-variant-numeric: tabular-nums;
}
.dm-bar-row .pct { text-align: right; color: var(--slate-text); font-weight: 600; }
.dm-track { height: 6px; border-radius: 3px; background: rgba(250, 250, 247, 0.08); overflow: hidden; }
.dm-fill {
  height: 100%; border-radius: 3px; width: 0;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  transition: width 1.2s var(--ease-out);
}
.dm-fill.dim { opacity: 0.55; }
.dm-fill.dimmer { opacity: 0.3; }

/* center chart */
.dash-chart { display: flex; flex-direction: column; min-width: 0; }
.dash-chart .dc-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--slate-muted); margin-bottom: 16px;
}
.dash-chart svg { width: 100%; height: 100%; min-height: 210px; flex: 1; overflow: visible; }
.dc-line {
  fill: none; stroke: var(--green-bright); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(39, 196, 147, 0.45));
}
.dc-area { fill: url(#dcfade); }
.dc-dot { fill: var(--green-bright); filter: drop-shadow(0 0 8px rgba(39, 196, 147, 0.9)); }
.dc-dot-ring { fill: none; stroke: rgba(39, 196, 147, 0.5); animation: dot-ring 2.2s ease-out infinite; transform-origin: center; }
@keyframes dot-ring { 0% { opacity: 0.8; } 100% { opacity: 0; } }
.dc-grid-line { stroke: rgba(250, 250, 247, 0.06); stroke-width: 1; }

/* right feed */
.dash-feed { border-left: 1px solid var(--slate-line); padding-left: 32px; min-width: 0; }
.dash-feed .df-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--slate-muted); margin-bottom: 16px;
}
.feed-list { display: flex; flex-direction: column; gap: 10px; }
.feed-row {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(250, 250, 247, 0.035);
  border: 1px solid rgba(250, 250, 247, 0.06);
  border-radius: 10px;
  padding: 10px 13px;
  font-size: 12.5px; color: var(--slate-text);
  overflow: hidden;
}
.feed-row .fr-ic {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(39, 196, 147, 0.14); color: var(--green-bright);
  margin-top: 1px;
}
.feed-row .fr-sub { display: block; font-size: 11px; color: var(--slate-muted); margin-top: 2px; }
.feed-row.entering { animation: feed-in 0.6s var(--ease-out); }
@keyframes feed-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* KPI stat row inside the dark stage */
.kpi-band { background: var(--slate); color: var(--slate-text); padding: 0 0 96px; position: relative; }
.kpi-band .band-inner {
  border-top: 1px solid var(--slate-line);
  padding-top: 56px;
}
.kpi-band .band-label {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--slate-muted); margin-bottom: 44px;
}
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.kpi { padding: 0 36px; border-left: 1px solid var(--slate-line); }
.kpi:first-child { padding-left: 0; border-left: none; }
.kpi .value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 3.4vw, 50px);
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
  margin-bottom: 12px;
}
.kpi .value .unit { font-size: 0.55em; color: var(--slate-muted); font-weight: 500; }
.kpi .label { font-size: 15px; font-weight: 500; color: var(--slate-text); margin-bottom: 4px; }
.kpi .note { font-size: 13px; color: var(--slate-muted); line-height: 1.5; }
.kpi .spark { margin-top: 14px; }
.kpi .spark svg { display: block; width: 100%; max-width: 140px; height: 26px; }
.kpi .spark polyline {
  fill: none; stroke: rgba(39, 196, 147, 0.75); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.kpi-band .band-footnote { margin-top: 48px; font-size: 12.5px; color: var(--slate-muted); max-width: 620px; }

/* ============================================================
   Sections (paper)
   ============================================================ */
.section { padding: 128px 0; }
.section.tinted { background: #f2f3ee; }
.section.bordered { border-top: 1px solid var(--hairline); }

.section-head { max-width: 720px; margin-bottom: 72px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .kicker,
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 22px;
}
.section-head .kicker::before,
.page-hero .kicker::before {
  content: ""; width: 30px; height: 1px; background: var(--green);
}
.section-head h2 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 20px;
}
.section-head p { font-size: 18px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   Cycle flow
   ============================================================ */
.cycle-flow {
  display: flex; justify-content: space-between; position: relative;
  margin: 0 0 64px;
}
.cycle-flow::before {
  content: ""; position: absolute; left: 30px; right: 30px; top: 23px;
  border-top: 1px dashed var(--hairline-dark);
}
.cnode {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 12px;
  width: 96px; text-align: center;
  color: var(--muted); font-size: 12.5px; font-weight: 600; line-height: 1.35;
  transition: color 0.3s ease;
}
.cnode .cdot {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--hairline-dark);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 12.5px; font-weight: 600; font-variant-numeric: tabular-nums;
  transition: all 0.35s var(--ease-out);
}
.cnode:hover { color: var(--ink); }
.cnode:hover .cdot {
  background: var(--green); border-color: var(--green); color: #fff;
  transform: scale(1.12);
  box-shadow: 0 10px 24px rgba(12, 122, 94, 0.32);
}
.cnode .cdot .arr { display: none; }
.cnode:hover .cdot .num { display: none; }
.cnode:hover .cdot .arr { display: inline; }

/* ============================================================
   Service cards
   ============================================================ */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.svc-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 36px 32px 30px;
  display: flex; flex-direction: column;
  color: var(--ink);
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.svc-card::after {
  /* cursor-tracking glow */
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(12, 122, 94, 0.07), transparent 65%);
  opacity: 0; transition: opacity 0.35s ease;
  pointer-events: none;
}
.svc-card:hover { border-color: var(--hairline-dark); transform: translateY(-5px); box-shadow: var(--shadow-deep); color: var(--ink); }
.svc-card:hover::after { opacity: 1; }

.svc-card .icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.svc-card:hover .icon {
  background: var(--green); color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(12, 122, 94, 0.3);
}
.svc-card h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 10px; }
.svc-card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; flex-grow: 1; }
.svc-card .link {
  margin-top: 22px; font-size: 13.5px; font-weight: 600; color: var(--green);
  display: inline-flex; align-items: center; gap: 6px;
}
.svc-card .link .arrow { transition: transform 0.3s var(--ease-out); }
.svc-card:hover .link .arrow { transform: translateX(4px); }

/* ============================================================
   Marquee
   ============================================================ */
.serve-strip {
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  padding: 40px 0; background: var(--white);
  overflow: hidden;
}
.serve-strip .container { display: flex; align-items: center; gap: 44px; flex-wrap: nowrap; }
.serve-strip .lead {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted-2); white-space: nowrap; flex-shrink: 0;
}
.marquee { overflow: hidden; flex: 1; min-width: 0; position: relative; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 64px; z-index: 1; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--white), transparent); }
.marquee-track {
  display: inline-flex; gap: 48px; white-space: nowrap;
  animation: marquee-scroll 34s linear infinite;
  padding-right: 48px;
}
.serve-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-size: 14.5px; color: var(--ink-soft); font-weight: 500;
  display: inline-flex; align-items: center; gap: 14px;
}
.marquee-track span::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--green); opacity: 0.45;
}
@keyframes marquee-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; white-space: normal; }
}

/* ============================================================
   Steps
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step .num {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 1px solid var(--hairline-dark);
  color: var(--green);
  font-size: 13px; font-weight: 600; font-variant-numeric: tabular-nums;
  margin-bottom: 22px;
  transition: all 0.3s ease;
}
.step:hover .num { background: var(--green); border-color: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(12, 122, 94, 0.28); }
.step h3 { font-size: 18.5px; font-weight: 600; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   Why grid
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-item {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 38px 34px;
  transition: border-color 0.35s ease, transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.why-item:hover { border-color: var(--hairline-dark); transform: translateY(-4px); box-shadow: var(--shadow-deep); }
.why-item .icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--green-soft); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.why-item h3 { font-size: 19px; font-weight: 600; margin-bottom: 12px; }
.why-item p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   CTA band (dark)
   ============================================================ */
.cta-band {
  position: relative;
  background: var(--slate);
  padding: 128px 0;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: -30%;
  background: radial-gradient(40% 50% at 75% 30%, rgba(15, 130, 98, 0.16), transparent 70%);
  pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-band h2 {
  color: #fff;
  font-size: clamp(34px, 4.2vw, 56px);
  letter-spacing: -0.025em;
  max-width: 700px;
  margin-bottom: 20px;
}
.cta-band p { color: rgba(238, 242, 239, 0.6); font-size: 17.5px; max-width: 560px; margin-bottom: 40px; line-height: 1.7; }

/* ============================================================
   Interior page hero (light editorial)
   ============================================================ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 88px) 0 74px;
  border-bottom: 1px solid var(--hairline);
  background:
    radial-gradient(60% 120% at 88% -20%, rgba(12, 122, 94, 0.05), transparent 62%),
    var(--paper);
  overflow: hidden;
}
.page-hero .kicker { color: var(--muted); }
.page-hero h1 {
  font-size: clamp(42px, 5.6vw, 76px);
  letter-spacing: -0.028em;
  margin-bottom: 22px;
}
.page-hero .sub { font-size: 18.5px; color: var(--muted); max-width: 660px; line-height: 1.65; }

/* ============================================================
   Services page
   ============================================================ */
.anchor-nav {
  position: sticky; top: 0; z-index: 800;
  background: rgba(250, 250, 247, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.anchor-nav .container { display: flex; gap: 30px; }
.anchor-nav a {
  font-size: 13.5px; font-weight: 600; color: var(--muted);
  padding: 17px 0; white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.anchor-nav a:hover { color: var(--ink); }
.anchor-nav a.current { color: var(--green); border-bottom-color: var(--green); }

.svc-section { padding: 116px 0; border-bottom: 1px solid var(--hairline); scroll-margin-top: 70px; }
.svc-section:last-of-type { border-bottom: none; }
.svc-section:nth-of-type(even) { background: #f2f3ee; }

.svc-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 96px; align-items: start; }
.svc-layout .svc-meta { position: sticky; top: 122px; }
.svc-layout .svc-meta .icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px rgba(12, 122, 94, 0.26);
  margin-bottom: 28px;
}
.svc-layout .svc-meta .icon svg { width: 25px; height: 25px; }
.svc-layout .svc-meta .tag {
  font-family: var(--font-display);
  font-size: 62px; font-weight: 500; line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(16, 24, 22, 0.08);
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.svc-layout h2 { font-size: clamp(30px, 3.2vw, 44px); letter-spacing: -0.024em; margin-bottom: 8px; max-width: 380px; }

.cadence {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(12, 122, 94, 0.25);
  background: var(--green-soft);
  border-radius: 999px;
  padding: 5px 13px;
  margin-top: 16px;
}

.svc-body p { margin-bottom: 22px; font-size: 16.5px; line-height: 1.8; }
.svc-body .inc-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted-2); margin: 38px 0 18px;
}
.svc-body ul { list-style: none; }
.svc-body li {
  position: relative; padding-left: 28px; margin-bottom: 16px;
  color: var(--ink-soft); font-size: 15.5px; line-height: 1.7;
}
.svc-body li::before {
  content: ""; position: absolute; left: 0; top: 0.6em;
  width: 14px; height: 2px; border-radius: 2px; background: var(--green);
}

/* ============================================================
   How We Work — timeline, standards, compliance, FAQ
   ============================================================ */
.timeline { position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 21px; top: 10px; bottom: 10px;
  width: 1px; background: var(--hairline-dark);
}
.tl-item { position: relative; padding-left: 76px; padding-bottom: 64px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item .num {
  position: absolute; left: 0; top: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--hairline-dark);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; font-variant-numeric: tabular-nums;
  transition: all 0.3s ease;
}
.tl-item:hover .num { background: var(--green); border-color: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(12, 122, 94, 0.3); }
.tl-item .phase {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px;
}
.tl-item h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 14px; }
.tl-item p { margin-bottom: 14px; max-width: 640px; font-size: 16px; line-height: 1.7; }
.tl-item ul { list-style: none; }
.tl-item li {
  position: relative; padding-left: 28px; margin-bottom: 10px;
  font-size: 15px; color: var(--ink-soft); line-height: 1.6;
}
.tl-item li::before {
  content: ""; position: absolute; left: 0; top: 0.6em;
  width: 14px; height: 2px; border-radius: 2px; background: var(--green);
}

.std-table { border-top: 1px solid var(--hairline); }
.std-row {
  display: grid; grid-template-columns: 300px 1fr; gap: 44px;
  padding: 26px 0; border-bottom: 1px solid var(--hairline);
  transition: background 0.25s ease;
}
.std-row:hover { background: rgba(12, 122, 94, 0.03); }
.std-row dt { font-weight: 600; font-size: 15.5px; color: var(--ink); transition: color 0.25s ease; }
.std-row:hover dt { color: var(--green); }
.std-row dd { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.65; }

.comp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.comp-item {
  position: relative;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 30px 32px;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.comp-item::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(12, 122, 94, 0.06), transparent 65%);
  opacity: 0; transition: opacity 0.35s ease; pointer-events: none;
}
.comp-item:hover { border-color: var(--hairline-dark); transform: translateY(-3px); box-shadow: var(--shadow-deep); }
.comp-item:hover::after { opacity: 1; }
.comp-item h3 {
  font-size: 16.5px; font-weight: 600; margin-bottom: 10px;
  display: flex; align-items: center; gap: 11px;
}
.comp-item h3 .icon { color: var(--green); flex-shrink: 0; display: inline-flex; }
.comp-item p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* FAQ */
.faq-list { max-width: 820px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item.open { border-color: var(--hairline-dark); box-shadow: var(--shadow-soft); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  background: none; border: none; text-align: left;
  font-family: var(--font-display);
  font-size: 17.5px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink);
  padding: 22px 26px;
}
.faq-q .chev {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--green-soft); color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.35s var(--ease-out), background 0.25s ease, color 0.25s ease;
}
.faq-item.open .faq-q .chev { transform: rotate(180deg); background: var(--green); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); }
.faq-a p { padding: 0 26px 24px; font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 700px; }

/* ============================================================
   About — principles
   ============================================================ */
.principle-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0 72px;
  border-top: 1px solid var(--hairline);
}
.principle {
  display: grid; grid-template-columns: 58px 1fr; gap: 22px;
  padding: 34px 0; border-bottom: 1px solid var(--hairline);
  transition: transform 0.3s var(--ease-out);
}
.principle:hover { transform: translateX(5px); }
.principle .pnum {
  font-size: 13px; font-weight: 600; color: var(--green);
  font-variant-numeric: tabular-nums; padding-top: 5px;
}
.principle h3 { font-size: 18.5px; font-weight: 600; margin-bottom: 8px; }
.principle p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   Contact
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 360px; gap: 72px; align-items: start; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 44px;
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 22px; }
.field label {
  display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 8px;
}
.field label .opt { font-weight: 400; color: var(--muted-2); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--hairline-dark);
  border-radius: 10px;
  padding: 13px 15px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(12, 122, 94, 0.12);
}
.field textarea { resize: vertical; min-height: 130px; }

.form-success { display: none; text-align: center; padding: 52px 24px; }
.form-success .check {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green-soft); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.form-success h3 { font-size: 22px; margin-bottom: 10px; }
.form-success p { color: var(--muted); }

.contact-aside .block { padding: 26px 0; border-bottom: 1px solid var(--hairline); }
.contact-aside .block:first-child { padding-top: 0; }
.contact-aside .block:last-child { border-bottom: none; }
.contact-aside h3 {
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 10px;
}
.contact-aside p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.65; }
.contact-aside a { font-weight: 600; }

/* ============================================================
   Legal pages
   ============================================================ */
.legal-notice {
  background: #fbf4e3;
  border: 1px solid #ecdcb0;
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 14px; color: #6b5620;
  margin-bottom: 48px;
}
.legal-body h2 { font-size: 24px; font-weight: 600; margin: 44px 0 14px; letter-spacing: -0.015em; }
.legal-body p, .legal-body li { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 14px; line-height: 1.7; }
.legal-body ul { padding-left: 22px; }
.legal-body li { margin-bottom: 8px; }

/* ============================================================
   Footer (dark)
   ============================================================ */
.site-footer {
  background: var(--slate);
  color: var(--slate-text);
  padding: 88px 0 46px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39, 196, 147, 0.4), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px;
  margin-bottom: 60px;
}
.site-footer .wordmark, .site-footer .wordmark:hover { color: #fff; }
.site-footer .wordmark .fi { color: var(--green-bright); }
.footer-brand .tagline { margin-top: 16px; font-size: 14.5px; color: var(--slate-muted); max-width: 300px; line-height: 1.65; }
.footer-col h4 {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(238, 242, 239, 0.35); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14.5px; color: rgba(238, 242, 239, 0.75); font-weight: 500; transition: color 0.25s ease; }
.footer-col a:hover { color: var(--green-bright); }
.footer-col p { font-size: 14.5px; color: rgba(238, 242, 239, 0.75); margin-bottom: 12px; line-height: 1.6; }
.footer-col p a { font-weight: 500; }
.footer-bottom {
  border-top: 1px solid var(--slate-line);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 12.5px; color: rgba(238, 242, 239, 0.38); }
.footer-bottom .legal-links { display: flex; gap: 24px; }
.footer-bottom .legal-links a { font-size: 12.5px; color: rgba(238, 242, 239, 0.38); transition: color 0.25s ease; }
.footer-bottom .legal-links a:hover { color: var(--green-bright); }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* stagger within grids */
.card-grid .reveal:nth-child(2), .why-grid .reveal:nth-child(2), .steps-grid .reveal:nth-child(2), .kpi-grid .reveal:nth-child(2), .comp-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.card-grid .reveal:nth-child(3), .why-grid .reveal:nth-child(3), .steps-grid .reveal:nth-child(3), .kpi-grid .reveal:nth-child(3), .comp-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.card-grid .reveal:nth-child(4), .steps-grid .reveal:nth-child(4), .kpi-grid .reveal:nth-child(4), .comp-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.card-grid .reveal:nth-child(5), .comp-grid .reveal:nth-child(5) { transition-delay: 0.08s; }
.card-grid .reveal:nth-child(6), .comp-grid .reveal:nth-child(6) { transition-delay: 0.16s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .dash-grid { grid-template-columns: 260px 1fr; }
  .dash-feed { display: none; }
}

@media (max-width: 980px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .why-grid { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); gap: 44px 0; }
  .kpi:nth-child(3) { padding-left: 0; border-left: none; }
  .svc-layout { grid-template-columns: 1fr; gap: 30px; }
  .svc-layout .svc-meta { position: static; }
  .svc-layout .svc-meta .tag { font-size: 44px; }
  .contact-layout { grid-template-columns: 1fr; gap: 52px; }
  .principle-grid { grid-template-columns: 1fr; gap: 0; }
  .std-row { grid-template-columns: 1fr; gap: 8px; }
  .comp-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .cycle-flow { flex-wrap: wrap; gap: 26px 0; justify-content: flex-start; }
  .cycle-flow::before { display: none; }
  .cnode { width: 33.33%; }
}

@media (max-width: 720px) {
  body { font-size: 15.5px; }
  :root { --nav-h: 66px; }

  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--hairline);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 12px 24px 24px;
  }
  body.dark-hero .main-nav { background: var(--slate); border-bottom-color: var(--slate-line); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 0; font-size: 16.5px; width: 100%; }
  .main-nav a::after { display: none; }
  .main-nav .btn { margin: 12px 0 0; width: 100%; justify-content: center; }

  .hero { padding-top: calc(var(--nav-h) + 56px); }
  .hero h1 { font-size: clamp(38px, 10.5vw, 52px); }
  .hero-sub { margin-top: 30px; }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { flex: 1; justify-content: center; }

  .product-stage { padding-top: 56px; }
  .dash { padding: 20px 18px 26px; border-radius: 16px 16px 0 0; }
  .dash-grid { grid-template-columns: 1fr; gap: 30px; }
  .dash-metric .dm-value { font-size: 38px; }
  .dash-chart svg { min-height: 150px; }

  .kpi-band { padding-bottom: 64px; }
  .kpi-grid { grid-template-columns: 1fr 1fr; gap: 36px 22px; }
  .kpi { padding: 0; border-left: none; }

  .section { padding: 72px 0; }
  .section-head { margin-bottom: 44px; }

  .card-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .cnode { width: 50%; }

  .page-hero { padding: calc(var(--nav-h) + 48px) 0 44px; }

  .svc-section { padding: 60px 0; scroll-margin-top: 110px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 28px 22px; }
  .tl-item { padding-left: 62px; padding-bottom: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .faq-q { padding: 18px 20px; font-size: 16px; }
  .faq-a p { padding: 0 20px 20px; }
}

/* ============================================================
   Content round 2 — specialties grid, comparison, pricing
   ============================================================ */

/* Specialty grid */
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.spec-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex; align-items: center; gap: 14px;
  font-size: 14.5px; font-weight: 600; color: var(--ink);
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.spec-card:hover { border-color: var(--hairline-dark); transform: translateY(-3px); box-shadow: var(--shadow-deep); }
.spec-card .sicon {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  background: var(--green-soft); color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
}
.spec-card:hover .sicon { background: var(--green); color: #fff; }
.spec-note { margin-top: 28px; font-size: 14.5px; color: var(--muted); }
.spec-note a { font-weight: 600; }

/* Comparison */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.compare-col { border-radius: 18px; padding: 36px 34px; }
.compare-col.before { background: var(--white); border: 1px solid var(--hairline); }
.compare-col.after {
  background: linear-gradient(180deg, var(--slate-2), var(--slate-3));
  border: 1px solid rgba(39, 196, 147, 0.22);
  box-shadow: 0 24px 60px rgba(11, 20, 18, 0.18);
}
.compare-col .ch {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  margin-bottom: 26px; display: flex; align-items: center; gap: 10px;
}
.compare-col.before .ch { color: var(--muted-2); }
.compare-col.after .ch { color: var(--green-bright); }
.compare-col ul { list-style: none; }
.compare-col li {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 15px 0; font-size: 15px; line-height: 1.55;
  border-bottom: 1px solid var(--hairline);
}
.compare-col li:last-child { border-bottom: none; }
.compare-col.before li { color: var(--muted); }
.compare-col.after li { color: var(--slate-text); border-bottom-color: var(--slate-line); }
.compare-col li .ci {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  display: inline-flex; align-items: center; justify-content: center;
}
.compare-col.before li .ci { background: #f0efe9; color: var(--muted-2); }
.compare-col.after li .ci { background: rgba(39, 196, 147, 0.15); color: var(--green-bright); }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 34px; }
.price-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 32px 30px;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.price-card:hover { border-color: var(--hairline-dark); transform: translateY(-3px); box-shadow: var(--shadow-deep); }
.price-card .ph { font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 10px; display: flex; align-items: center; gap: 12px; }
.price-card .ph .icon { width: 40px; height: 40px; border-radius: 12px; background: var(--green-soft); color: var(--green); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.price-card p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }
.price-note { font-size: 14.5px; color: var(--muted); max-width: 720px; }

/* Broader coverage cards (services page) */
.cover-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cover-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 26px 24px;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.cover-card:hover { border-color: var(--hairline-dark); transform: translateY(-3px); box-shadow: var(--shadow-deep); }
.cover-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.cover-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* CTA microcopy under hero buttons */
.cta-micro { margin-top: 14px; font-size: 13px; color: var(--slate-muted); width: 100%; }

@media (max-width: 980px) {
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .cover-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .spec-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .spec-card { padding: 14px 12px; font-size: 12.5px; gap: 10px; }
  .spec-card .sicon { width: 32px; height: 32px; }
  .cover-grid { grid-template-columns: 1fr; }
}
