/* ==========================================================================
   Spotless NL — free preview build (Blue Park concept)
   Design tokens + components. No external requests: fonts are self-hosted.
   ========================================================================== */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-latin.woff2') format('woff2');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-latin.woff2') format('woff2');
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0a2239;
  --ink-2: #123a5e;
  --ink-3: #1d4f7c;
  --brand: #1668b3;
  --brand-dark: #0f4e88;
  --brand-soft: #e7f1fb;
  --accent: #e8b14a;
  --accent-soft: #fbf1dc;
  --paper: #ffffff;
  --mist: #f5f8fc;
  --mist-2: #edf3fa;
  --line: #e1e9f2;
  --text: #26384a;
  --muted: #55677b;

  --font-display: 'Plus Jakarta Sans', ui-sans-serif, system-ui, 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, 'Segoe UI', Arial, sans-serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;

  --shadow-sm: 0 1px 2px rgba(10, 34, 57, .06), 0 4px 12px rgba(10, 34, 57, .05);
  --shadow-md: 0 2px 6px rgba(10, 34, 57, .06), 0 14px 34px rgba(10, 34, 57, .09);
  --shadow-lg: 0 8px 20px rgba(10, 34, 57, .08), 0 32px 70px rgba(10, 34, 57, .13);

  --container: 1200px;
  --gutter: clamp(18px, 4vw, 40px);

  --noise: 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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -0.02em;
  line-height: 1.14;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 5.1vw, 3.9rem); font-weight: 800; letter-spacing: -0.032em; line-height: 1.05; }
h2 { font-size: clamp(1.75rem, 3.3vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.1875rem; font-weight: 700; letter-spacing: -0.012em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 600; color: var(--ink); }
:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(44px, 6vw, 76px); }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: #cfdcea; }
.section--ink h2, .section--ink h3 { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.section--ink .eyebrow { color: var(--accent); }

.section-head { max-width: 62ch; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head--center { max-width: 66ch; margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.lede { font-size: clamp(1.0625rem, 1.6vw, 1.1875rem); color: var(--muted); }
.section--ink .lede { color: #b9cbdd; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-size: .9688rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--accent { --btn-bg: var(--accent); --btn-fg: #3a2a06; }
.btn--ink { --btn-bg: var(--ink); --btn-fg: #fff; }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: #cfdcea;
}
.btn--ghost:hover { --btn-bg: var(--mist-2); box-shadow: none; }
.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); }
.btn--ghost-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, .38);
}
.btn--ghost-light:hover { --btn-bg: rgba(255, 255, 255, .12); box-shadow: none; }
.btn--sm { min-height: 44px; padding: 10px 18px; font-size: .9063rem; }
.btn--block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex: none; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9063rem;
  color: var(--brand);
}
.link-arrow svg { width: 15px; height: 15px; transition: transform .18s ease; }
.link-arrow:hover { text-decoration: none; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- top bar ---------- */
.topbar {
  background: var(--ink);
  color: #c6d6e6;
  font-size: .8125rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  flex-wrap: wrap;
}
.topbar__group { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 600; }
.topbar__group a.topbar__item { min-height: 44px; }
.topbar a:hover { color: var(--accent); }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { width: 15px; height: 15px; color: var(--accent); flex: none; }
.topbar__item--muted { color: #93a9bf; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(10, 34, 57, .07);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); min-height: 44px; }
.brand:hover { text-decoration: none; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1875rem;
  letter-spacing: -0.028em;
  color: var(--ink);
}
.brand__tag {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-drawer { margin-left: auto; display: flex; align-items: center; }
.site-nav ul { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--ink-2);
}
.site-nav a:hover { background: var(--mist-2); color: var(--ink); text-decoration: none; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9375rem;
  color: var(--ink);
}
.header-phone svg { width: 17px; height: 17px; color: var(--brand); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; }
  .nav-drawer {
    position: fixed;
    inset: 0;
    margin: 0;
    display: block;
    overflow: hidden;
    pointer-events: none;
    z-index: 110;
  }
  .site-nav {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(340px, 88vw);
    margin: 0;
    padding: 88px 24px 32px;
    background: #fff;
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateX(102%);
    transition: transform .26s ease;
    overflow-y: auto;
    pointer-events: auto;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .site-nav a { min-height: 52px; font-size: 1.0625rem; border-radius: 12px; }
  .nav-scrim {
    position: fixed;
    inset: 0;
    background: rgba(10, 34, 57, .42);
    opacity: 0;
    pointer-events: none;
    transition: opacity .26s ease;
    z-index: 105;
  }
  .nav-scrim.is-open { opacity: 1; pointer-events: auto; }
  .header-phone { display: none; }
}
@media (max-width: 560px) {
  .site-header__inner { min-height: 66px; }
  .header-actions .btn { display: none; }
  .brand__mark { width: 38px; height: 38px; }
  .brand__name { font-size: 1.0625rem; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(40px, 6vw, 80px) clamp(52px, 7vw, 96px);
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(22, 104, 179, .13), transparent 62%),
    radial-gradient(760px 420px at -6% 12%, rgba(232, 177, 74, .14), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--mist) 100%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em {
  font-style: normal;
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .06em;
  height: .3em;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(232, 177, 74, .55), rgba(232, 177, 74, .12));
  z-index: -1;
}
.hero__lede {
  font-size: clamp(1.0625rem, 1.7vw, 1.25rem);
  color: var(--muted);
  max-width: 54ch;
  margin-bottom: 26px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px 12px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  font-size: .8438rem;
  font-weight: 600;
  color: var(--ink-2);
}
.chip svg { width: 15px; height: 15px; color: var(--brand); flex: none; }

/* hero visual: CSS-only, clearly illustrative */
.hero__visual { position: relative; }
.hero-art {
  position: relative;
  aspect-ratio: 5 / 5.1;
  border-radius: var(--r-xl);
  overflow: hidden;
  background:
    linear-gradient(158deg, #fdfefe 0%, #eef4fa 46%, #dfe9f3 100%);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .8);
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--noise), repeating-linear-gradient(94deg, rgba(10, 34, 57, .055) 0 2px, transparent 2px 7px);
  background-size: 160px 160px, auto;
  opacity: .5;
  mix-blend-mode: multiply;
}
.hero-art__pass {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(66deg,
      rgba(255, 255, 255, 0) 26%,
      rgba(255, 255, 255, .66) 40%,
      rgba(255, 255, 255, .96) 52%,
      rgba(255, 255, 255, .5) 62%,
      rgba(255, 255, 255, 0) 74%);
  filter: blur(2px);
}
.hero-art__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 300px at 78% 16%, rgba(22, 104, 179, .2), transparent 68%),
    radial-gradient(360px 280px at 12% 88%, rgba(232, 177, 74, .22), transparent 70%);
}
.hero-art__badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-sm);
}
.hero-art__badge svg { width: 30px; height: 30px; flex: none; color: var(--brand); }
.hero-art__badge b { display: block; font-family: var(--font-display); font-size: .9375rem; color: var(--ink); }
.hero-art__badge span { font-size: .8125rem; color: var(--muted); }
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  font-size: .8438rem;
  font-weight: 600;
  color: var(--ink-2);
}
.float-card svg { width: 18px; height: 18px; color: var(--brand); flex: none; }
.float-card--tr { top: 26px; right: -14px; }
.float-card--ml { top: 44%; left: -18px; }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero-art { aspect-ratio: 16 / 11; max-width: 560px; margin-inline: auto; }
  .float-card--tr { right: 8px; }
  .float-card--ml { left: 8px; }
}

/* ---------- trust bar ---------- */
.trustbar { background: var(--ink); color: #cddced; }
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-block: 26px;
}
.trustbar__item { display: flex; align-items: flex-start; gap: 13px; }
.trustbar__item svg { width: 22px; height: 22px; flex: none; color: var(--accent); margin-top: 2px; }
.trustbar__item b {
  display: block;
  font-family: var(--font-display);
  font-size: .9375rem;
  color: #fff;
}
.trustbar__item span { font-size: .8125rem; color: #9fb4c9; }
@media (max-width: 900px) { .trustbar__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 520px) { .trustbar__grid { grid-template-columns: 1fr; gap: 16px; } }

/* ---------- service cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 22px;
}
.svc-card {
  display: flex;
  flex-direction: column;
  padding: 28px 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cbdaeb; }
.svc-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(150deg, var(--brand-soft), #f6fafe);
  border: 1px solid #d8e7f7;
  color: var(--brand);
  margin-bottom: 18px;
}
.svc-card__icon svg { width: 26px; height: 26px; }
.svc-card h3 { margin-bottom: 8px; }
.svc-card p { font-size: .9375rem; color: var(--muted); margin-bottom: 16px; }
.svc-card .link-arrow { margin-top: auto; }
.svc-card--cta {
  background: linear-gradient(155deg, var(--ink) 0%, var(--ink-3) 100%);
  border-color: transparent;
  color: #cddced;
}
.svc-card--cta h3 { color: #fff; }
.svc-card--cta p { color: #b3c6da; }
.svc-card--cta .link-arrow { color: var(--accent); }
.svc-card--cta .svc-card__icon {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .16);
  color: var(--accent);
}

/* ---------- before / after ---------- */
.ba-wrap {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.ba-list { display: grid; gap: 14px; margin-top: 24px; }
.ba-list li { display: flex; gap: 12px; font-size: .9688rem; }
.ba-list svg { width: 20px; height: 20px; flex: none; color: var(--brand); margin-top: 3px; }

.ba {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  touch-action: pan-y;
  user-select: none;
  cursor: ew-resize;
  background: #fff;
}
.ba__layer { position: absolute; inset: 0; }
.ba__layer--dirty {
  background:
    radial-gradient(340px 200px at 22% 30%, rgba(120, 100, 76, .5), transparent 70%),
    radial-gradient(260px 190px at 74% 74%, rgba(96, 84, 64, .42), transparent 72%),
    linear-gradient(150deg, #c9bda9 0%, #b3a691 52%, #a2957f 100%);
}
.ba__layer--clean {
  background:
    radial-gradient(420px 260px at 76% 22%, rgba(255, 255, 255, .85), transparent 70%),
    linear-gradient(150deg, #ffffff 0%, #f2f7fc 55%, #dfeaf5 100%);
}
.ba__layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--noise), repeating-linear-gradient(93deg, rgba(10, 34, 57, .07) 0 2px, transparent 2px 6px);
  background-size: 160px 160px, auto;
  opacity: .55;
  mix-blend-mode: multiply;
}
.ba__layer--dirty { clip-path: inset(0 calc(100% - var(--ba-pos, 50%)) 0 0); }
.ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos, 50%);
  width: 3px;
  margin-left: -1.5px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(10, 34, 57, .16), 0 0 26px rgba(10, 34, 57, .3);
}
.ba__grip {
  position: absolute;
  top: 50%;
  left: var(--ba-pos, 50%);
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  color: var(--ink);
}
.ba__grip svg { width: 22px; height: 22px; }
.ba__tag {
  position: absolute;
  top: 16px;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(10, 34, 57, .72);
  color: #fff;
  backdrop-filter: blur(6px);
}
.ba__tag--before { left: 16px; }
.ba__tag--after { right: 16px; background: rgba(255, 255, 255, .86); color: var(--ink); }
.ba__note {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 11px 18px;
  font-size: .8125rem;
  color: var(--ink-2);
  background: rgba(255, 255, 255, .9);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
@media (max-width: 900px) { .ba-wrap { grid-template-columns: 1fr; } }

/* ---------- why choose us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}
.why-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.why-card {
  padding: 24px;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.why-card__num {
  font-family: var(--font-display);
  font-size: .8125rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--brand);
  display: block;
  margin-bottom: 10px;
}
.why-card h3 { font-size: 1.0625rem; margin-bottom: 6px; }
.why-card p { font-size: .9063rem; color: var(--muted); }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .why-cards { grid-template-columns: 1fr; } }

/* ---------- process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 24px 26px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
}
.step__num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent);
  color: #3a2a06;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.0625rem;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.0625rem; }
.step p { font-size: .9063rem; color: #b3c6da; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  display: flex;
  flex-direction: column;
  padding: 30px 28px 26px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--accent); }
.stars svg { width: 17px; height: 17px; }
.review blockquote {
  margin: 0 0 20px;
  font-size: .9688rem;
  line-height: 1.68;
  color: var(--text);
}
.review__meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}
.review__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .9375rem;
  flex: none;
}
.review__meta b { display: block; font-family: var(--font-display); font-size: .9375rem; color: var(--ink); }
.review__meta span { font-size: .8125rem; color: var(--muted); }
@media (max-width: 980px) { .review-grid { grid-template-columns: 1fr; gap: 18px; } }

/* ---------- service areas ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.area-chips { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 18px; }
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9375rem;
  color: var(--ink);
}
.area-chip svg { width: 16px; height: 16px; color: var(--brand); flex: none; }
.area-note { font-size: .9063rem; color: var(--muted); }
.area-map {
  position: relative;
  aspect-ratio: 4 / 3.2;
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    radial-gradient(300px 300px at 50% 46%, rgba(22, 104, 179, .17), transparent 66%),
    linear-gradient(160deg, #eef4fa, #dfe9f3);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.area-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 34, 57, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 34, 57, .07) 1px, transparent 1px);
  background-size: 44px 44px, 44px 44px;
  mask-image: radial-gradient(circle at 50% 46%, #000 34%, transparent 76%);
}
.area-map__ring {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 74%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px dashed rgba(22, 104, 179, .45);
  background: radial-gradient(circle, rgba(255, 255, 255, .5), transparent 72%);
}
.area-map__pin {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  box-shadow: var(--shadow-md);
}
.area-map__pin svg { width: 28px; height: 28px; }
.area-map__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 20px;
  background: rgba(255, 255, 255, .9);
  border-top: 1px solid var(--line);
  font-size: .875rem;
  color: var(--ink-2);
  backdrop-filter: blur(8px);
}
@media (max-width: 900px) { .areas-grid { grid-template-columns: 1fr; } }

/* ---------- quote / contact ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}
.form-card {
  padding: clamp(24px, 3.4vw, 40px);
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
}
.field .req { color: var(--brand); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 15px;
  border: 1px solid #cfdcea;
  border-radius: 12px;
  background: #fdfefe;
  font-family: var(--font-body);
  font-size: .9688rem;
  color: var(--ink);
}
.field textarea { min-height: 96px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%235d7085' stroke-width='2'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: 0 0 0 4px rgba(22, 104, 179, .14);
}
.field__hint { font-size: .8125rem; color: var(--muted); margin: 7px 0 0; }
.field__error { display: none; font-size: .8125rem; color: #b3261e; margin: 7px 0 0; font-weight: 600; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #d6493f; }
.field.has-error .field__error { display: block; }
.form-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid #f0dcae;
  font-size: .8125rem;
  color: #6b5217;
}
.form-success {
  display: none;
  padding: 22px;
  border-radius: var(--r-md);
  background: #eaf6ee;
  border: 1px solid #bfe0cb;
  color: #1c5136;
  font-size: .9375rem;
}
.form-success.is-visible { display: block; }
.form-success b { display: block; font-family: var(--font-display); color: #14402b; margin-bottom: 6px; }
.contact-rails { display: grid; gap: 14px; }
.rail {
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
}
.rail svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 3px; }
.rail b { display: block; font-family: var(--font-display); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: #93a9bf; margin-bottom: 4px; }
.rail a, .rail span { color: #fff; font-weight: 600; font-size: 1.0625rem; font-family: var(--font-display); }
.rail a { display: inline-flex; align-items: center; min-height: 44px; }
.rail a:hover { color: var(--accent); }
.rail small { display: block; color: #9fb4c9; font-size: .8125rem; font-weight: 400; font-family: var(--font-body); margin-top: 3px; }
@media (max-width: 900px) {
  .quote-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq { max-width: 880px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 60px;
  padding: 16px 22px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--ink);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 11px;
  height: 11px;
  flex: none;
  border-right: 2.5px solid var(--brand);
  border-bottom: 2.5px solid var(--brand);
  transform: rotate(45deg);
  transition: transform .2s ease;
  margin-top: -4px;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq .faq__body { padding: 0 22px 22px; color: var(--muted); font-size: .9688rem; }

/* ---------- final CTA ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--ink) 0%, var(--ink-3) 62%, #1b6099 100%);
  color: #cfdcea;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  background-size: 160px 160px;
  opacity: .35;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.cta-band__inner { position: relative; text-align: center; max-width: 780px; margin-inline: auto; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px; }

/* ---------- footer ---------- */
.site-footer { background: #071a2c; color: #9fb4c9; font-size: .9375rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
  gap: 34px;
  padding-block: clamp(44px, 6vw, 68px);
}
.footer-grid h4 {
  font-family: var(--font-display);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__tag { color: #7f97ae; }
.footer-brand p { margin: 16px 0 18px; font-size: .9063rem; color: #8ea5bb; }
.footer-list li { margin-bottom: 10px; display: flex; gap: 10px; }
.footer-list svg { width: 16px; height: 16px; color: var(--accent); flex: none; margin-top: 5px; }
.footer-list a { color: #cfdcea; display: inline-flex; align-items: center; min-height: 44px; }
.footer-list a:hover { color: var(--accent); }
.footer-nav a { display: flex; align-items: center; min-height: 44px; color: #cfdcea; }
.footer-nav a:hover { color: var(--accent); }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #cfdcea;
  font-weight: 600;
  font-size: .875rem;
}
.social-link:hover { background: rgba(255, 255, 255, .08); color: #fff; text-decoration: none; }
.social-link svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-block: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  font-size: .8125rem;
  color: #7f97ae;
}
.footer-bottom p { margin: 0; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- mobile action bar ---------- */
.action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.action-bar .btn { flex: 1; }
@media (max-width: 640px) {
  .action-bar { display: flex; }
  body { padding-bottom: 78px; }
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s ease; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.is-in { opacity: 1; transform: none; transition: none; }
  .btn:hover, .svc-card:hover { transform: none; }
}
