/* ==========================================================
   SparkSafai — Design System v3 · "Clean Starts Here"
   Fresh aqua-blue brand: crisp white & ice surfaces, vivid
   blue gradients, bubbles and waves, geometric sans display.
   ========================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand blues (from logo) */
  --blue-950: #06182b;
  --blue-900: #0b2c4d;
  --blue-800: #10457c;
  --blue-700: #1560ab;
  --blue-600: #1c74d0;
  --blue-500: #2b90e0;
  --blue-400: #45aee9;
  --blue-300: #79c8f2;
  --blue-200: #aadef8;
  --blue-100: #d3eefb;
  --blue-50:  #eaf7fe;
  --cyan: #35b6e9;

  /* Neutrals */
  --ink: #0e2233;
  --ink-soft: #2f4a5f;
  --ink-mute: #5a7386;
  --ice: #f3f9fd;
  --paper: #ffffff;
  --line: #d8e6f0;
  --line-soft: #e6f0f7;

  /* Accent */
  --gold: #f5b52e;
  --gold-deep: #d99a14;

  /* Type */
  --display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Shape & depth */
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-sm: 0 1px 2px rgba(11, 44, 77, 0.05), 0 2px 8px rgba(11, 44, 77, 0.05);
  --shadow-md: 0 4px 12px rgba(11, 44, 77, 0.07), 0 12px 32px rgba(11, 44, 77, 0.09);
  --shadow-lg: 0 8px 24px rgba(11, 44, 77, 0.1), 0 24px 64px rgba(11, 44, 77, 0.14);

  /* Layout */
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --container: 1180px;
  --nav-h: 76px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ice);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a, button { -webkit-tap-highlight-color: transparent; }
ul { list-style: none; }

::selection { background: var(--blue-200); color: var(--blue-900); }

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

h2 { font-size: clamp(1.85rem, 3.8vw, 2.75rem); }
h1 em, h2 em {
  font-style: italic;
  background: linear-gradient(100deg, var(--blue-600), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.06em;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--blue-900); color: #fff;
  padding: 0.75rem 1.25rem; border-radius: 0 0 var(--radius-sm) 0;
  z-index: 200; font-weight: 600;
}
.skip-link:focus { left: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad);
}

section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.5rem;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), border-color 0.25s var(--ease),
              color 0.25s var(--ease), filter 0.25s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: linear-gradient(120deg, var(--blue-600), var(--cyan));
  color: #fff;
  box-shadow: 0 3px 10px rgba(28, 116, 208, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 10px 26px rgba(28, 116, 208, 0.42);
}

.btn--ghost {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--blue-500);
  color: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--blue-950);
  box-shadow: 0 2px 10px rgba(217, 154, 20, 0.4);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(217, 154, 20, 0.45); }

.btn--lg { padding: 0.95rem 2rem; font-size: 1rem; }
.btn--block { width: 100%; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2.5px solid var(--blue-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Section headings ---------- */
.section__head {
  max-width: 640px;
  margin: 0 auto 3.25rem;
  text-align: center;
}
.section__head p { margin-top: 0.9rem; color: var(--ink-mute); font-size: 1.05rem; }
.section__head--light h2 { color: #fff; }

.eyebrow {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: 1.1rem;
}
.eyebrow--light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--blue-300);
}

/* ---------- Bubbles (decor) ---------- */
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.9), rgba(170, 222, 248, 0.25) 55%, rgba(69, 174, 233, 0.35));
  border: 1px solid rgba(69, 174, 233, 0.35);
  animation: bubbleFloat 9s ease-in-out infinite;
}
.bubble--1 { width: 46px; height: 46px; top: 16%; left: 44%; animation-delay: 0s; }
.bubble--2 { width: 22px; height: 22px; top: 32%; left: 51%; animation-delay: 1.6s; }
.bubble--3 { width: 30px; height: 30px; bottom: 26%; left: 40%; animation-delay: 3.1s; }
.bubble--4 { width: 16px; height: 16px; top: 12%; right: 6%; animation-delay: 2.2s; }
.bubble--5 { width: 34px; height: 34px; bottom: 12%; right: 3%; animation-delay: 4.4s; }

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-16px) translateX(6px); }
  66% { transform: translateY(-6px) translateX(-6px); }
}

/* ---------- Wave dividers ---------- */
.wave {
  line-height: 0;
  color: var(--blue-900);
  margin-bottom: -1px;
}
.wave svg { width: 100%; height: clamp(28px, 5vw, 64px); display: block; }
.wave--flip {
  transform: rotate(180deg);
  margin-bottom: 0;
  margin-top: -1px;
}

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--blue-950);
  color: var(--blue-100);
  font-size: 0.84rem;
}
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 40px;
  padding-block: 0.4rem;
}
.announce strong { color: #fff; }
.announce__code {
  font-family: ui-monospace, SFMono-Regular, monospace;
  background: rgba(255, 255, 255, 0.12);
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  padding: 0.1rem 0.45rem;
  color: var(--blue-300);
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.announce__code:hover { background: rgba(255, 255, 255, 0.22); color: #fff; }
.announce__dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue-400);
  margin-right: 0.4rem;
  animation: pulse 2s infinite;
}
.announce__meta { display: flex; gap: 0.75rem; align-items: center; white-space: nowrap; }
.announce__meta a:hover { color: #fff; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(69, 174, 233, 0.5); }
  55% { box-shadow: 0 0 0 6px rgba(69, 174, 233, 0); }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav--scrolled {
  border-bottom-color: var(--line-soft);
  box-shadow: 0 4px 24px rgba(11, 44, 77, 0.07);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: var(--nav-h);
}
.nav__brand { flex: none; }
.nav__brand img { height: 48px; width: auto; }

.nav__links {
  display: flex;
  gap: 0.25rem;
  margin-inline: auto;
}
.nav__links a {
  position: relative;
  padding: 0.5rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover { color: var(--blue-700); background: var(--blue-50); }
.nav__links a.active { color: var(--blue-700); background: var(--blue-100); }

.nav__actions { display: flex; align-items: center; gap: 1.1rem; }
.nav__link-quiet {
  font-size: 0.92rem; font-weight: 500; color: var(--ink-soft);
  transition: color 0.2s;
}
.nav__link-quiet:hover { color: var(--blue-700); }
.nav__cta { padding: 0.6rem 1.3rem; font-size: 0.9rem; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
}
.nav__burger span {
  display: block;
  width: 17px; height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.nav__overlay {
  position: fixed; inset: 0;
  background: rgba(6, 24, 43, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  z-index: 120; /* above the sticky nav (100) */
}
.nav__overlay.open { opacity: 1; pointer-events: auto; }

.nav__mobile {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(370px, 92vw);
  background: linear-gradient(200deg, #0f3559 0%, var(--blue-950) 70%);
  padding: 1.4rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  overflow: hidden auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.45s var(--ease), visibility 0s 0.45s;
  z-index: 130; /* above the overlay */
  box-shadow: -24px 0 64px rgba(6, 24, 43, 0.45);
}
.nav__mobile.open { transform: translateX(0); visibility: visible; transition: transform 0.45s var(--ease); }

.nav__mobile-glow {
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 174, 233, 0.28), transparent 65%);
  pointer-events: none;
}

.nav__mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.nav__mobile-logo {
  display: inline-flex;
  background: #fff;
  border-radius: 12px;
  padding: 0.45rem 0.75rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}
.nav__mobile-logo img { height: 34px; width: auto; }
.nav__mobile-close {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.95rem;
  display: grid; place-items: center;
  transition: background 0.25s, transform 0.25s;
}
.nav__mobile-close:hover { background: rgba(255, 255, 255, 0.1); transform: rotate(90deg); }

.nav__mobile-links { display: flex; flex-direction: column; }
.nav__mobile-links a {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.9rem 0.25rem;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  /* staggered entrance — animated in via .open */
  opacity: 0;
  translate: 28px 0;
  transition: opacity 0.4s var(--ease), translate 0.4s var(--ease), color 0.2s;
}
.nav__mobile.open .nav__mobile-links a { opacity: 1; translate: 0 0; }
.nav__mobile.open .nav__mobile-links a:nth-child(1) { transition-delay: 0.10s; }
.nav__mobile.open .nav__mobile-links a:nth-child(2) { transition-delay: 0.16s; }
.nav__mobile.open .nav__mobile-links a:nth-child(3) { transition-delay: 0.22s; }
.nav__mobile.open .nav__mobile-links a:nth-child(4) { transition-delay: 0.28s; }
.nav__mobile.open .nav__mobile-links a:nth-child(5) { transition-delay: 0.34s; }
.nav__mobile.open .nav__mobile-links a:nth-child(6) { transition-delay: 0.40s; }

.nav__mobile-links a i {
  font-style: normal;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue-400);
}
.nav__mobile-links a span {
  margin-left: auto;
  color: var(--blue-400);
  font-size: 1.1rem;
  opacity: 0;
  translate: -8px 0;
  transition: opacity 0.25s, translate 0.25s var(--ease);
}
.nav__mobile-links a:hover span, .nav__mobile-links a:active span { opacity: 1; translate: 0 0; }
.nav__mobile-links a:hover { color: var(--blue-300); }

.nav__mobile-foot { margin-top: auto; padding-top: 2rem; }
.nav__mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1.4rem;
}
.nav__mobile-contact a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--blue-200);
  transition: color 0.2s;
}
.nav__mobile-contact a:hover { color: #fff; }
.nav__mobile-social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.nav__mobile-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--blue-300);
  transition: all 0.25s var(--ease);
}
.nav__mobile-social a:hover {
  background: var(--blue-400);
  border-color: var(--blue-400);
  color: var(--blue-950);
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--ice) 100%);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.6;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--blue-200), transparent 65%);
  top: -140px; right: -80px;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--blue-100), transparent 65%);
  bottom: -120px; left: -120px;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--blue-200);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--blue-800);
  margin-bottom: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.hero__badge-pulse {
  flex: none;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  animation: pulse 2s infinite;
}

.hero__title {
  font-size: clamp(2.8rem, 6.4vw, 5rem);
  margin-bottom: 1.35rem;
}

.hero__sub {
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  color: var(--ink-mute);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.4rem;
}

.hero__proof { display: flex; align-items: center; gap: 1rem; }
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  display: grid; place-items: center;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}
.hero__avatars span + span { margin-left: -11px; }
.hero__proof-text { display: flex; flex-direction: column; line-height: 1.35; }
.hero__proof-text strong { font-size: 0.95rem; color: var(--ink); letter-spacing: 0.02em; }
.hero__proof-text span { font-size: 0.84rem; color: var(--ink-mute); }

/* Hero visual */
.hero__visual { position: relative; }
.hero__card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}
.hero__card-scene { border-radius: calc(var(--radius-xl) - 8px); overflow: hidden; }
.hero__card-scene svg { width: 100%; height: auto; }
.hero__sparkles path { animation: sparkle 3.2s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.hero__sparkles path:nth-child(2) { animation-delay: 0.8s; }
.hero__sparkles path:nth-child(3) { animation-delay: 1.6s; }

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.72) rotate(18deg); }
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--paper);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
  animation: floaty 5.5s ease-in-out infinite;
}
.float-card div { display: flex; flex-direction: column; line-height: 1.3; }
.float-card strong { font-size: 0.85rem; }
.float-card div span { font-size: 0.74rem; color: var(--ink-mute); }
.float-card__icon {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: #fdf3d7;
  color: var(--gold-deep);
  font-size: 1rem;
}
.float-card__icon--check { background: var(--blue-100); color: var(--blue-700); font-weight: 800; }
.float-card__icon--leaf { background: var(--blue-100); color: var(--blue-600); }

.float-card--rating { top: -22px; right: 6%; animation-delay: 0s; }
.float-card--booking { bottom: 14%; left: -34px; animation-delay: 1.4s; }
.float-card--eco { bottom: -24px; right: 10%; animation-delay: 2.6s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* Hero logos */
.hero__logos {
  position: relative;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.hero__logos-label {
  flex: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero__logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 2.25rem;
  align-items: center;
}
.hero__logos-row span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink-mute);
  opacity: 0.7;
  white-space: nowrap;
}

/* ---------- Marquee strip ---------- */
.strip {
  background: linear-gradient(100deg, var(--blue-700), var(--blue-600) 45%, var(--cyan));
  color: #fff;
  padding: 0.9rem 0;
  overflow: hidden;
}
.strip__track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.strip:hover .strip__track { animation-play-state: paused; }
.strip__group {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  padding-right: 2.25rem;
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.strip__group i { font-style: normal; color: var(--blue-200); font-size: 0.75rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Stats ---------- */
.stats { padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.5rem); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stat {
  background: var(--paper);
  text-align: center;
  padding: 2.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stat strong {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 800;
  background: linear-gradient(120deg, var(--blue-700), var(--blue-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stat > span { font-size: 0.88rem; color: var(--ink-mute); font-weight: 500; }

/* ---------- Services ---------- */
.services { padding: clamp(4rem, 8vw, 6.5rem) 0; }

.services__tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  width: max-content;
  margin: 0 auto 2.75rem;
  padding: 4px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.tab {
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink-mute);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.tab--active { background: linear-gradient(120deg, var(--blue-600), var(--cyan)); color: #fff; }
.tab:not(.tab--active):hover { color: var(--blue-700); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.services__grid[hidden] { display: none; }

.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.svc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}
.svc--featured {
  background: linear-gradient(165deg, var(--blue-900), var(--blue-700));
  border-color: var(--blue-800);
  color: #fff;
}
.svc--featured h3 { color: #fff; }
.svc.svc--featured > p { color: rgba(255, 255, 255, 0.92); }
.svc--featured:hover { box-shadow: 0 18px 48px rgba(16, 69, 124, 0.4); border-color: var(--blue-500); }

.svc__icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--blue-100);
  color: var(--blue-600);
  margin-bottom: 1.2rem;
}
.svc--featured .svc__icon { background: rgba(255, 255, 255, 0.14); color: var(--blue-200); }

.svc__tag {
  position: absolute;
  top: 1.3rem; right: 1.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--blue-950);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
}

.svc h3 { font-size: 1.22rem; margin-bottom: 0.5rem; }
.svc > p { font-size: 0.9rem; color: var(--ink-mute); margin-bottom: 1.1rem; }

.svc ul { display: grid; gap: 0.45rem; margin-bottom: 1.5rem; }
.svc li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.svc--featured li { color: var(--blue-50); }
.svc li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-500);
}
.svc--featured li::before { color: var(--blue-200); }

.svc__foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.svc--featured .svc__foot { border-top-color: rgba(255, 255, 255, 0.18); }
.svc__price { font-size: 0.82rem; color: var(--ink-mute); }
.svc__price strong { font-size: 1.12rem; color: var(--ink); font-family: var(--display); font-weight: 800; }
.svc--featured .svc__price { color: var(--blue-100); }
.svc--featured .svc__price strong { color: #fff; }

.svc__link {
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue-600);
  white-space: nowrap;
}
.svc__link span { display: inline-block; transition: transform 0.25s var(--ease); }
.svc__link:hover span { transform: translateX(4px); }
.svc--featured .svc__link { color: var(--blue-200); }

/* ---------- Process ---------- */
.process {
  background:
    radial-gradient(700px 380px at 85% -10%, rgba(69, 174, 233, 0.22), transparent 70%),
    var(--blue-900);
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 6.5rem);
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.step { position: relative; padding-top: 1.5rem; }
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-400), transparent);
  opacity: 0.55;
}
.step__n {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 800;
  font-style: italic;
  color: var(--blue-400);
  line-height: 1;
  margin-bottom: 0.9rem;
}
.step h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.45rem; }
.step p { color: #9fc2dd; font-size: 0.92rem; }

/* ---------- Eco ---------- */
.eco { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.eco__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.eco__copy h2 { margin-bottom: 1.1rem; }
.eco__copy > p { color: var(--ink-mute); max-width: 54ch; }

.eco__stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.eco__stats div { display: flex; flex-direction: column; }
.eco__stats strong {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--blue-600);
  line-height: 1.15;
}
.eco__stats span { font-size: 0.85rem; color: var(--ink-mute); }

.eco__circle {
  aspect-ratio: 1;
  max-width: 420px;
  margin-inline: auto;
  animation: floaty 7s ease-in-out infinite;
}

/* ---------- Booking ---------- */
.book { padding: clamp(4rem, 8vw, 6.5rem) 0; }

.booking {
  max-width: 860px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.booking__steps {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 6vw, 4rem);
  padding: 1.75rem 1.5rem;
  background: var(--blue-50);
  border-bottom: 1px solid var(--line-soft);
}
.bstep {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  opacity: 0.45;
  transition: opacity 0.3s;
}
.bstep--active, .bstep--done { opacity: 1; }
.bstep span {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.88rem;
  font-weight: 700;
  background: var(--paper);
  border: 1.5px solid var(--line);
  color: var(--ink-mute);
  transition: all 0.3s var(--ease);
}
.bstep--active span {
  background: linear-gradient(120deg, var(--blue-600), var(--cyan));
  border-color: var(--blue-600);
  color: #fff;
}
.bstep--done span { background: var(--blue-300); border-color: var(--blue-300); color: var(--blue-950); }
.bstep p { font-size: 0.88rem; font-weight: 600; }

.booking__form { padding: clamp(1.5rem, 4vw, 2.75rem); }

.bpanel { display: none; }
.bpanel--active { display: block; animation: fadeUp 0.45s var(--ease); }
.bpanel h3 { font-size: 1.45rem; margin-bottom: 1.5rem; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.bpanel__group { margin-bottom: 1.4rem; }
.bpanel__group > label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  margin-bottom: 0.55rem;
}

.bgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.25rem; }

input, select, textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.75rem 1rem;
  background: var(--ice);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
input:hover, select:hover, textarea:hover { border-color: var(--blue-400); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: var(--paper);
  box-shadow: 0 0 0 3.5px var(--blue-100);
}
textarea { resize: vertical; min-height: 90px; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%235a7386' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chip {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.2s var(--ease);
}
.chip:hover { border-color: var(--blue-500); color: var(--blue-700); }
.chip--on {
  background: linear-gradient(120deg, var(--blue-600), var(--cyan));
  border-color: var(--blue-600);
  color: #fff;
  box-shadow: 0 2px 8px rgba(28, 116, 208, 0.3);
}

/* Promo code */
.promo { display: flex; gap: 0.55rem; }
.promo input { flex: 1; text-transform: uppercase; }
.promo input::placeholder { text-transform: none; }
.promo .btn { flex: none; padding-inline: 1.35rem; }
.promo__msg { display: none; margin-top: 0.55rem; font-size: 0.85rem; font-weight: 500; }
.promo__msg--ok { display: block; color: #0f7a52; }
.promo__msg--warn { display: block; color: #a8730f; }
.promo__msg--err { display: block; color: #c0392b; }

.booking__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
}
.booking__nav .btn--ghost { margin-right: auto; }

.quote-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.15rem;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--ink-mute);
}
.quote-pill strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue-700);
  font-variant-numeric: tabular-nums;
}

.booking__summary { margin-bottom: 0.5rem; }
.booking__summary h4 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.booking__summary dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1.5rem;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
}
.booking__summary dt { color: var(--ink-mute); font-weight: 500; }
.booking__summary dd { text-align: right; font-weight: 500; }

/* Success */
.success { text-align: center; padding: 2rem 1rem; }
.success__icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  box-shadow: 0 10px 30px rgba(43, 144, 224, 0.45);
  animation: pop 0.5s var(--ease);
}
@keyframes pop {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success h3 { margin-bottom: 0.75rem; }
.success p { color: var(--ink-mute); max-width: 46ch; margin-inline: auto; }
.success__ref { margin-block: 1rem 1.5rem; font-size: 0.95rem; }
.success__ref strong { font-family: ui-monospace, monospace; color: var(--blue-700); }

/* ---------- Pricing ---------- */
.pricing { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  max-width: 1020px;
  margin: 0 auto;
}
.plan {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.9rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan--featured {
  position: relative;
  background: linear-gradient(165deg, var(--blue-900), var(--blue-700));
  color: #fff;
  border-color: var(--blue-800);
  box-shadow: 0 20px 48px rgba(11, 44, 77, 0.32);
  transform: scale(1.03);
}
.plan--featured:hover { transform: scale(1.03) translateY(-6px); }
.plan--featured h3 { color: #fff; }

.plan__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--blue-950);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(217, 154, 20, 0.45);
}

.plan h3 { font-size: 1.28rem; margin-bottom: 0.9rem; }
.plan__price {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.plan__price span {
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 0.2rem;
}
.plan--featured .plan__price span { color: var(--blue-300); }
.plan__sub { font-size: 0.88rem; color: var(--ink-mute); margin-bottom: 1.4rem; }
.plan--featured .plan__sub { color: var(--blue-100); }

.plan ul { display: grid; gap: 0.55rem; margin-bottom: 1.9rem; }
.plan li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.plan--featured li { color: var(--blue-50); }
.plan li::before {
  content: "✓";
  position: absolute; left: 0;
  font-weight: 700;
  color: var(--blue-500);
}
.plan--featured li::before { color: var(--blue-300); }
.plan .btn { margin-top: auto; }

/* ---------- Testimonials ---------- */
.testimonials { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.tgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  max-width: 940px;
  margin: 0 auto;
}
.quote {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote__stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 0.9rem; font-size: 0.9rem; }
.quote > p {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}
.quote footer { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.quote__av {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.quote footer div:last-child { display: flex; flex-direction: column; line-height: 1.35; }
.quote footer strong { font-size: 0.92rem; }
.quote footer span { font-size: 0.8rem; color: var(--ink-mute); }

/* ---------- Areas ---------- */
.areas { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.areas__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  max-width: 760px;
  margin: 0 auto;
}
.areas__grid span {
  padding: 0.55rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.25s var(--ease);
}
.areas__grid span:hover {
  border-color: var(--blue-400);
  color: var(--blue-700);
  background: var(--blue-50);
  transform: translateY(-2px);
}

/* ---------- FAQ ---------- */
.faq { padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(5rem, 9vw, 7.5rem); }
.faq__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.faq__head { position: sticky; top: calc(var(--nav-h) + 2rem); }
.faq__head h2 { margin-bottom: 0.9rem; }
.faq__head p { color: var(--ink-mute); }
.faq__head a { color: var(--blue-600); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.faq__list { display: grid; gap: 0.8rem; }
.faqi {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faqi[open] { border-color: var(--blue-200); box-shadow: var(--shadow-sm); }
.faqi summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faqi summary::-webkit-details-marker { display: none; }
.faqi summary span {
  flex: none;
  position: relative;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.faqi summary span::before, .faqi summary span::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 1.8px;
  background: var(--blue-600);
  translate: -50% -50%;
  transition: rotate 0.3s var(--ease);
}
.faqi summary span::after { rotate: 90deg; }
.faqi[open] summary span { background: var(--blue-600); border-color: var(--blue-600); }
.faqi[open] summary span::before, .faqi[open] summary span::after { background: #fff; }
.faqi[open] summary span::after { rotate: 0deg; }
.faqi > p {
  padding: 0 1.4rem 1.3rem;
  color: var(--ink-mute);
  font-size: 0.93rem;
}

/* ---------- Contact ---------- */
.contact {
  background:
    radial-gradient(600px 340px at 12% 110%, rgba(69, 174, 233, 0.2), transparent 70%),
    var(--blue-900);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.contact__copy h2 { color: #fff; margin-bottom: 1rem; }
.contact__copy > p { color: #9fc2dd; max-width: 46ch; }

.contact__list { display: grid; gap: 0.7rem; margin-top: 1.75rem; }
.contact__list li { color: var(--blue-100); font-size: 0.95rem; }
.contact__list strong {
  display: inline-block;
  min-width: 64px;
  color: var(--blue-400);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact__form {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-lg);
}
.contact__success {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1.15rem;
  background: var(--blue-100);
  border: 1px solid var(--blue-200);
  color: var(--blue-800);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}
.contact__success.show { display: block; animation: fadeUp 0.4s var(--ease); }
.contact__success--err {
  background: #fdecea;
  border-color: #f5c6c0;
  color: #a13529;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--blue-950);
  color: var(--blue-100);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(2rem, 6vw, 5rem);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.footer__logo {
  display: inline-block;
  width: max-content;
  background: #fff;
  border-radius: var(--radius);
  padding: 0.7rem 1.1rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}
.footer__logo img { height: 46px; width: auto; }
.footer__brand p { font-size: 0.92rem; color: #8aa9c4; max-width: 36ch; }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--blue-300);
  transition: all 0.25s var(--ease);
}
.footer__social a:hover {
  background: var(--blue-400);
  border-color: var(--blue-400);
  color: var(--blue-950);
  transform: translateY(-3px);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__cols h4 {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 1.1rem;
}
.footer__cols a {
  display: block;
  padding-block: 0.32rem;
  font-size: 0.92rem;
  color: #a9c4dc;
  transition: color 0.2s, transform 0.2s;
}
.footer__cols a:hover { color: #fff; transform: translateX(3px); }

.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.09); }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-block: 1.4rem;
  font-size: 0.82rem;
  color: #7495b3;
}

/* ---------- Legal pages (privacy, terms, 404) ---------- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--pad) clamp(3.5rem, 7vw, 5.5rem);
}
.legal h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 0.5rem; }
.legal__updated { color: var(--ink-mute); font-size: 0.9rem; margin-bottom: 2.25rem; }
.legal h2 { font-size: 1.3rem; margin: 2.25rem 0 0.75rem; }
.legal p, .legal li { color: var(--ink-soft); font-size: 0.97rem; }
.legal p + p { margin-top: 0.75rem; }
.legal ul { list-style: disc; padding-left: 1.4rem; display: grid; gap: 0.4rem; margin-block: 0.75rem; }
.legal a { color: var(--blue-600); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.notfound {
  min-height: 60vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 4rem var(--pad);
}
.notfound h1 {
  font-size: clamp(4rem, 12vw, 7rem);
  background: linear-gradient(100deg, var(--blue-600), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.notfound p { color: var(--ink-mute); margin: 1rem 0 2rem; }

.footer__legal a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer__legal a:hover { color: #fff; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.07s; }
.reveal:nth-child(3) { transition-delay: 0.14s; }
.reveal:nth-child(4) { transition-delay: 0.21s; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .float-card--booking { left: -10px; }
}

@media (max-width: 900px) {
  /* 16px form text — anything smaller makes iOS Safari zoom the page on focus */
  input, select, textarea { font-size: 1rem; }

  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; margin-left: auto; }
  .nav__brand img { height: 42px; }

  .announce__meta { display: none; }
  .announce__inner { justify-content: center; text-align: center; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 540px; margin-inline: auto; width: 100%; }
  .hero__logos { justify-content: center; text-align: center; }
  .hero__logos-row { justify-content: center; }
  .bubble--1, .bubble--2, .bubble--3 { display: none; }

  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .eco__inner { grid-template-columns: 1fr; }
  .eco__visual { order: -1; }
  .eco__circle { max-width: 280px; }

  .plans { grid-template-columns: 1fr; max-width: 460px; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-6px); }

  .tgrid { grid-template-columns: 1fr; max-width: 560px; }

  .faq__inner { grid-template-columns: 1fr; }
  .faq__head { position: static; text-align: center; }

  .contact__inner { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 620px) {
  .services__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: 1fr; }
  .bgrid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }

  .hero__cta .btn { flex: 1 1 100%; }
  .float-card--rating { top: -16px; right: 2%; }
  .float-card--booking { bottom: 10%; left: -6px; }
  .float-card--eco { bottom: -18px; right: 2%; }

  .booking__steps { gap: 1rem; padding: 1.4rem 1rem; }
  .bstep { gap: 0.45rem; }
  .bstep p { font-size: 0.8rem; white-space: nowrap; }
  .bstep span { width: 28px; height: 28px; font-size: 0.8rem; }

  .booking__nav { justify-content: stretch; }
  .booking__nav .btn { flex: 1; }
  .quote-pill { flex: 1 1 100%; justify-content: center; order: -1; }
  .booking__nav .btn--ghost { margin-right: 0; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
