/* ============================================================
   Jayco Digital - Design System
   Light theme · brand green #22B179 · Helvetica-style grotesk
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --bg:        #F2F2EF;
  --bg-2:      #ECECE8;
  --card:      #FFFFFF;
  --ink:       #0C0D0C;
  --ink-soft:  #56585A;
  --ink-faint: #9B9D9E;
  --green:     #22B179;
  --green-d:   #1B9466;
  --green-ink: #0A2A1C;
  --lime:      #B6F04A;
  --line:      rgba(12,13,12,0.10);
  --line-2:    rgba(12,13,12,0.06);

  --radius:    30px;
  --radius-sm: 16px;
  --radius-pill: 999px;

  --shadow:    0 30px 80px -30px rgba(12,13,12,0.28);
  --shadow-sm: 0 12px 40px -18px rgba(12,13,12,0.20);

  --maxw: 1320px;
  --pad: clamp(20px, 5vw, 72px);

  --font: 'Hanken Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-head: 'Space Grotesk', 'Hanken Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  font-weight: 400;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--green); color: #fff; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(56px, 8vw, 118px); position: relative; }
.section--tight { padding-block: clamp(40px, 5.5vw, 78px); }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: clamp(11.5px, 0.95vw, 13px); font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink);
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex: none; position: relative;
  box-shadow: 0 0 0 0 rgba(34,177,121,0.5);
  animation: eyebrowPulse 2.6s var(--ease) infinite;
}
@keyframes eyebrowPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,177,121,0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(34,177,121,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,177,121,0); }
}
.h-xl {
  font-family: var(--font-head);
  font-size: clamp(44px, 8.5vw, 132px);
  line-height: 0.96; letter-spacing: -0.03em; font-weight: 700;
  text-wrap: balance;
}
.h-lg {
  font-family: var(--font-head);
  font-size: clamp(34px, 5.2vw, 76px);
  line-height: 1.0; letter-spacing: -0.025em; font-weight: 700;
  text-wrap: balance;
}
.h-md {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1.05; letter-spacing: -0.02em; font-weight: 700;
  text-wrap: balance;
}
.h-sm {
  font-family: var(--font-head);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15; letter-spacing: -0.015em; font-weight: 600;
}
.thin { font-weight: 300; }
h1, h2, h3, h4, .footer__cta-h, .intro__logo { font-family: var(--font-head); }
.lede {
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.5; color: var(--ink-soft); max-width: 42ch; font-weight: 400;
}
.muted { color: var(--ink-soft); }
.green-text { color: var(--green-d); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; border-radius: var(--radius-pill);
  font-weight: 500; font-size: 16px; letter-spacing: .005em;
  transition: transform .4s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  border: 1.5px solid transparent; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--green); color: #fff; }
.btn--ghost { border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-d); }
.btn .arr { transition: transform .4s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  padding-block: 22px;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.header.scrolled {
  background: rgba(242,242,239,0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 14px;
}
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { font-size: 26px; font-weight: 800; letter-spacing: -0.04em; display: inline-flex; align-items: center; }
.logo img { height: 36px; width: auto; display: block; }
.footer .logo img { height: 40px; }
.logo .dot { color: var(--green); }
.logo small { font-weight: 500; font-size: 26px; letter-spacing: -0.04em; }
.nav-actions { display: flex; align-items: center; gap: 14px; }

.burger {
  width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid var(--line);
  display: grid; place-content: center; gap: 5px; transition: border-color .3s var(--ease), background .3s var(--ease);
}
.burger:hover { border-color: var(--ink); }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform .3s var(--ease); }

/* ---------- Overlay menu ---------- */
.overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(236,236,232,0.6); backdrop-filter: blur(10px);
  display: grid; place-items: center; padding: var(--pad);
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.overlay.open { opacity: 1; visibility: visible; }
.overlay__card {
  width: min(1080px, 100%); background: #0C0D0C; color: #fff;
  border-radius: var(--radius); padding: clamp(34px, 5vw, 70px);
  display: grid; grid-template-columns: 1.3fr .9fr; gap: 40px;
  position: relative; overflow: hidden;
  transform: translateY(24px) scale(.98); opacity: 0; transition: transform .6s var(--ease) .05s, opacity .6s var(--ease) .05s;
}
.overlay.open .overlay__card { transform: none; opacity: 1; }
.overlay__card::after {
  content: ""; position: absolute; right: -10%; bottom: -40%; width: 60%; height: 120%;
  background: radial-gradient(circle, rgba(34,177,121,0.45), transparent 62%); pointer-events: none;
}
.menu-label { font-size: 14px; color: rgba(255,255,255,.5); margin-bottom: 26px; letter-spacing: .04em; }
.menu-list { display: grid; gap: 4px; }
.menu-list a {
  font-size: clamp(28px, 3.6vw, 46px); font-weight: 600; letter-spacing: -0.02em;
  width: max-content; position: relative; transition: color .3s var(--ease), padding-left .35s var(--ease);
}
.menu-list a::before {
  content: ""; position: absolute; left: -4px; top: 50%; width: 0; height: 2px; background: var(--green);
  transform: translateY(-50%); transition: width .35s var(--ease);
}
.menu-list a:hover { color: var(--green); padding-left: 26px; }
.menu-list a:hover::before { width: 18px; }

/* Slide-panel sub menu (Services) */
.menu-nav { position: relative; }
.menu-panel--sub { display: none; }
.menu-nav.show-sub .menu-panel--main { display: none; }
.menu-nav.show-sub .menu-panel--sub { display: block; animation: menuPanelIn .42s var(--ease); }
.menu-nav:not(.show-sub) .menu-panel--main { animation: menuPanelInLeft .42s var(--ease); }
@keyframes menuPanelIn { from { transform: translateX(46px); } to { transform: none; } }
@keyframes menuPanelInLeft { from { transform: translateX(-46px); } to { transform: none; } }
@media (prefers-reduced-motion: reduce) { .menu-panel { animation: none !important; } }
.menu-link { font-size: clamp(28px, 3.6vw, 46px); font-weight: 600; letter-spacing: -0.02em; color: #fff; background: none; border: none; cursor: pointer; padding: 0; text-align: left; font-family: inherit; transition: color .3s var(--ease); }
.menu-link--sub { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }
.menu-link--sub:hover { color: var(--green); }
.menu-link__arr { width: 13px; height: 13px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: rotate(45deg); flex: none; opacity: .55; transition: transform .35s var(--ease), opacity .3s; }
.menu-link--sub:hover .menu-link__arr { transform: rotate(45deg) translate(3px, -3px); opacity: 1; }
.menu-back { display: inline-flex; align-items: center; gap: 12px; background: none; border: none; cursor: pointer; color: rgba(255,255,255,.7); font-family: inherit; font-size: clamp(17px, 1.6vw, 21px); font-weight: 500; padding: 0; margin-bottom: clamp(22px, 3vw, 38px); transition: color .3s var(--ease), gap .3s var(--ease); }
.menu-back:hover { color: #fff; gap: 16px; }
.menu-back__chev { width: 0.6em; height: 0.6em; border-left: 2.5px solid currentColor; border-bottom: 2.5px solid currentColor; transform: rotate(45deg); flex: none; }
.menu-side { position: relative; z-index: 1; display: grid; gap: 26px; align-content: start; }
.menu-side h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.45); font-weight: 600; margin-bottom: 8px; }
.menu-side p, .menu-side a.line { font-size: 18px; font-weight: 500; }
.menu-socials { display: flex; gap: 12px; }
.menu-socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-content: center; transition: background .3s, border-color .3s; }
.menu-socials a:hover { background: var(--green); border-color: var(--green); }
.overlay__close {
  position: absolute; top: 22px; right: 22px; z-index: 2; width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25); color: #fff; display: grid; place-content: center; transition: background .3s, transform .3s;
}
.overlay__close:hover { background: var(--green); border-color: var(--green); transform: rotate(90deg); }

/* ---------- Floating CTA ---------- */
.float-cta {
  position: fixed; right: clamp(18px, 3vw, 40px); bottom: clamp(18px, 3vw, 40px); z-index: 70;
  width: clamp(96px, 11vw, 132px); aspect-ratio: 1; border-radius: 50%;
  background: var(--green); color: #fff; display: grid; place-content: center; text-align: center;
  font-weight: 600; font-size: clamp(13px, 1.1vw, 16px); line-height: 1.1;
  box-shadow: 0 18px 50px -12px rgba(34,177,121,0.7);
  transition: transform .5s var(--ease), background .4s var(--ease);
  animation: floaty 5s ease-in-out infinite;
}
.float-cta:hover { transform: scale(1.07); background: var(--green-d); }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-8px);} }

/* ---------- Placeholders ---------- */
.ph {
  position: relative; overflow: hidden; background: var(--bg-2);
  background-image: repeating-linear-gradient(135deg, rgba(12,13,12,0.035) 0 12px, transparent 12px 24px);
  display: grid; place-content: center;
}
.ph::after {
  content: attr(data-label);
  font-family: 'SFMono-Regular', ui-monospace, 'JetBrains Mono', Menlo, monospace;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint);
  padding: 6px 12px; border: 1px dashed rgba(12,13,12,0.18); border-radius: 6px; background: rgba(255,255,255,.5);
}
.ph--green {
  background: var(--green);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 12px, transparent 12px 24px);
}
.ph--green::after { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.35); background: rgba(0,0,0,.12); }
.ph--dark {
  background: #15171A;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 12px, transparent 12px 24px);
}
.ph--dark::after { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.06); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-cta { animation: none; }
  .eyebrow::before { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: clamp(40px, 6vw, 90px); width: max-content; animation: scrollx 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- Browser-window mockup (showcases site screenshots) ---------- */
.bwin { background: var(--card); border: 1px solid var(--line-2); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .5s var(--ease), transform .5s var(--ease); }
.bwin__bar { display: flex; align-items: center; gap: 14px; padding: 12px 16px; background: #fff; border-bottom: 1px solid var(--line-2); }
.bwin__dots { display: flex; gap: 7px; flex: none; }
.bwin__dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--bg-2); }
.bwin__url { flex: 1; min-width: 0; height: 26px; border-radius: 8px; background: var(--bg); display: flex; align-items: center; gap: 8px; padding: 0 12px; font-size: 12.5px; color: var(--ink-faint); font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.bwin__url svg { flex: none; opacity: .6; }
.bwin__screen { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--bg-2); }
.bwin__screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 0; transition: object-position 4.5s var(--ease), transform .7s var(--ease); display: block; }
/* If a taller-than-16:9 screenshot is dropped in, hovering scrolls it to reveal the full page */
.bwin:hover .bwin__screen img { object-position: 50% 100%; }
.bwin__screen .ph { position: absolute; inset: 0; }

/* ---------- Plain screenshot showcase (no browser chrome) ---------- */
.shot { display: block; }
.shot__frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--card); position: relative; }
.shot__frame img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; object-position: 50% 0; transition: transform .9s var(--ease); }
.shot:hover .shot__frame img { transform: scale(1.04); }
.shot__frame .ph { aspect-ratio: 16/9; }
.shot__cap { display: none; align-items: center; gap: 11px; margin-top: 16px; font-size: 13.5px; color: var(--ink-soft); font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace; letter-spacing: .01em; }
.shot__cap::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex: none; }
.shot__cap b { color: var(--ink); font-weight: 600; }

/* ---------- Footer ---------- */
.footer { background: #0C0D0C; color: #fff; border-radius: var(--radius) var(--radius) 0 0; margin-top: 20px; position: relative; overflow: hidden; }
.footer::before { content:""; position:absolute; left:-15%; top:-40%; width:70%; aspect-ratio:1; border-radius:50%; background: radial-gradient(circle at center, rgba(34,177,121,0.22), rgba(34,177,121,0) 70%); filter: blur(40px); pointer-events:none; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; padding-block: clamp(56px, 8vw, 110px); position: relative; z-index: 1; }
.footer__cta-h { font-size: clamp(34px, 5.5vw, 84px); line-height: .98; letter-spacing: -0.03em; font-weight: 700; }
.footer__links { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.footer__links a { color: rgba(255,255,255,.7); font-size: 16px; transition: color .3s; white-space: nowrap; }
.footer__links a:hover { color: var(--green); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding-block: 28px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); font-size: 14px; position: relative; z-index: 1; }

/* ---------- Misc helpers ---------- */
.tag {
  display: inline-flex; align-items: center; padding: 8px 16px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); font-size: 14px; font-weight: 500; color: var(--ink-soft);
  background: var(--card); white-space: nowrap;
}
.tag--green { background: rgba(34,177,121,0.1); border-color: rgba(34,177,121,0.25); color: var(--green-d); }
.divider { height: 1px; background: var(--line); border: none; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 64px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 32px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 28px); }
.center { text-align: center; }
/* Canonical centered section title (eyebrow + heading + lede) - shared across pages */
.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 5.5vw, 72px); display: grid; gap: 14px; justify-items: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { max-width: 22ch; margin-inline: auto; }
.section-head .lede { max-width: 620px; margin-inline: auto; }
.stack { display: grid; gap: clamp(20px, 2.4vw, 34px); align-content: start; }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4, .footer__top, .overlay__card { grid-template-columns: 1fr; }
  .nav-actions .btn--hide { display: none; }
}

/* ---------- Certified & trusted partners (shared) ---------- */
.svc-card p a { color: var(--green-d); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; text-decoration-color: rgba(34,177,121,.4); transition: text-decoration-color .3s var(--ease), color .3s; }
.svc-card p a:hover { text-decoration-color: var(--green); }.trust { margin-top: clamp(40px,5vw,68px); padding-top: clamp(34px,4vw,52px); border-top: 1px solid var(--line); display: grid; justify-items: center; gap: clamp(22px,2.6vw,32px); }
.trust__label { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.trust__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(34px,5vw,72px); }
.trust__row img { height: clamp(46px,4.4vw,62px); width: auto; object-fit: contain; display: block; transition: transform .4s var(--ease); }
.trust__row img:hover { transform: translateY(-4px); }

/* ---------- Case-study layout (shared by all project pages) ---------- */.cs-hero { padding-top: clamp(140px, 20vh, 230px); }
.cs-back { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ink-soft); font-weight: 500; transition: gap .3s var(--ease), color .3s; white-space: nowrap; }
.cs-back:hover { gap: 16px; color: var(--green-d); }
.cs-hero__tags { display: flex; gap: 10px; flex-wrap: wrap; margin: 28px 0 26px; }
.cs-hero h1 { max-width: 18ch; }
.cs-hero__sub { margin-top: 26px; max-width: 60ch; }
.cs-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: clamp(40px, 5vw, 64px); border-top: 1px solid var(--line); padding-top: 32px; }
.cs-meta h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-faint); font-weight: 600; margin-bottom: 10px; }
.cs-meta p { font-size: clamp(16px, 1.2vw, 19px); font-weight: 500; }
.cs-cover { margin-top: clamp(40px, 5vw, 70px); }
.cs-cover .ph { aspect-ratio: 16/8.4; border-radius: var(--radius); box-shadow: var(--shadow); }
.cs-overview { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.cs-overview .label { position: sticky; top: 120px; }
.cs-overview .label .eyebrow { margin-bottom: 16px; }
.cs-overview .label h2 { font-size: clamp(24px,2.4vw,34px); font-weight: 700; letter-spacing: -0.02em; }
.cs-overview .body p { font-size: clamp(18px, 1.6vw, 24px); line-height: 1.5; color: var(--ink); font-weight: 400; margin-bottom: 22px; letter-spacing: -0.01em; }
.cs-overview .body p:last-child { margin-bottom: 0; }
.cs-overview .body strong { font-weight: 600; }
.cs-block { display: block; }
.cs-block__text { max-width: 880px; }
.cs-block__media { margin-top: clamp(30px, 4vw, 56px); }
.cs-block__num { font-size: 14px; color: var(--green-d); font-weight: 600; letter-spacing: .06em; margin-bottom: 18px; }
.cs-block__text h3 { margin-bottom: 22px; }
.cs-block__text p { color: var(--ink-soft); font-size: clamp(16px,1.3vw,19px); margin-bottom: 16px; }
.cs-block__text ul { list-style: none; display: grid; gap: 12px; margin-top: 24px; }
.cs-block__text li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--ink); }
.cs-block__text li::before { content: ""; width: 18px; height: 18px; border-radius: 50%; background: rgba(34,177,121,.14); position: relative; flex: none; margin-top: 2px; background-image: radial-gradient(circle, var(--green) 30%, transparent 32%); }
.cs-results { background: #0C0D0C; color: #fff; border-radius: var(--radius); padding: clamp(44px,6vw,90px) 0; position: relative; overflow: hidden; }
.cs-results::before { content:""; position:absolute; left:50%; top:-40%; width:50%; height:140%; background: radial-gradient(circle, rgba(34,177,121,0.28), transparent 65%); transform: translateX(-50%); }
.cs-results .wrap { position: relative; z-index: 1; }
.cs-results__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(24px,3vw,50px); margin-top: clamp(40px,5vw,64px); }
.cs-stat { border-top: 1px solid rgba(255,255,255,.18); padding-top: 26px; }
.cs-stat .big { font-size: clamp(30px, 3vw, 44px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; }
.cs-stat .big .green { color: var(--green); }
.cs-stat p { color: rgba(255,255,255,.6); font-size: 16px; margin-top: 14px; }
.cs-results h2, .cs-results .lede { color: #fff; }
.cs-results .lede { color: rgba(255,255,255,.65); }
.cs-gallery { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 56px); }
.cs-quote { text-align: center; max-width: 1000px; margin-inline: auto; }
.cs-quote .stars { color: var(--green); font-size: 20px; letter-spacing: 3px; margin-bottom: 28px; }
.cs-quote blockquote { font-size: clamp(27px, 3.4vw, 50px); line-height: 1.16; letter-spacing: -0.025em; font-weight: 600; text-wrap: balance; max-width: 880px; margin-inline: auto; }
.cs-next { display: block; border-radius: var(--radius); overflow: hidden; position: relative; background: #0C0D0C; }
.cs-next__img { position: absolute; inset: 0; overflow: hidden; }
.cs-next__img .ph { position:absolute; inset:0; opacity:.5; transition: transform .7s var(--ease), opacity .5s; }
.cs-next__img img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:top center; transition: transform .7s var(--ease); }
.cs-next__img::after { content:""; position:absolute; inset:0; background: linear-gradient(rgba(12,13,12,0.82), rgba(12,13,12,0.78)); transition: background .5s var(--ease); }
.cs-next:hover .cs-next__img img { transform: scale(1.05); }
.cs-next:hover .cs-next__img::after { background: linear-gradient(rgba(12,13,12,0.74), rgba(12,13,12,0.70)); }
.cs-next:hover .cs-next__img .ph { transform: scale(1.05); opacity:.65; }
.cs-next__inner { position: relative; z-index: 1; padding: clamp(44px,6vw,90px) var(--pad); text-align: center; color: #fff; display: grid; gap: 16px; justify-items: center; }
.cs-next__inner .lbl { font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.cs-next__inner h3 { font-size: clamp(30px,4.5vw,64px); font-weight: 700; letter-spacing: -0.025em; }
.cs-next__arrow { width: 60px; height: 60px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.3); display: grid; place-content: center; margin-top: 10px; transition: background .35s, border-color .35s, transform .35s; }
.cs-next:hover .cs-next__arrow { background: var(--green); border-color: var(--green); transform: rotate(-45deg); }
@media (max-width: 900px) {
  .cs-meta { grid-template-columns: 1fr 1fr; }
  .cs-overview, .cs-results__grid { grid-template-columns: 1fr; }
  .cs-overview .label { position: static; }
}

/* Form error state (shared across all enquiry forms) */
.form-done.error { background: rgba(192,57,43,0.10); color: #b3261e; }
