/* ═══════════════════════════════════════════════════════════════
   CleanMate — clean-mate.nl
   Fresh, premium design system · aqua / ink / lemon
   ═══════════════════════════════════════════════════════════════ */

/* ─────────── Tokens ─────────── */
:root {
  --bg:        #F5FAFB;
  --bg-soft:   #EAF4F6;
  --white:     #FFFFFF;
  --ink:       #072F3D;
  --ink-2:     #40606D;
  --dark:      #05202B;
  --dark-2:    #082B38;
  --aqua:      #0AA6C9;
  --aqua-2:    #35C7E3;
  --aqua-deep: #067895;
  --mint:      #31B99B;
  --lemon:     #FFD966;
  --line:      rgba(7, 47, 61, .1);
  --line-light:rgba(234, 246, 250, .14);
  --grad:      linear-gradient(135deg, #35C7E3 0%, #0A8FC0 100%);
  --shadow-sm: 0 6px 24px -8px rgba(7, 47, 61, .12);
  --shadow-md: 0 18px 50px -18px rgba(7, 47, 61, .22);
  --shadow-aqua: 0 14px 34px -12px rgba(10, 143, 192, .5);
  --header-h:  76px;
  --radius:    28px;
  --ff-display: 'Sora', system-ui, sans-serif;
  --ff-body:    'Inter', system-ui, sans-serif;
  --ff-accent:  'Instrument Serif', Georgia, serif;
}

/* ─────────── Reset / base ─────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; }

body {
  font-family: var(--ff-body);
  font-size: 1.03rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* grain texture over everything (subtle) */
body::after {
  content: '';
  position: fixed;
  inset: -50%;
  z-index: 2000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .035;
}

img, svg { display: inline-block; vertical-align: middle; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
b, strong { font-weight: 600; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  text-wrap: balance;
}

h2 { font-size: clamp(2.3rem, 5vw, 4rem); }
h2 em, .accent {
  font-family: var(--ff-accent);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--aqua);
}

::selection { background: var(--aqua); color: #fff; }

:focus-visible { outline: 2px solid var(--aqua); outline-offset: 3px; border-radius: 4px; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(10, 166, 201, .55); border-radius: 99px; border: 3px solid var(--bg); }

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 3000;
  padding: .7em 1.4em; background: var(--ink); color: #fff;
  border-radius: 99px; font-size: .85rem; transition: top .25s;
}
.skip-link:focus { top: 12px; }

/* ─────────── Layout helpers ─────────── */
.container { width: min(1160px, 92vw); margin-inline: auto; }
.container--wide { width: min(1400px, 94vw); }
.container--narrow { width: min(780px, 92vw); }

section { position: relative; }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-sub { margin-top: 1.1rem; color: var(--ink-2); font-size: 1.06rem; max-width: 54ch; }
.section-head--center .section-sub { margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--ff-display); font-size: .74rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--aqua-deep); margin-bottom: 1.1rem;
}
.eyebrow svg { color: var(--aqua); }
.eyebrow--light { color: var(--aqua-2); }

.c-lemon { color: var(--lemon); }

/* ─────────── Buttons ─────────── */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 1em 1.9em;
  font-family: var(--ff-display); font-size: .93rem; font-weight: 600;
  border-radius: 999px; white-space: nowrap;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s, background-color .3s, color .3s, border-color .3s;
  overflow: hidden;
}
.btn > * { position: relative; z-index: 1; }
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .6s ease;
}
.btn:hover::after { transform: translateX(110%); }

.btn--primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-aqua); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(10,143,192,.6); }

.btn--ghost { border: 1.5px solid var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--white); border-color: transparent; box-shadow: var(--shadow-sm); transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(0,0,0,.35); }

.btn--outline-light { border: 1.5px solid rgba(234,246,250,.3); color: #EAF6FA; }
.btn--outline-light:hover { background: rgba(234,246,250,.08); transform: translateY(-2px); }

.btn--sm { padding: .72em 1.4em; font-size: .86rem; }
.btn--lg { padding: 1.15em 2.4em; font-size: 1rem; }
.btn--block { width: 100%; }

/* ─────────── Preloader ─────────── */
.preloader { position: fixed; inset: 0; z-index: 2500; display: none; }
.js .preloader { display: block; }
.preloader__panel {
  position: absolute; inset: 0;
  background: var(--dark);
  border-radius: 0 0 6vh 6vh;
  display: grid; place-items: center;
}
.preloader__inner { text-align: center; }
.preloader__brand {
  display: flex; align-items: center; gap: .5em; justify-content: center;
  font-family: var(--ff-display); font-size: 1.7rem; font-weight: 700; color: #EAF6FA;
}
.preloader__mark { color: var(--aqua-2); }
.preloader__count {
  margin-top: 1.4rem;
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4rem);
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.preloader__bar {
  width: 190px; height: 3px; margin: 1.5rem auto 0;
  background: rgba(234,246,250,.12); border-radius: 99px; overflow: hidden;
}
.preloader__bar span {
  display: block; width: 100%; height: 100%;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
}

/* ─────────── Cursor ─────────── */
.cursor { display: none; }
@media (pointer: fine) {
  .js .cursor { display: block; position: fixed; top: 0; left: 0; z-index: 2600; pointer-events: none; }
  .cursor__dot, .cursor__ring { position: fixed; top: 0; left: 0; }
  .cursor__dot {
    width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px;
    background: var(--aqua); border-radius: 50%;
  }
  .cursor__ring { width: 38px; height: 38px; margin: -19px 0 0 -19px; }
  .cursor__ring span {
    display: block; width: 100%; height: 100%;
    border: 1.5px solid rgba(10,166,201,.55); border-radius: 50%;
    transition: transform .35s cubic-bezier(.22,1,.36,1), background-color .35s, border-color .35s;
  }
  html.cursor-grow .cursor__ring span { transform: scale(1.65); background: rgba(10,166,201,.09); border-color: rgba(10,166,201,.3); }
}

/* ─────────── Header ─────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  transition: transform .45s cubic-bezier(.22,1,.36,1), background-color .35s, box-shadow .35s, backdrop-filter .35s;
}
.header.is-hidden { transform: translateY(-102%); }
.header.is-scrolled {
  background: rgba(245, 250, 251, .78);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.header__inner {
  height: var(--header-h);
  width: min(1400px, 94vw); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}

.logo { display: inline-flex; align-items: center; gap: .55em; }
.logo__mark {
  width: 34px; height: 34px; display: grid; place-items: center;
  background: var(--grad); color: #fff; border-radius: 11px;
  box-shadow: var(--shadow-aqua);
}
.logo__text { font-family: var(--ff-display); font-weight: 800; font-size: 1.22rem; letter-spacing: -.02em; }
.logo__text em { font-style: normal; color: var(--aqua); }
.logo--light .logo__text { color: #EAF6FA; }

.nav ul { display: flex; gap: .35rem; }
.nav a {
  position: relative;
  padding: .55em .95em;
  font-family: var(--ff-display); font-size: .9rem; font-weight: 600;
  color: var(--ink-2); border-radius: 99px;
  transition: color .25s, background-color .25s;
}
.nav a:hover { color: var(--ink); background: rgba(7,47,61,.05); }
.nav a.is-active { color: var(--aqua-deep); }
.nav a.is-active::after {
  content: ''; position: absolute; left: 50%; bottom: .1em;
  width: 4px; height: 4px; margin-left: -2px;
  background: var(--aqua); border-radius: 50%;
}

.header__actions { display: flex; align-items: center; gap: 1rem; }
.header__tel {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--ff-display); font-size: .88rem; font-weight: 600; color: var(--ink-2);
  transition: color .25s;
}
.header__tel:hover { color: var(--aqua-deep); }
.header__tel svg { color: var(--aqua); }

.progress { position: absolute; left: 0; right: 0; bottom: -3px; height: 3px; }
.progress__bar {
  display: block; height: 100%;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
}

/* burger */
.burger { display: none; position: relative; z-index: 1200; width: 44px; height: 44px; }
.burger span {
  position: absolute; left: 10px; right: 10px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .4s cubic-bezier(.22,1,.36,1), background-color .3s;
}
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 26px; }
html.menu-open .burger span { background: #EAF6FA; }
html.menu-open .burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
html.menu-open .burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ─────────── Mobile menu ─────────── */
.menu {
  position: fixed; inset: 0; z-index: 1050;
  background: var(--dark);
  transform: translateY(-103%);
  display: flex; flex-direction: column; justify-content: center; gap: 3rem;
  padding: calc(var(--header-h) + 2vh) 8vw 5vh;
  visibility: hidden;
}
.menu__nav { display: flex; flex-direction: column; gap: .2em; }
.menu__link {
  display: flex; align-items: baseline; gap: .7em;
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2rem, 8.5vw, 3.2rem); letter-spacing: -.02em;
  color: #EAF6FA; line-height: 1.35;
}
.menu__link i {
  font-family: var(--ff-body); font-style: normal; font-weight: 500;
  font-size: .85rem; color: var(--aqua-2);
}
.menu__link:active { color: var(--aqua-2); }
.menu__meta { display: flex; flex-direction: column; gap: .4em; color: #9CC3CE; font-size: .95rem; }
.menu__meta a:hover { color: var(--aqua-2); }

/* ─────────── Hero ─────────── */
.hero {
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 4vh) 5vw 12vh;
  overflow: visible;
}

.hero__orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.hero__orb--1 {
  width: 560px; height: 560px; top: -12%; left: -10%;
  background: radial-gradient(circle, rgba(53,199,227,.4), transparent 65%);
}
.hero__orb--2 {
  width: 640px; height: 640px; top: 26%; right: -14%;
  background: radial-gradient(circle, rgba(49,185,155,.3), transparent 65%);
}
.hero__ring {
  position: absolute; width: 380px; height: 380px; top: 12%; right: 9%;
  border: 1.5px solid rgba(10,166,201,.22); border-radius: 50%;
  pointer-events: none;
}
.hero__ring::after {
  content: ''; position: absolute; top: 8%; left: 12%;
  width: 10px; height: 10px; background: var(--aqua-2); border-radius: 50%;
}
.hero__spark { position: absolute; color: var(--aqua); pointer-events: none; }
.hero__spark--1 { top: 24%; left: 12%; color: var(--lemon); }
.hero__spark--2 { top: 62%; left: 20%; }
.hero__spark--3 { top: 30%; right: 22%; color: var(--mint); }

.hero__content { position: relative; z-index: 2; max-width: 900px; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  padding: .55em 1.15em;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(10,166,201,.18);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-radius: 99px;
  font-family: var(--ff-display); font-size: .76rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--aqua-deep);
}
.hero__eyebrow svg { color: var(--aqua); }

.hero__title {
  margin-top: 1.6rem;
  font-size: clamp(3.6rem, 11.5vw, 8.8rem);
  font-weight: 800; line-height: .98; letter-spacing: -.035em;
}
.hero__line { display: block; overflow: hidden; padding-block: .04em; margin-block: -.04em; }
.hero__line em {
  font-family: var(--ff-accent); font-style: italic; font-weight: 400;
  letter-spacing: -.01em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-right: .06em;
}
/* when SplitText wraps chars, each char needs its own clipped gradient */
.hero__line em .char {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
}

.hero__sub {
  margin: 1.8rem auto 0; max-width: 46ch;
  font-size: clamp(1rem, 1.6vw, 1.16rem); color: var(--ink-2);
}

.hero__actions { margin-top: 2.3rem; display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

.hero__chips { margin-top: 2.6rem; display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: .55em;
  padding: .6em 1.1em;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-radius: 99px;
  font-size: .84rem; font-weight: 500; color: var(--ink-2);
}
.chip svg { color: var(--aqua); }

/* floating glass cards */
.hero__float {
  position: absolute; z-index: 3;
  display: flex; flex-direction: column; gap: .6em;
  max-width: 240px; padding: 1.1em 1.3em;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.9);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  text-align: left; font-size: .84rem; line-height: 1.45;
}
.hero__float strong { font-family: var(--ff-display); font-size: .9rem; font-weight: 600; display: block; }
.hero__float span { color: var(--ink-2); font-size: .8rem; }
.hero__float--1 { left: 4vw; top: 33%; flex-direction: row; align-items: center; gap: .9em; }
.hero__float--2 { right: 4vw; top: 52%; }
.hero__float-avatars { display: flex; flex-shrink: 0; }
.hero__float-avatars i {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid #fff; margin-left: -9px;
}
.hero__float-avatars i:first-child { margin-left: 0; }
.hero__float-avatars i:nth-child(1) { background: linear-gradient(135deg, #35C7E3, #0A8FC0); }
.hero__float-avatars i:nth-child(2) { background: linear-gradient(135deg, #FFD966, #E4B23A); }
.hero__float-avatars i:nth-child(3) { background: linear-gradient(135deg, #4ED0B4, #31B99B); }
.hero__float-stars { display: flex; gap: 3px; color: var(--lemon); }

.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .7em;
  font-family: var(--ff-display); font-size: .68rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: var(--ink-2);
}
.hero__scroll i {
  width: 1.5px; height: 44px;
  background: linear-gradient(var(--aqua), transparent);
  overflow: hidden; position: relative;
}
.hero__scroll i::after {
  content: ''; position: absolute; top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--ink);
  animation: scroll-drop 1.8s cubic-bezier(.65,0,.35,1) infinite;
}
@keyframes scroll-drop { 0% { top: -50%; } 100% { top: 110%; } }

/* ─────────── Marquee strip ─────────── */
.marquee-strip {
  position: relative; z-index: 4;
  transform: rotate(-1.6deg) scale(1.03);
  margin-block: -1.2rem 3rem;
  background: var(--grad);
  box-shadow: 0 18px 40px -18px rgba(10,143,192,.55);
}
.marquee { overflow: hidden; padding-block: 1.05rem; }
.marquee__inner { display: flex; width: max-content; will-change: transform; }
.marquee__group {
  display: flex; align-items: center; gap: 2.6rem;
  padding-right: 2.6rem; flex-shrink: 0;
}
.marquee-strip .marquee__group span {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(1.25rem, 2.6vw, 1.9rem);
  text-transform: uppercase; letter-spacing: .02em;
  color: #fff; white-space: nowrap;
}
.marquee-strip .marquee__group span.is-outline {
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255,255,255,.85);
}
.marquee-strip .marquee__group svg { color: rgba(255,255,255,.85); flex-shrink: 0; }

/* ─────────── Mission ─────────── */
.mission { padding-block: clamp(6rem, 14vh, 10rem); text-align: center; }
.mission .container { max-width: 900px; }
.mission__p {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(1.45rem, 3.1vw, 2.45rem);
  line-height: 1.42; letter-spacing: -.015em;
  text-wrap: balance;
}
.mission__p .word { will-change: opacity; }

/* ─────────── Services (horizontal) ─────────── */
.services { background: var(--bg-soft); border-radius: 44px; }
.services__inner { padding-block: clamp(4rem, 9vh, 6rem); }
.services__head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
  margin-bottom: clamp(2.2rem, 5vh, 3.5rem);
}
.services__head .section-head { margin-bottom: 0; }
.services__meta { display: flex; flex-direction: column; align-items: flex-end; gap: .9rem; padding-bottom: .5rem; }
.services__progress {
  width: 220px; height: 2px;
  background: rgba(7,47,61,.12); border-radius: 99px; overflow: hidden;
}
.services__progress span {
  display: block; height: 100%; width: 100%;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
}
.services__hint {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--ff-display); font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2);
  transition: opacity .4s;
}
.services__hint svg { animation: hint-slide 1.6s ease-in-out infinite; }
@keyframes hint-slide { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
.services__hint.is-hidden { opacity: 0; }

.services__viewport { overflow: hidden; }
.services__track {
  display: flex; gap: clamp(1.1rem, 2vw, 1.6rem);
  width: max-content;
  padding-inline: max((100vw - 1400px) / 2 + 3vw, 4vw);
  will-change: transform;
}

.svc-card {
  position: relative;
  display: flex; flex-direction: column;
  width: clamp(300px, 30vw, 400px);
  min-height: 460px;
  padding: clamp(1.6rem, 2.4vw, 2.2rem);
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow-sm);
  transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s;
}
.svc-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.svc-card--aqua  { background: linear-gradient(165deg, #E3F5FA 0%, #F2FBFD 70%); }
.svc-card--mint  { background: linear-gradient(165deg, #E2F6EF 0%, #F1FBF7 70%); }
.svc-card--lemon { background: linear-gradient(165deg, #FBF3DC 0%, #FDFAF0 70%); }
.svc-card--sky   { background: linear-gradient(165deg, #E8F0FB 0%, #F4F8FE 70%); }

.svc-card__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: auto; }
.svc-card__icon {
  width: 62px; height: 62px; display: grid; place-items: center;
  background: var(--white); color: var(--aqua-deep);
  border-radius: 19px; box-shadow: var(--shadow-sm);
}
.svc-card__idx {
  font-family: var(--ff-display); font-weight: 800; font-size: 1rem;
  color: transparent; -webkit-text-stroke: 1.1px rgba(7,47,61,.28);
  letter-spacing: .04em;
}
.svc-card h3 { font-size: 1.45rem; margin-top: 2.4rem; letter-spacing: -.015em; }
.svc-card > p { margin-top: .7rem; font-size: .93rem; color: var(--ink-2); }

.svc-card__list { margin-top: 1.2rem; display: flex; flex-direction: column; gap: .45em; }
.svc-card__list li { display: flex; align-items: center; gap: .6em; font-size: .88rem; font-weight: 500; }
.svc-card__list svg { color: var(--mint); flex-shrink: 0; }

.svc-card__foot {
  margin-top: 1.6rem; padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.svc-card__price { font-size: .85rem; color: var(--ink-2); }
.svc-card__price b { font-family: var(--ff-display); font-size: 1.18rem; font-weight: 700; color: var(--ink); }
.svc-card__link {
  width: 46px; height: 46px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--ink); color: #fff; border-radius: 50%;
  transition: background-color .3s, transform .3s;
}
.svc-card__link:hover { background: var(--aqua); transform: rotate(-45deg); }

.svc-card--dark {
  justify-content: center; align-items: flex-start; gap: 1rem;
  background: linear-gradient(160deg, var(--dark-2), var(--dark));
  color: #EAF6FA; border-color: rgba(255,255,255,.06);
  overflow: hidden;
}
.svc-card--dark h3 { font-size: 1.9rem; }
.svc-card--dark > p { color: #9CC3CE; }
.svc-card--dark .svc-card__deco {
  position: absolute; right: -28px; bottom: -28px;
  color: rgba(53,199,227,.14);
}
.svc-card--dark .btn { margin-top: .6rem; }

/* ─────────── Stats (dark) ─────────── */
.stats {
  background: var(--dark);
  color: #EAF6FA;
  padding-block: clamp(5.5rem, 11vh, 8.5rem);
  margin-top: clamp(4rem, 9vh, 7rem);
  overflow: hidden;
}
.stats h2 { color: #EAF6FA; }
.stats__deco {
  position: absolute; right: -70px; bottom: -70px;
  color: rgba(53,199,227,.07);
  animation: spin-slow 40s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 2rem;
  margin-top: 1rem;
}
.stat { padding-left: 1.4rem; border-left: 1.5px solid rgba(53,199,227,.28); }
.stat__num {
  display: block;
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(3rem, 5.8vw, 4.9rem);
  line-height: 1; letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}
.stat__num b {
  font-weight: 800;
  background: linear-gradient(135deg, #6FE0F2, #23A9CE);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__num i { font-style: normal; color: var(--lemon); font-size: .55em; vertical-align: .28em; margin-left: .06em; }
.stat__label { display: block; margin-top: .8rem; font-size: .92rem; color: #9CC3CE; max-width: 24ch; }

/* ─────────── Steps (stacking cards) ─────────── */
.steps { padding-block: clamp(6rem, 12vh, 9rem) clamp(4rem, 8vh, 6rem); }
.steps__stack { display: flex; flex-direction: column; gap: 1.4rem; max-width: 880px; margin-inline: auto; }

.step-card {
  display: grid; grid-template-columns: 110px 1fr;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  align-items: start;
  min-height: clamp(330px, 46vh, 430px);
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  will-change: transform;
}
.step-card--white { background: var(--white); }
.step-card--aqua  { background: linear-gradient(160deg, #DFF3F9, #F0FAFC); }
.step-card--mint  { background: linear-gradient(160deg, #DFF4EC, #F0FBF6); }
.step-card--dark  { background: linear-gradient(160deg, var(--dark-2), var(--dark)); color: #EAF6FA; border-color: rgba(255,255,255,.06); }
.step-card--dark p { color: #9CC3CE; }

.step-card__num {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.3px rgba(7,47,61,.3);
}
.step-card--dark .step-card__num { -webkit-text-stroke-color: rgba(53,199,227,.55); }

.step-card__body h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); letter-spacing: -.02em; }
.step-card__body p { margin-top: .9rem; max-width: 46ch; color: var(--ink-2); }
.step-card--dark .step-card__body p { color: #9CC3CE; }

.step-card__tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.step-card__tags span {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .5em 1em;
  background: rgba(255,255,255,.75); border: 1px solid var(--line);
  border-radius: 99px; font-size: .8rem; font-weight: 500; color: var(--ink-2);
}
.step-card__tags svg { color: var(--aqua-deep); }
.step-card--dark .step-card__tags span { background: rgba(234,246,250,.07); border-color: rgba(234,246,250,.12); color: #C6E2E9; }
.step-card--dark .step-card__tags svg { color: var(--aqua-2); }

/* ─────────── Quote band ─────────── */
.band { padding-block: clamp(2rem, 5vh, 4rem) clamp(4rem, 8vh, 6rem); }
.band__card {
  position: relative; overflow: hidden;
  border-radius: 44px;
  background:
    radial-gradient(720px 380px at 82% 8%, rgba(53,199,227,.24), transparent 60%),
    radial-gradient(560px 340px at 8% 92%, rgba(49,185,155,.2), transparent 60%),
    linear-gradient(160deg, var(--dark-2), var(--dark));
  padding: clamp(4.5rem, 11vh, 8.5rem) clamp(1.8rem, 6vw, 6rem);
  text-align: center;
}
.band__bubble { position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,.3), rgba(53,199,227,.1) 55%, transparent 75%);
  border: 1px solid rgba(234,246,250,.12);
}
.band__bubble--1 { width: 190px; height: 190px; top: -40px; left: 7%; }
.band__bubble--2 { width: 110px; height: 110px; bottom: 12%; right: 9%; }
.band__bubble--3 { width: 64px; height: 64px; top: 22%; right: 20%; }
.band__spark { position: absolute; bottom: 20%; left: 16%; color: var(--lemon); }

.band__quote { position: relative; z-index: 2; max-width: 850px; margin-inline: auto; }
.band__quote p {
  font-family: var(--ff-accent); font-style: italic; font-weight: 400;
  font-size: clamp(1.7rem, 3.9vw, 3.1rem);
  line-height: 1.3; color: #EAF6FA; letter-spacing: 0;
}
.band__quote p em { color: var(--aqua-2); font-style: italic; }
.band__quote cite {
  display: inline-block; margin-top: 2rem;
  font-family: var(--ff-display); font-style: normal; font-size: .8rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: #9CC3CE;
}

/* ─────────── Reviews ─────────── */
.reviews { padding-block: clamp(4rem, 8vh, 6rem); overflow: hidden; }
.reviews__loop { padding-block: 1rem 1.5rem; }
.loop-mask {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.reviews .marquee__group { gap: 1.4rem; padding-right: 1.4rem; align-items: stretch; }

.rev-card {
  width: min(400px, 82vw); flex-shrink: 0;
  display: flex; flex-direction: column; gap: .9rem;
  padding: 1.7rem 1.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  white-space: normal;
}
.rev-card header { display: flex; align-items: center; gap: .9em; }
.rev-card__avatar {
  width: 46px; height: 46px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--a, var(--aqua)); color: #fff;
  font-family: var(--ff-display); font-style: normal; font-weight: 700; font-size: 1.1rem;
  border-radius: 50%;
}
.rev-card header strong { font-family: var(--ff-display); font-size: .98rem; display: block; line-height: 1.3; }
.rev-card header span { font-size: .8rem; color: var(--ink-2); }
.rev-card__stars { display: flex; gap: 3px; color: var(--lemon); }
.rev-card > p { font-size: .95rem; color: var(--ink-2); line-height: 1.6; }

/* ─────────── Pricing ─────────── */
.pricing { padding-block: clamp(5rem, 10vh, 8rem); background: var(--bg-soft); border-radius: 44px; }
.pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; align-items: stretch;
}

.price-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: clamp(1.8rem, 2.6vw, 2.5rem);
  background: var(--white);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.price-card h3 { font-size: 1.35rem; }
.price-card__desc { margin-top: .6rem; font-size: .9rem; color: var(--ink-2); min-height: 3em; }
.price-card__amount {
  margin-top: 1.4rem;
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.7rem); letter-spacing: -.03em; line-height: 1;
}
.price-card__amount span { font-family: var(--ff-body); font-size: .85rem; font-weight: 500; color: var(--ink-2); letter-spacing: 0; }
.price-card ul { margin: 1.6rem 0 2rem; display: flex; flex-direction: column; gap: .7em; }
.price-card ul li { display: flex; align-items: center; gap: .65em; font-size: .9rem; font-weight: 500; }
.price-card ul svg { color: var(--mint); flex-shrink: 0; }
.price-card .btn { margin-top: auto; }

.price-card--featured {
  background: linear-gradient(165deg, var(--dark-2), var(--dark));
  color: #EAF6FA; border-color: rgba(53,199,227,.3);
  box-shadow: 0 30px 70px -25px rgba(5,32,43,.55);
}
.price-card--featured .price-card__desc,
.price-card--featured .price-card__amount span { color: #9CC3CE; }
.price-card--featured ul svg { color: var(--aqua-2); }
.price-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: .45em 1.2em;
  background: var(--lemon); color: var(--ink);
  font-family: var(--ff-display); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 99px;
  box-shadow: 0 8px 22px -8px rgba(228,178,58,.7);
  white-space: nowrap;
}

.pricing__note { margin-top: 2.4rem; text-align: center; font-size: .95rem; color: var(--ink-2); }
.pricing__note a { color: var(--aqua-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ─────────── Cities ─────────── */
.cities { padding-block: clamp(5rem, 10vh, 8rem); text-align: center; }
.cities__cloud {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .3em 1.1em;
  max-width: 900px; margin-inline: auto;
  font-family: var(--ff-display); font-weight: 700; letter-spacing: -.02em;
}
.city { font-size: clamp(1.35rem, 3vw, 2.1rem); color: var(--ink); opacity: .88; transition: color .3s, opacity .3s; cursor: default; }
.city:nth-child(3n)  { color: var(--aqua-deep); font-size: clamp(1.6rem, 3.6vw, 2.6rem); }
.city:nth-child(4n)  { opacity: .45; }
.city:nth-child(5n)  { font-family: var(--ff-accent); font-style: italic; font-weight: 400; color: var(--mint); }
.city:hover { color: var(--aqua); opacity: 1; }
.city--more {
  font-family: var(--ff-body); font-weight: 500; font-style: normal;
  font-size: .95rem !important; color: var(--ink-2) !important; opacity: 1 !important;
  align-self: center;
  padding: .5em 1.2em; border: 1.5px dashed rgba(10,166,201,.4); border-radius: 99px;
}

/* ─────────── FAQ ─────────── */
.faq { padding-block: clamp(4rem, 8vh, 6rem) clamp(6rem, 11vh, 9rem); }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item h3 { font-size: inherit; font-weight: inherit; letter-spacing: 0; }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.45rem .2rem;
  font-family: var(--ff-display); font-size: 1.08rem; font-weight: 600;
  text-align: left; letter-spacing: -.01em;
  transition: color .25s;
}
.faq__q:hover { color: var(--aqua-deep); }
.faq__icon {
  width: 38px; height: 38px; flex-shrink: 0;
  display: grid; place-items: center;
  border: 1.5px solid var(--line); border-radius: 50%;
  transition: transform .45s cubic-bezier(.22,1,.36,1), background-color .3s, color .3s, border-color .3s;
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); background: var(--ink); color: #fff; border-color: var(--ink); }
.js .faq__a { height: 0; overflow: hidden; }
.faq__a p { padding: .2rem .2rem 1.6rem; color: var(--ink-2); max-width: 60ch; }

/* ─────────── CTA ─────────── */
.cta {
  position: relative;
  margin-top: -44px;
  padding: clamp(7rem, 15vh, 11rem) 0 clamp(5rem, 10vh, 8rem);
  background:
    radial-gradient(900px 480px at 50% -10%, rgba(53,199,227,.18), transparent 60%),
    var(--dark);
  border-radius: 44px 44px 0 0;
  text-align: center;
  color: #EAF6FA;
  overflow: hidden;
}
.cta__orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.cta__orb--1 { width: 480px; height: 480px; left: -12%; bottom: -30%; background: radial-gradient(circle, rgba(10,166,201,.3), transparent 65%); }
.cta__orb--2 { width: 420px; height: 420px; right: -10%; top: -20%; background: radial-gradient(circle, rgba(49,185,155,.24), transparent 65%); }

.cta__badge { position: absolute; top: 60px; right: clamp(20px, 7vw, 110px); width: 120px; height: 120px; }
.cta__badge > svg:first-child { width: 100%; height: 100%; animation: spin-slow 22s linear infinite; }
.cta__badge text {
  font-family: var(--ff-display); font-size: 10.4px; font-weight: 700;
  letter-spacing: .22em; fill: rgba(234,246,250,.66);
}
.cta__badge-star { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--lemon); }

.cta__title { font-size: clamp(2.9rem, 8.4vw, 6.6rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.02; color: #EAF6FA; }
.cta__title em { color: var(--aqua-2); padding-right: .05em; }
.cta__sub { margin: 1.6rem auto 0; max-width: 46ch; color: #9CC3CE; font-size: 1.05rem; }
.cta__actions { margin-top: 2.6rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─────────── Footer ─────────── */
.footer { background: var(--dark); color: #C6E2E9; overflow: hidden; }
.footer__grid {
  display: grid; grid-template-columns: 1.5fr .9fr .9fr 1.3fr;
  gap: 3rem 2.5rem;
  padding-block: 4.5rem 3.5rem;
  border-top: 1px solid var(--line-light);
}
.footer__brand p { margin-top: 1.2rem; font-size: .93rem; max-width: 34ch; color: #9CC3CE; }
.footer__social { display: flex; gap: .6rem; margin-top: 1.5rem; }
.footer__social a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--line-light); border-radius: 50%;
  font-family: var(--ff-display); font-size: .74rem; font-weight: 700; color: #EAF6FA;
  transition: background-color .3s, border-color .3s, transform .3s;
}
.footer__social a:hover { background: var(--aqua); border-color: var(--aqua); transform: translateY(-3px); }

.footer__col { display: flex; flex-direction: column; gap: .65em; font-size: .93rem; }
.footer__col h4 {
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: #EAF6FA; margin-bottom: .8em;
}
.footer__col a { color: #9CC3CE; transition: color .25s; display: inline-flex; align-items: center; gap: .6em; }
.footer__col a:hover { color: var(--aqua-2); }
.footer__col svg { color: var(--aqua); flex-shrink: 0; }
.footer__col span { display: inline-flex; align-items: center; gap: .6em; color: #9CC3CE; }
.footer__col small { margin-top: 1em; font-size: .78rem; color: #5E838E; }

.footer__word {
  text-align: center; line-height: .78;
  padding-inline: 2vw;
  user-select: none; pointer-events: none;
  overflow: hidden;
}
.footer__word span {
  display: inline-block;
  font-family: var(--ff-display); font-weight: 800; letter-spacing: -.04em;
  font-size: clamp(4rem, 17.5vw, 16rem);
  background: linear-gradient(180deg, rgba(111,224,242,.3) 0%, rgba(111,224,242,.04) 78%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  transform: translateY(.14em);
}
.footer__word .char {
  background: linear-gradient(180deg, rgba(111,224,242,.3) 0%, rgba(111,224,242,.04) 78%);
  -webkit-background-clip: text; background-clip: text;
}

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-block: 1.6rem;
  border-top: 1px solid var(--line-light);
  font-size: .82rem; color: #5E838E;
}
.footer__made { color: #5E838E; }

/* ─────────── Desktop-only scroll layouts ─────────── */
@media (min-width: 900px) {
  /* pinned horizontal services: fill the viewport while pinned */
  .services__inner {
    height: 100svh;
    display: flex; flex-direction: column; justify-content: center;
    padding-block: calc(var(--header-h) + 1rem) 2rem;
  }
  /* stacking deck: overlap the cards in one grid cell */
  .steps__stack { display: grid; }
  .steps__stack .step-card { grid-area: 1 / 1; }
}

/* ─────────── Responsive ─────────── */
@media (max-width: 1100px) {
  .nav, .header__tel { display: none; }
  .header__actions .btn { display: none; }
  .burger { display: block; }
  .hero__float { display: none; }
  .hero__ring { width: 260px; height: 260px; right: -8%; }
}

@media (max-width: 900px) {
  :root { --header-h: 66px; --radius: 22px; }

  /* services: native horizontal scroll met snap */
  .services__viewport { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .services__viewport::-webkit-scrollbar { display: none; }
  .services__track { padding-inline: 5vw; }
  .svc-card { scroll-snap-align: start; width: min(340px, 84vw); min-height: 430px; }
  .services__progress { display: none; }
  .services__head { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .services__meta { align-items: flex-start; padding-bottom: 0; }

  .stats__grid { grid-template-columns: 1fr 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-card--featured { order: -1; }

  .step-card { grid-template-columns: 1fr; gap: 1rem; min-height: 0; }
  .step-card__num { font-size: 2.4rem; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: .97rem; }
  .hero { padding-bottom: 14vh; }
  .hero__actions .btn { width: 100%; max-width: 340px; }
  .hero__chips { gap: .5rem; }
  .chip { font-size: .78rem; padding: .55em .95em; }
  .stats__grid { grid-template-columns: 1fr; }
  .cta__badge { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer__bottom { justify-content: center; text-align: center; }
  .marquee-strip { transform: rotate(-2.2deg) scale(1.06); }
}

/* ─────────── Reduced motion ─────────── */
@media (prefers-reduced-motion: reduce) {
  .preloader { display: none !important; }
  .hero__scroll i::after, .services__hint svg, .stats__deco, .cta__badge > svg:first-child {
    animation: none !important;
  }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
