/* JM Group Services — design system
   Apple-store-clean: paper white, near-black ink, single mint accent.
   Type: Hanken Grotesk + JetBrains Mono.
*/

:root {
  --ink: #0a0a0a;
  --ink-2: #2b2b2b;
  --ink-3: #6b6b67;
  --paper: #f4f5f7;
  --paper-2: #eceef2;
  --card: #ffffff;
  --line: #e3e5ea;
  --line-2: #d1d5dc;
  --mint: oklch(64% 0.13 165);
  --mint-ink: oklch(38% 0.09 165);
  --mint-soft: oklch(94% 0.04 165);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(10,10,10,.04), 0 2px 8px rgba(10,10,10,.04);
  --shadow-md: 0 8px 24px rgba(10,10,10,.06), 0 2px 6px rgba(10,10,10,.04);
  --shadow-lg: 0 20px 60px rgba(10,10,10,.10), 0 6px 18px rgba(10,10,10,.06);
  --max: 1240px;
  --gutter: clamp(20px, 4vw, 56px);

  --display: "Hanken Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

/* —— Typography —— */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint); vertical-align: 2px; margin-right: 8px;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(44px, 6.4vw, 88px); line-height: 1.02; letter-spacing: -0.035em; font-weight: 600; }
h2 { font-size: clamp(32px, 4vw, 56px); line-height: 1.05; letter-spacing: -0.03em; }
h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.15; letter-spacing: -0.02em; }
.lead { font-size: clamp(18px, 1.6vw, 22px); color: var(--ink-2); line-height: 1.45; max-width: 60ch; }
p { margin: 0; }

.thin { font-weight: 300; color: var(--ink-3); }
.italic { font-style: italic; font-family: "Hanken Grotesk", serif; }

/* —— Layout —— */
.shell { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(72px, 9vw, 140px) 0; }
.section-tight { padding: clamp(48px, 6vw, 88px) 0; }

.row { display: flex; gap: 16px; align-items: center; }
.row.between { justify-content: space-between; }
.col { display: flex; flex-direction: column; }

/* —— Buttons —— */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 52px; padding: 0 26px;
  border-radius: 999px;
  font-weight: 500; font-size: 16px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #1f1f1f; }
.btn-mint { background: var(--mint); color: #062a1f; }
.btn-mint:hover { filter: brightness(1.05); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: #fff; border-color: var(--ink); }
.btn-sm { height: 40px; padding: 0 18px; font-size: 14px; }
.btn-lg { height: 60px; padding: 0 32px; font-size: 17px; }

.btn .arrow {
  display: inline-block; width: 18px; height: 18px;
  transition: transform .2s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* —— Navigation —— */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(18px);
  -webkit-backdrop-filter: saturate(1.4) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -.01em; }
.brand-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-family: var(--mono); font-weight: 700; font-size: 13px;
}
.brand-name { font-size: 17px; }
.brand-tag { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: .08em; margin-left: 4px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative;
  padding: 8px 14px; border-radius: 999px;
  font-size: 14.5px; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-link:hover { color: var(--ink); background: rgba(0,0,0,.04); }
.nav-link.active { color: var(--ink); }
.nav-link .chev { width: 10px; height: 10px; opacity: .6; }

.nav-cta { display: flex; align-items: center; gap: 10px; }

/* mega-menu */
.has-menu { position: relative; }
.mega {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 480px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 18px;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.has-menu:hover .mega, .has-menu:focus-within .mega {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mega-item { display: flex; flex-direction: column; gap: 2px; padding: 12px 14px; border-radius: 12px; transition: background .15s ease; }
.mega-item:hover { background: var(--paper); }
.mega-item .t { font-weight: 500; font-size: 15px; }
.mega-item .d { font-size: 12.5px; color: var(--ink-3); }
.mega-foot {
  margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--ink-3);
}

/* lang toggle */
.lang {
  display: inline-flex; align-items: center; gap: 0;
  border: 1px solid var(--line-2); border-radius: 999px; padding: 3px;
  font-family: var(--mono); font-size: 11.5px;
}
.lang button {
  background: transparent; border: 0; color: var(--ink-3);
  padding: 6px 10px; border-radius: 999px; line-height: 1;
}
.lang button.on { background: var(--ink); color: #fff; }

/* mobile nav */
.burger { display: none; width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--line-2); background: transparent; }
@media (max-width: 960px) {
  .nav-links, .nav-cta .lang, .nav-cta .btn-ghost { display: none; }
  .burger { display: inline-flex; align-items: center; justify-content: center; }
}

/* —— Hero —— */
.hero { padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 7vw, 96px); }
.hero-eyebrow-row { display: flex; gap: 14px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: 12.5px; color: var(--ink-2);
}
.chip .dot-mint { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); }
.chip.live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--mint);
  box-shadow: 0 0 0 0 var(--mint); animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%{box-shadow: 0 0 0 0 color-mix(in oklab, var(--mint) 60%, transparent);} 100%{box-shadow: 0 0 0 10px transparent;} }

.hero h1 .accent { color: var(--mint-ink); font-style: italic; font-weight: 400; }

.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.hero-meta > div {
  position: relative;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  --accent: var(--ink);
  --accent-soft: var(--paper);
}
.hero-meta > div[data-color="cobalt"]  { --accent: oklch(58% 0.20 254); --accent-soft: oklch(95% 0.04 254); }
.hero-meta > div[data-color="emerald"] { --accent: oklch(62% 0.16 155); --accent-soft: oklch(95% 0.04 155); }
.hero-meta > div[data-color="amber"]   { --accent: oklch(72% 0.16 65);  --accent-soft: oklch(96% 0.05 75); }
.hero-meta > div[data-color="coral"]   { --accent: oklch(66% 0.22 25);  --accent-soft: oklch(95% 0.04 30); }
.hero-meta > div::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--accent);
}
.hero-meta > div:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--accent); }
.hero-meta .n { font-size: clamp(28px, 2.6vw, 38px); font-weight: 600; letter-spacing: -.025em; line-height: 1; }
.hero-meta .l { font-family: var(--mono); font-size: 11.5px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .1em; margin-top: 10px; }

@media (max-width: 720px) {
  .hero-meta { grid-template-columns: 1fr 1fr; }
}

/* quick actions — the "no time to scroll" row */
.quick {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.quick-card {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 22px 22px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-align: left;
  overflow: hidden;
  --accent: var(--ink);
  --accent-ink: var(--ink);
  --accent-soft: var(--paper);
}
.quick-card[data-color="cobalt"]  { --accent: oklch(58% 0.20 254); --accent-ink: oklch(40% 0.16 254); --accent-soft: oklch(95% 0.04 254); }
.quick-card[data-color="emerald"] { --accent: oklch(62% 0.16 155); --accent-ink: oklch(40% 0.12 155); --accent-soft: oklch(95% 0.04 155); }
.quick-card[data-color="amber"]   { --accent: oklch(72% 0.16 65);  --accent-ink: oklch(46% 0.14 60);  --accent-soft: oklch(96% 0.05 75); }
.quick-card[data-color="coral"]   { --accent: oklch(66% 0.22 25);  --accent-ink: oklch(46% 0.18 25);  --accent-soft: oklch(95% 0.04 30); }
.quick-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.quick-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.quick-card:hover::before { transform: scaleX(1); }
.quick-card .ic {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent-ink);
  display: grid; place-items: center; margin-bottom: 6px;
}
.quick-card .ic svg { width: 20px; height: 20px; }
.quick-card .t { font-weight: 600; font-size: 16px; letter-spacing: -.01em; }
.quick-card .d { font-size: 13px; color: var(--ink-3); }
.quick-card .arrow-i {
  position: absolute; top: 22px; right: 22px; width: 16px; height: 16px; color: var(--ink-3);
  transition: transform .2s ease, color .2s ease;
}
.quick-card:hover .arrow-i { color: var(--accent-ink); transform: translate(3px, -3px); }
@media (max-width: 900px) { .quick { grid-template-columns: 1fr 1fr; } }

/* —— Hero image —— */
.hero-media {
  margin-top: 56px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-2);
  aspect-ratio: 21 / 9;
  box-shadow: var(--shadow-md);
}
.hero-media image-slot { width: 100%; height: 100%; }

/* Floating quote pill on hero */
.hero-pill {
  position: absolute; left: 24px; bottom: 24px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
}
.hero-pill .avatars { display: flex; }
.hero-pill .avatars span {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--mint); border: 2px solid #fff;
  margin-left: -8px;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 600; color: #062a1f;
}
.hero-pill .avatars span:first-child { margin-left: 0; }
.hero-pill .avatars span:nth-child(2) { background: #ffd6a8; color: #5a3300; }
.hero-pill .avatars span:nth-child(3) { background: #c9d7ff; color: #1e3478; }
.hero-pill .t { font-size: 13px; font-weight: 500; }
.hero-pill .d { font-size: 12px; color: var(--ink-3); }

/* —— Section headers —— */
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.section-head .lead { margin-top: 16px; }
.section-head .right { color: var(--ink-3); font-size: 14px; }

/* —— Service grid (Apple-tile style) —— */
.services {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px;
}
.svc {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 320px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.svc:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.svc .label {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-3);
}
.svc h3 { margin-top: 10px; }
.svc .copy { color: var(--ink-3); font-size: 14.5px; margin-top: 8px; max-width: 32ch; }
.svc .foot { display: flex; justify-content: space-between; align-items: end; margin-top: 24px; }
.svc .price { font-family: var(--mono); font-size: 13px; color: var(--ink-2); }
.svc .go {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: #fff; display: grid; place-items: center;
  transition: transform .2s ease, background .2s ease;
}
.svc:hover .go { background: var(--mint-ink); transform: rotate(-45deg); }
.svc .art {
  position: absolute; inset: auto -20px -30px auto;
  width: 220px; height: 220px; opacity: .9; pointer-events: none;
}
/* Service-card colored icon chip (matches trust-card style) */
.svc .svc-ic {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.svc .svc-ic svg { width: 22px; height: 22px; }
.svc.dark .svc-ic { background: rgba(255,255,255,.10); color: #fff; }

.svc.big {
  grid-column: span 8;
  min-height: 420px;
  padding: 36px;
  --accent-soft: rgba(255,255,255,.18);
  --accent-ink: #fff;
}
.svc.med { grid-column: span 4; }
.svc.std { grid-column: span 4; }
.svc.dark { background: var(--ink); color: #fff; border-color: transparent; }
.svc.dark .label { color: #b9b9b9; }
.svc.dark .copy { color: #b9b9b9; }
.svc.dark .go { background: #fff; color: var(--ink); }
.svc.dark .price { color: #d9d9d9; }
.svc.mint { background: var(--mint-soft); border-color: transparent; }

.svc-img { 
  position: absolute; inset: 0; z-index: 0;
}
.svc.image-card { color: #fff; padding: 28px; }
.svc.image-card .label, .svc.image-card .copy, .svc.image-card .price { color: rgba(255,255,255,.85); }
.svc.image-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.55) 100%);
}
.svc.image-card > * { position: relative; z-index: 2; }
.svc.image-card .go { background: #fff; color: var(--ink); }

@media (max-width: 1000px) {
  .svc.big, .svc.med, .svc.std { grid-column: span 6; min-height: 320px; }
  .svc.big { min-height: 380px; padding: 28px; }
}
@media (max-width: 640px) {
  .svc.big, .svc.med, .svc.std { grid-column: span 12; }
}

/* —— Differentiators / trust row —— */
.trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.trust-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; min-height: 200px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  --accent: var(--mint);
  --accent-ink: var(--mint-ink);
  --accent-soft: var(--mint-soft);
}
.trust-card[data-color="rose"]    { --accent: oklch(66% 0.20 10);  --accent-ink: oklch(45% 0.16 10);  --accent-soft: oklch(95% 0.04 12); }
.trust-card[data-color="emerald"] { --accent: oklch(62% 0.16 155); --accent-ink: oklch(40% 0.12 155); --accent-soft: oklch(95% 0.04 155); }
.trust-card[data-color="cobalt"]  { --accent: oklch(58% 0.20 254); --accent-ink: oklch(40% 0.16 254); --accent-soft: oklch(95% 0.04 254); }
.trust-card[data-color="amber"]   { --accent: oklch(72% 0.16 65);  --accent-ink: oklch(46% 0.14 60);  --accent-soft: oklch(96% 0.05 75); }
.trust-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.trust-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.trust-card:hover::before { transform: scaleX(1); }
.trust-card .ic-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent-ink);
  display: grid; place-items: center; flex-shrink: 0;
}
.trust-card .ic-wrap svg { width: 22px; height: 22px; }
.trust-card .ic { width: 32px; height: 32px; color: var(--accent-ink); }
.trust-card .t { font-weight: 600; font-size: 18px; letter-spacing: -.01em; }
.trust-card .d { font-size: 14px; color: var(--ink-3); }
@media (max-width: 900px) { .trust { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .trust { grid-template-columns: 1fr; } }

/* —— Process / Timeline —— */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.process-step {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px 28px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  --accent: var(--ink);
  --accent-ink: var(--ink);
  --accent-soft: var(--paper);
}
.process-step[data-color="cobalt"]  { --accent: oklch(58% 0.20 254); --accent-ink: oklch(40% 0.16 254); --accent-soft: oklch(95% 0.04 254); }
.process-step[data-color="emerald"] { --accent: oklch(62% 0.16 155); --accent-ink: oklch(40% 0.12 155); --accent-soft: oklch(95% 0.04 155); }
.process-step[data-color="amber"]   { --accent: oklch(72% 0.16 65);  --accent-ink: oklch(46% 0.14 60);  --accent-soft: oklch(96% 0.05 75); }
.process-step[data-color="coral"]   { --accent: oklch(66% 0.22 25);  --accent-ink: oklch(46% 0.18 25);  --accent-soft: oklch(95% 0.04 30); }
.process-step::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.process-step:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.process-step:hover::before { transform: scaleX(1); }
.process-step .n {
  display: inline-block;
  font-family: var(--mono); font-size: 11.5px; font-weight: 500; letter-spacing: .12em;
  padding: 4px 10px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-ink);
}
.process-step h3 { margin-top: 14px; font-size: 22px; }
.process-step p { color: var(--ink-3); font-size: 14px; margin-top: 10px; }
@media (max-width: 800px) { .process { grid-template-columns: 1fr 1fr; } }

/* —— Zones grid (vibrant cards) —— */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.zone-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 150px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  --accent: var(--ink);
  --accent-ink: var(--ink);
  --accent-soft: var(--paper);
}
.zone-card[data-color="cobalt"]  { --accent: oklch(58% 0.20 254); --accent-ink: oklch(40% 0.16 254); --accent-soft: oklch(95% 0.04 254); }
.zone-card[data-color="emerald"] { --accent: oklch(62% 0.16 155); --accent-ink: oklch(40% 0.12 155); --accent-soft: oklch(95% 0.04 155); }
.zone-card[data-color="amber"]   { --accent: oklch(72% 0.16 65);  --accent-ink: oklch(46% 0.14 60);  --accent-soft: oklch(96% 0.05 75); }
.zone-card[data-color="coral"]   { --accent: oklch(66% 0.22 25);  --accent-ink: oklch(46% 0.18 25);  --accent-soft: oklch(95% 0.04 30); }
.zone-card[data-color="rose"]    { --accent: oklch(66% 0.20 10);  --accent-ink: oklch(45% 0.16 10);  --accent-soft: oklch(95% 0.04 12); }
.zone-card[data-color="violet"]  { --accent: oklch(60% 0.20 295); --accent-ink: oklch(42% 0.16 295); --accent-soft: oklch(95% 0.04 295); }
.zone-card[data-color="teal"]    { --accent: oklch(64% 0.14 195); --accent-ink: oklch(42% 0.12 195); --accent-soft: oklch(95% 0.04 195); }
.zone-card[data-color="lime"]    { --accent: oklch(76% 0.18 130); --accent-ink: oklch(48% 0.14 130); --accent-soft: oklch(96% 0.06 130); }

.zone-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.zone-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.zone-card:hover::before { transform: scaleX(1); }

.zone-pin {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent-ink);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.zone-pin svg { width: 22px; height: 22px; }

.zone-name {
  font-size: 17px; font-weight: 600; letter-spacing: -.01em;
  color: var(--ink);
}
.zone-eta {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: .08em;
  color: var(--accent-ink);
  margin-top: auto;
}

@media (max-width: 900px) { .zones-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .zones-grid { grid-template-columns: 1fr; } }

/* —— Before/After —— */
.ba {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg); overflow: hidden;
  user-select: none; -webkit-user-select: none;
  background: var(--paper-2);
}
.ba .pane { position: absolute; inset: 0; }
.ba .pane-after { clip-path: inset(0 0 0 50%); }
.ba .ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(0,0,0,.1);
}
.ba .ba-handle {
  position: absolute; top: 50%; left: 50%;
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; transform: translate(-50%, -50%);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  cursor: ew-resize;
}
.ba .ba-handle svg { width: 22px; height: 22px; color: var(--ink); }
.ba .ba-label {
  position: absolute; top: 18px;
  background: rgba(0,0,0,.6); color: #fff;
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 999px;
}
.ba .ba-label.before { left: 18px; }
.ba .ba-label.after { right: 18px; background: var(--mint); color: #062a1f; }

/* —— FAQ —— */
.faq { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: transparent; border: 0; text-align: left;
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: clamp(17px, 1.5vw, 22px); font-weight: 500; letter-spacing: -.01em; color: var(--ink);
}
.faq-q .pm { width: 22px; height: 22px; transition: transform .25s ease; }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-a-inner { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a-inner p { padding: 0 0 24px 0; color: var(--ink-3); max-width: 70ch; font-size: 16px; }

/* —— Testimonials —— */
.testi { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.testi-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 16px;
}
.testi-card .stars { display: flex; gap: 2px; color: var(--mint-ink); }
.testi-card .q { font-size: 17px; line-height: 1.45; letter-spacing: -.005em; }
.testi-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-card .av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--mint-soft); color: var(--mint-ink);
  display: grid; place-items: center; font-weight: 600; font-size: 14px;
}
.testi-card .who .n { font-size: 14px; font-weight: 500; }
.testi-card .who .r { font-size: 12px; color: var(--ink-3); }
@media (max-width: 900px) { .testi { grid-template-columns: 1fr; } }

/* —— CTA strip —— */
.cta {
  background: var(--ink); color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 72px);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: end;
}
.cta h2 { color: #fff; }
.cta .lead { color: #c9c9c5; }
.cta-right { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.cta-right .num { font-family: var(--mono); font-size: 13px; color: #b9b9b9; letter-spacing: .08em; }
.cta .btn-mint { color: #062a1f; }
@media (max-width: 800px) { .cta { grid-template-columns: 1fr; } .cta-right { align-items: flex-start; } }

/* —— Footer —— */
.footer { background: var(--paper-2); border-top: 1px solid var(--line); padding: 64px 0 24px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer h4 { font-size: 12px; font-family: var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; margin-bottom: 14px; }
.footer a { display: block; padding: 4px 0; font-size: 14px; color: var(--ink-2); }
.footer a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 32px; margin-top: 48px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--ink-3); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* —— Animations —— */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* image-slot defaults */
image-slot {
  display: block; width: 100%; height: 100%;
  border-radius: inherit;
  background: var(--paper-2);
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10,10,10,.4);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer-panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(420px, 90vw); background: var(--paper);
  transform: translateX(100%); transition: transform .3s ease;
  padding: 24px; display: flex; flex-direction: column; gap: 6px;
}
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 18px; }

/* —— Pages —— */
.page-hero { padding: 80px 0 40px; }
.page-hero h1 { font-size: clamp(40px, 5vw, 72px); }
.crumbs { display: flex; gap: 8px; font-family: var(--mono); font-size: 12px; color: var(--ink-3); letter-spacing: .08em; text-transform: uppercase; }
.crumbs a:hover { color: var(--ink); }

/* —— Service category grid (services page) —— */
.cat {
  --accent: var(--mint);
  --accent-ink: var(--mint-ink);
  --accent-soft: var(--mint-soft);
  padding: 72px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.cat:first-of-type { border-top: 0; padding-top: 24px; }

/* Per-category vibrant palettes */
.cat[data-color="cobalt"] {
  --accent: oklch(58% 0.20 254);
  --accent-ink: oklch(38% 0.15 254);
  --accent-soft: oklch(95% 0.04 254);
}
.cat[data-color="amber"] {
  --accent: oklch(72% 0.16 65);
  --accent-ink: oklch(46% 0.14 60);
  --accent-soft: oklch(96% 0.05 75);
}
.cat[data-color="coral"] {
  --accent: oklch(66% 0.22 25);
  --accent-ink: oklch(46% 0.18 25);
  --accent-soft: oklch(95% 0.04 30);
}
.cat[data-color="emerald"] {
  --accent: oklch(62% 0.16 155);
  --accent-ink: oklch(40% 0.12 155);
  --accent-soft: oklch(95% 0.04 155);
}

/* Big colored category marker — sits above the category */
.cat-marker {
  display: flex; align-items: center; gap: 18px; margin-bottom: 28px;
}
.cat-marker .badge {
  font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .14em;
  color: var(--accent-ink); text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: var(--accent-soft);
}
.cat-marker .bar {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 60px, var(--line) 60px, var(--line) 100%);
}
.cat-marker .number {
  font-family: var(--mono); font-size: 13px; letter-spacing: .12em;
  color: var(--ink-3);
}

.cat-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 28px; }
.cat-head h2 { font-size: clamp(28px, 3vw, 40px); }
.cat-head h2 .accent-stop {
  color: var(--accent-ink);
  font-style: italic; font-weight: 400;
}
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cat-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; gap: 8px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  position: relative;
  min-height: 200px;
  overflow: hidden;
}
.cat-item::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.cat-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.cat-item:hover::before { transform: scaleX(1); }
.cat-item .label {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-ink);
  display: inline-flex; align-items: center; gap: 6px;
}
.cat-item .label::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.cat-item .t { font-size: 20px; font-weight: 600; letter-spacing: -.015em; }
.cat-item .d { font-size: 13.5px; color: var(--ink-3); }
.cat-item .arrow-i { position: absolute; bottom: 24px; right: 24px; width: 18px; height: 18px; color: var(--ink-3); transition: transform .2s ease, color .2s ease; }
.cat-item:hover .arrow-i { color: var(--accent-ink); transform: translate(3px, -3px); }

/* Featured (first) item in each category — full-color card */
.cat-item.featured {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}
.cat-item.featured::before { display: none; }
.cat-item.featured .label { color: rgba(255,255,255,.85); }
.cat-item.featured .label::before { background: rgba(255,255,255,.85); }
.cat-item.featured .d { color: rgba(255,255,255,.85); }
.cat-item.featured .arrow-i { color: #fff; }
.cat-item.featured:hover { transform: translateY(-3px); filter: brightness(1.05); border-color: transparent; }
.cat-item.featured:hover .arrow-i { color: #fff; transform: translate(3px, -3px); }

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

/* —— Detail page —— */
.detail { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.detail-content h2 { margin-top: 56px; font-size: clamp(26px, 2.4vw, 36px); }
.detail-content p { margin-top: 14px; color: var(--ink-2); }
.detail-content ul { margin: 16px 0; padding: 0; list-style: none; }
.detail-content li { padding: 12px 0; border-top: 1px solid var(--line); display: flex; gap: 14px; align-items: start; }
.detail-content li:first-child { border-top: 0; }
.detail-content li .check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--mint-soft); color: var(--mint-ink);
  display: grid; place-items: center; margin-top: 2px;
}
.detail-aside {
  position: sticky; top: 88px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; gap: 16px;
}
.detail-aside h4 { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }
.detail-aside .row-info { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.detail-aside .row-info:last-of-type { border-bottom: 0; }
.detail-aside .row-info .k { color: var(--ink-3); }
@media (max-width: 900px) { .detail { grid-template-columns: 1fr; } .detail-aside { position: static; } }

.detail-cover {
  border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 16/9;
  background: var(--paper-2);
  margin: 32px 0;
}

/* —— Devis form —— */
.devis {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px;
}
.devis-side h2 { font-size: clamp(26px, 2.6vw, 36px); }
.devis-side .lead { font-size: 16px; margin-top: 12px; }
.devis-side .ticks { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.devis-side .ticks .row { gap: 12px; align-items: start; }
.devis-side .ticks .check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--mint-soft); color: var(--mint-ink);
  display: grid; place-items: center;
}
.devis-side .ticks .t { font-size: 14.5px; font-weight: 500; }
.devis-side .ticks .d { font-size: 12.5px; color: var(--ink-3); }

.steps { display: flex; gap: 6px; margin-bottom: 24px; }
.steps .pill {
  flex: 1; height: 4px; border-radius: 999px; background: var(--line);
}
.steps .pill.on { background: var(--ink); }
.step-count { font-family: var(--mono); font-size: 12px; color: var(--ink-3); margin-bottom: 8px; letter-spacing: .08em; }
.step h3 { font-size: 22px; letter-spacing: -.015em; }
.step .help { color: var(--ink-3); font-size: 14px; margin-top: 6px; }

.opts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.opt {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; transition: border-color .15s ease, background .15s ease;
}
.opt:hover { border-color: var(--ink-3); }
.opt.on { border-color: var(--ink); background: #fff; box-shadow: var(--shadow-sm); }
.opt .opt-dot { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--line-2); flex-shrink: 0; }
.opt.on .opt-dot { border-color: var(--ink); background: var(--ink); box-shadow: inset 0 0 0 4px #fff; }
.opt .t { font-size: 14.5px; font-weight: 500; }
.opt .d { font-size: 12px; color: var(--ink-3); }

.field { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; }
.field label { font-size: 12px; font-family: var(--mono); text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); }
.field input, .field textarea, .field select {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; font: inherit; color: inherit;
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--ink); background: #fff; }
.field .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; }
.step-nav .left { color: var(--ink-3); font-size: 13px; }

.devis-success {
  background: var(--mint-soft); border-radius: 14px; padding: 24px;
  text-align: center; margin-top: 24px;
}
.devis-success .check-big {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--mint); color: #062a1f;
  display: grid; place-items: center; margin: 0 auto 12px;
}
.devis-success h3 { font-size: 22px; }
.devis-success p { color: var(--mint-ink); margin-top: 8px; }

@media (max-width: 900px) { .devis { grid-template-columns: 1fr; gap: 32px; } .opts { grid-template-columns: 1fr; } .field .grid-2 { grid-template-columns: 1fr; } }

/* —— About: KPI —— */
.kpi {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.kpi > div {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  --accent: var(--ink);
  --accent-soft: var(--paper);
}
.kpi > div[data-color="cobalt"]  { --accent: oklch(58% 0.20 254); --accent-soft: oklch(95% 0.04 254); }
.kpi > div[data-color="emerald"] { --accent: oklch(62% 0.16 155); --accent-soft: oklch(95% 0.04 155); }
.kpi > div[data-color="amber"]   { --accent: oklch(72% 0.16 65);  --accent-soft: oklch(96% 0.05 75); }
.kpi > div[data-color="coral"]   { --accent: oklch(66% 0.22 25);  --accent-soft: oklch(95% 0.04 30); }
.kpi > div::before {
  content: ""; position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
  background: var(--accent);
}
.kpi > div:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--accent); }
.kpi .n { font-size: clamp(34px, 4vw, 56px); font-weight: 600; letter-spacing: -.025em; line-height: 1; color: var(--ink); }
.kpi .l { font-family: var(--mono); font-size: 11.5px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .1em; margin-top: 14px; max-width: 22ch; }
@media (max-width: 800px) { .kpi { grid-template-columns: 1fr 1fr; } }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.value-card {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; min-height: 220px;
  display: flex; flex-direction: column; gap: 14px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  --accent: var(--ink);
  --accent-ink: var(--ink);
  --accent-soft: var(--paper);
}
.value-card[data-color="rose"]    { --accent: oklch(66% 0.20 10);  --accent-ink: oklch(45% 0.16 10);  --accent-soft: oklch(95% 0.04 12); }
.value-card[data-color="emerald"] { --accent: oklch(62% 0.16 155); --accent-ink: oklch(40% 0.12 155); --accent-soft: oklch(95% 0.04 155); }
.value-card[data-color="cobalt"]  { --accent: oklch(58% 0.20 254); --accent-ink: oklch(40% 0.16 254); --accent-soft: oklch(95% 0.04 254); }
.value-card[data-color="amber"]   { --accent: oklch(72% 0.16 65);  --accent-ink: oklch(46% 0.14 60);  --accent-soft: oklch(96% 0.05 75); }
.value-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.value-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.value-card:hover::before { transform: scaleX(1); }
.value-card .ic-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent-ink);
  display: grid; place-items: center; flex-shrink: 0;
}
.value-card .ic-wrap svg { width: 22px; height: 22px; }
.value-card .n { font-family: var(--mono); font-size: 12px; color: var(--accent-ink); letter-spacing: .1em; }
.value-card .t { font-size: 22px; font-weight: 600; letter-spacing: -.015em; }
.value-card .d { font-size: 14px; color: var(--ink-3); }
@media (max-width: 800px) { .values { grid-template-columns: 1fr; } }
