/* ============================================================
   ZÉTERO — Design System V2
   Solution complète de gestion des espaces de pause
   Palette : bleu profond · bleu clair · blanc
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Blues */
  --navy-950: #061528;
  --navy-900: #0a2342;
  --navy-800: #0e2d54;
  --navy-700: #133a6b;
  --blue-600: #1b57d6;
  --blue-500: #2f74ed;
  --blue-400: #5a96ff;
  --blue-300: #8fbaff;
  --blue-200: #bcd7ff;
  --blue-100: #e3eeff;
  --blue-50:  #f1f6ff;
  --sky:      #38bdf8;

  /* Neutrals */
  --white: #ffffff;
  --mist:  #f5f9ff;
  --cloud: #eef4fc;
  --ink:   #0c2138;
  --slate: #43566f;
  --muted: #6b7c95;
  --line:  #e2ebf6;

  /* Semantic */
  --bg: var(--white);
  --text: var(--ink);

  /* Gradients */
  --grad-deep: linear-gradient(135deg, #0a2342 0%, #123a6b 55%, #1b57d6 130%);
  --grad-blue: linear-gradient(135deg, #1b57d6 0%, #2f74ed 100%);
  --grad-soft: linear-gradient(135deg, #f1f6ff 0%, #e3eeff 100%);
  --grad-sky:  linear-gradient(120deg, #2f74ed 0%, #38bdf8 100%);

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(12, 33, 56, .06);
  --sh-sm: 0 4px 14px rgba(12, 33, 56, .07);
  --sh-md: 0 14px 40px rgba(13, 45, 84, .10);
  --sh-lg: 0 30px 70px rgba(13, 45, 84, .16);
  --sh-blue: 0 18px 40px rgba(27, 87, 214, .28);

  /* Radii */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* Type */
  --f-head: "Outfit", system-ui, sans-serif;
  --f-body: "Plus Jakarta Sans", system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--blue-200); color: var(--navy-900); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-head);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.3rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); letter-spacing: -0.01em; }
p  { color: var(--slate); }

.accent-grad {
  background: var(--grad-sky);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.bg-mist { background: var(--mist); }
.bg-soft { background: var(--grad-soft); }
.bg-deep { background: var(--grad-deep); color: var(--blue-100); }
.bg-deep h2, .bg-deep h3 { color: #fff; }
.bg-deep p { color: var(--blue-200); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--grad-blue);
}
.bg-deep .eyebrow { color: var(--sky); }
.bg-deep .eyebrow::before { background: var(--sky); }

.section-head { max-width: 680px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.08rem; margin-top: 1rem; }

.lead { font-size: 1.15rem; color: var(--slate); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: .98rem;
  padding: .95rem 1.6rem;
  border-radius: var(--r-pill);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--grad-blue); color: #fff; box-shadow: var(--sh-blue); }
.btn-primary:hover { box-shadow: 0 22px 48px rgba(27, 87, 214, .42); }

.btn-light { background: #fff; color: var(--blue-600); box-shadow: var(--sh-sm); }
.btn-light:hover { box-shadow: var(--sh-md); }

.btn-outline { background: transparent; color: var(--blue-600); box-shadow: inset 0 0 0 1.5px var(--blue-200); }
.btn-outline:hover { box-shadow: inset 0 0 0 1.5px var(--blue-500); background: var(--blue-50); }

.bg-deep .btn-outline, .hero .btn-outline { color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.28); }
.bg-deep .btn-outline:hover, .hero .btn-outline:hover { background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.6); }

.btn-ghost { color: var(--blue-600); padding-inline: .4rem; }
.btn-ghost:hover { color: var(--blue-500); }

.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }

/* ============================================================
   LOADER
   ============================================================ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-content: center; justify-items: center;
  background: var(--grad-deep);
  transition: opacity .7s var(--ease), visibility .7s;
}
#loader.done { opacity: 0; visibility: hidden; }
.loader-logo { width: 210px; max-width: 56vw; height: auto; animation: floaty 2.6s ease-in-out infinite; }
.loader-bar { margin-top: 1.8rem; width: 180px; height: 3px; border-radius: 3px; background: rgba(255,255,255,.15); overflow: hidden; }
.loader-bar::after { content:""; display:block; height:100%; width:40%; border-radius:3px; background: var(--grad-sky); animation: loadBar 1.1s var(--ease) infinite; }
@keyframes loadLetter { to { opacity: 1; transform: translateY(0);} }
@keyframes loadBar { 0%{transform:translateX(-100%)} 100%{transform:translateX(350%)} }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s, padding .4s, backdrop-filter .4s;
  padding-block: 1.1rem;
}
.nav.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 4px 30px rgba(13,45,84,.08);
  padding-block: .7rem;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.logo { display: inline-flex; align-items: center; }
.logo-img { height: 26px; width: auto; display: block; }
.logo-img--dark { display: none; }
.nav.scrolled .logo-img--light { display: none; }
.nav.scrolled .logo-img--dark { display: block; }

.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  font-family: var(--f-head); font-weight: 500; font-size: .95rem;
  padding: .55rem .9rem; border-radius: var(--r-pill);
  color: rgba(255,255,255,.86); transition: color .3s, background .3s;
}
.nav.scrolled .nav-links a { color: var(--slate); }
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.14); }
.nav.scrolled .nav-links a:hover, .nav.scrolled .nav-links a.active { color: var(--blue-600); background: var(--blue-50); }

.nav-cta { margin-left: .6rem; }
.nav .btn-nav {
  background: #fff; color: var(--blue-600);
  padding: .65rem 1.25rem; border-radius: var(--r-pill);
  font-family: var(--f-head); font-weight: 600; font-size: .95rem;
  box-shadow: var(--sh-sm); transition: transform .3s var(--ease), box-shadow .3s, background .3s, color .3s;
}
.nav:not(.scrolled) .btn-nav { background: var(--grad-blue); color: #fff; }
.nav .btn-nav:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }

.burger { display: none; width: 44px; height: 44px; border-radius: 12px; position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; border-radius: 2px; background: #fff; transition: .35s var(--ease); }
.nav.scrolled .burger span { background: var(--navy-900); }
.burger span:nth-child(1){ top: 15px; }
.burger span:nth-child(2){ top: 21px; }
.burger span:nth-child(3){ top: 27px; }
.burger.open span:nth-child(1){ top: 21px; transform: rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ top: 21px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 380px); z-index: 999;
  background: var(--grad-deep); padding: 6rem 2rem 2rem;
  transform: translateX(100%); transition: transform .5s var(--ease);
  display: flex; flex-direction: column; gap: .4rem;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--f-head); font-weight: 600; font-size: 1.3rem; color: #fff; padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-menu .btn { margin-top: 1.4rem; justify-content: center; }
.scrim { position: fixed; inset: 0; background: rgba(6,21,40,.5); opacity: 0; visibility: hidden; transition: .4s; z-index: 998; backdrop-filter: blur(2px); }
.scrim.open { opacity: 1; visibility: visible; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(8rem, 16vh, 11rem); padding-bottom: clamp(3rem, 7vw, 6rem); background: var(--grad-deep); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(700px 420px at 78% 8%, rgba(56,189,248,.22), transparent 60%),
    radial-gradient(620px 520px at 12% 90%, rgba(47,116,237,.30), transparent 62%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .55; z-index: 0; pointer-events: none; }
.orb-1 { width: 380px; height: 380px; top: -90px; right: -60px; background: radial-gradient(circle at 30% 30%, rgba(56,189,248,.5), transparent 70%); animation: drift 16s ease-in-out infinite; }
.orb-2 { width: 300px; height: 300px; bottom: -80px; left: 4%; background: radial-gradient(circle at 50% 50%, rgba(90,150,255,.45), transparent 70%); animation: drift 20s ease-in-out infinite reverse; }
@keyframes drift { 0%,100%{transform:translate(0,0)} 50%{transform:translate(24px,-30px)} }

.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  padding: .5rem .95rem; border-radius: var(--r-pill);
  font-size: .85rem; font-weight: 500; color: #eaf2ff; margin-bottom: 1.6rem;
  backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 4px rgba(56,189,248,.25); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 4px rgba(56,189,248,.25)} 50%{box-shadow:0 0 0 7px rgba(56,189,248,.08)} }

.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; background: linear-gradient(120deg, #8fd9ff, #5a96ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { color: var(--blue-200); font-size: 1.18rem; max-width: 33rem; margin-top: 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.6rem; }
.hero-trust div { display: flex; align-items: center; gap: .55rem; color: #d6e6ff; font-size: .92rem; font-weight: 500; }
.hero-trust svg { width: 20px; height: 20px; color: var(--sky); flex: none; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-photo {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-lg); aspect-ratio: 4/5; background: #0e2d54;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
  position: absolute; background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-radius: var(--r-md); box-shadow: var(--sh-lg); padding: .95rem 1.1rem;
  display: flex; align-items: center; gap: .8rem;
}
.hero-card .ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-content: center; background: var(--grad-soft); color: var(--blue-600); flex: none; }
.hero-card .ic svg { width: 22px; height: 22px; }
.hero-card strong { display: block; font-family: var(--f-head); font-size: 1.05rem; color: var(--ink); line-height: 1.1; }
.hero-card span { font-size: .8rem; color: var(--muted); }
.hero-card--1 { top: 8%; left: -7%; animation: floaty 5s ease-in-out infinite; }
.hero-card--2 { bottom: 9%; right: -7%; animation: floaty 6s ease-in-out .8s infinite; }

/* Marquee logos strip */
.strip { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding-block: 1.6rem; overflow: hidden; }
.strip-label { text-align: center; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 1.1rem; }
.marquee { display: flex; gap: 3.5rem; width: max-content; animation: scrollx 28s linear infinite; }
.strip:hover .marquee { animation-play-state: paused; }
.marquee span { font-family: var(--f-head); font-weight: 600; color: #9fb1c9; font-size: 1.05rem; display: inline-flex; align-items: center; gap: .8rem; white-space: nowrap; }
.marquee span::after { content: "●"; color: var(--blue-300); font-size: .5rem; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.5vw, 2rem); }
.stat { text-align: center; }
.stat .num { font-family: var(--f-head); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.03em;
  background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bg-deep .stat .num { background: linear-gradient(120deg,#fff,#8fd9ff); -webkit-background-clip: text; background-clip: text; }
.stat .lbl { margin-top: .5rem; font-size: .95rem; color: var(--muted); font-weight: 500; }
.bg-deep .stat .lbl { color: var(--blue-200); }

/* ============================================================
   SOLUTIONS / CARDS GRID
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2rem 1.8rem; transition: transform .45s var(--ease), box-shadow .45s, border-color .45s;
  position: relative; overflow: hidden;
}
.card::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--grad-sky); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--sh-md); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card-ic {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-content: center;
  background: var(--grad-soft); color: var(--blue-600); margin-bottom: 1.3rem;
  transition: transform .45s var(--ease);
}
.card:hover .card-ic { transform: scale(1.08) rotate(-4deg); }
.card-ic svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .96rem; }
.card-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.2rem; font-family: var(--f-head); font-weight: 600; font-size: .92rem; color: var(--blue-600); }
.card-link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* Feature card (why) */
.feature { display: flex; gap: 1.1rem; padding: 1.6rem; border-radius: var(--r-md); background: #fff; border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s; }
.feature:hover { transform: translateY(-5px); box-shadow: var(--sh-sm); }
.feature .fic { width: 50px; height: 50px; flex: none; border-radius: 14px; display: grid; place-content: center; background: var(--grad-blue); color: #fff; box-shadow: var(--sh-blue); }
.feature .fic svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.feature p { font-size: .94rem; }

/* ============================================================
   SPLIT (image + text)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { position: relative; }
.split-media .ph { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); }
.split-media .ph img { width: 100%; height: 100%; object-fit: cover; }
.split-media .glow { position: absolute; inset: auto -8% -8% auto; width: 60%; height: 60%; background: radial-gradient(circle, rgba(47,116,237,.22), transparent 70%); filter: blur(30px); z-index: -1; }
.checks { margin-top: 1.6rem; display: grid; gap: .85rem; }
.checks li { display: flex; gap: .7rem; align-items: flex-start; color: var(--slate); font-size: 1rem; }
.checks .ck { width: 24px; height: 24px; flex: none; border-radius: 50%; display: grid; place-content: center; background: var(--blue-100); color: var(--blue-600); margin-top: 1px; }
.checks .ck svg { width: 14px; height: 14px; }
.bg-deep .checks li { color: var(--blue-100); }
.bg-deep .checks .ck { background: rgba(56,189,248,.18); color: var(--sky); }

/* ============================================================
   PROCESS / TIMELINE
   ============================================================ */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; position: relative; counter-reset: step; }
.process::before { content: ""; position: absolute; top: 30px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, var(--blue-200), var(--blue-400), var(--blue-200)); z-index: 0; }
.step { position: relative; z-index: 1; text-align: center; padding: 0 .4rem; }
.step .bub {
  width: 62px; height: 62px; margin: 0 auto 1.1rem; border-radius: 50%;
  background: #fff; border: 2px solid var(--blue-200); color: var(--blue-600);
  display: grid; place-content: center; font-family: var(--f-head); font-weight: 800; font-size: 1.3rem;
  box-shadow: var(--sh-sm); transition: transform .4s var(--ease), background .4s, color .4s, border-color .4s;
}
.step:hover .bub { transform: translateY(-6px) scale(1.05); background: var(--grad-blue); color: #fff; border-color: transparent; box-shadow: var(--sh-blue); }
.step h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.step p { font-size: .9rem; }

/* ============================================================
   MACHINES SHOWCASE
   ============================================================ */
.machine-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.8rem; text-align: center; transition: transform .45s var(--ease), box-shadow .45s;
  display: flex; flex-direction: column;
}
.machine-card:hover { transform: translateY(-8px); box-shadow: var(--sh-md); }
.machine-img { height: 300px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; overflow: hidden; }
.machine-img img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; filter: drop-shadow(0 22px 34px rgba(13,45,84,.16)); transition: transform .5s var(--ease); }
.machine-card:hover .machine-img img { transform: translateY(-6px) scale(1.03); }
.machine-tag { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--blue-500); }
.machine-card h3 { margin: .3rem 0 .5rem; }
.machine-card p { font-size: .93rem; }
.machine-specs { margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.machine-specs span { font-size: .8rem; font-weight: 600; color: var(--slate); background: #fff; border: 1px solid var(--line); padding: .35rem .75rem; border-radius: var(--r-pill); }

/* Beverage chips */
.bev-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }
.bev {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.3rem 1rem; text-align: center; transition: transform .4s var(--ease), box-shadow .4s, background .4s;
}
.bev:hover { transform: translateY(-5px); box-shadow: var(--sh-sm); background: var(--blue-50); }
.bev .be { width: 46px; height: 46px; margin: 0 auto .7rem; color: var(--blue-600); }
.bev .be svg { width: 100%; height: 100%; }
.bev strong { font-family: var(--f-head); font-size: 1rem; color: var(--ink); display: block; }
.bev small { color: var(--muted); font-size: .82rem; }

/* ============================================================
   AUDIENCE (who we serve)
   ============================================================ */
.aud-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.aud {
  display: flex; align-items: center; gap: .85rem; padding: 1.1rem 1.2rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.aud:hover { transform: translateY(-4px); box-shadow: var(--sh-sm); border-color: var(--blue-200); }
.aud .ai { width: 40px; height: 40px; flex: none; border-radius: 11px; display: grid; place-content: center; background: var(--grad-soft); color: var(--blue-600); }
.aud .ai svg { width: 21px; height: 21px; }
.aud span { font-family: var(--f-head); font-weight: 600; font-size: .96rem; color: var(--ink); }

/* ============================================================
   QUOTE / REASSURANCE
   ============================================================ */
.quote-wrap { max-width: 860px; margin-inline: auto; text-align: center; }
.quote {
  font-family: var(--f-head); font-weight: 600; font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  line-height: 1.32; letter-spacing: -.01em; color: #fff;
}
.quote em { font-style: normal; color: var(--sky); }
.quote-mark { font-family: var(--f-head); font-size: 5rem; line-height: .5; color: rgba(56,189,248,.4); height: 2.2rem; display: block; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 800px; margin-inline: auto; }
.qa { border-bottom: 1px solid var(--line); }
.qa-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.4rem 0; font-family: var(--f-head); font-weight: 600; font-size: 1.12rem; color: var(--ink);
}
.qa-q .pm { width: 30px; height: 30px; flex: none; border-radius: 50%; background: var(--blue-50); color: var(--blue-600); display: grid; place-content: center; transition: transform .4s var(--ease), background .3s; }
.qa-q .pm svg { width: 16px; height: 16px; }
.qa.open .qa-q .pm { transform: rotate(45deg); background: var(--grad-blue); color: #fff; }
.qa-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.qa-a p { padding: 0 0 1.4rem; color: var(--slate); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--grad-deep); padding: clamp(2.5rem, 5vw, 4.5rem); text-align: center; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 80% 10%, rgba(56,189,248,.28), transparent 60%), radial-gradient(500px 300px at 10% 100%, rgba(47,116,237,.4), transparent 60%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--blue-200); max-width: 540px; margin: 1rem auto 0; }
.cta-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-info .ci { display: flex; gap: 1rem; align-items: flex-start; margin-top: 1.6rem; }
.contact-info .ci .cii { width: 48px; height: 48px; flex: none; border-radius: 13px; display: grid; place-content: center; background: var(--grad-soft); color: var(--blue-600); }
.contact-info .ci .cii svg { width: 23px; height: 23px; }
.contact-info .ci strong { display: block; font-family: var(--f-head); color: var(--ink); margin-bottom: .15rem; }
.contact-info .ci a, .contact-info .ci span { color: var(--slate); }
.contact-info .ci a:hover { color: var(--blue-600); }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--sh-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.fg { margin-bottom: 1.1rem; }
.fg label { display: block; font-family: var(--f-head); font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: .45rem; }
.fg input, .fg select, .fg textarea {
  width: 100%; font-family: var(--f-body); font-size: 1rem; color: var(--ink);
  padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--mist); transition: border-color .3s, box-shadow .3s, background .3s;
}
.fg textarea { min-height: 130px; resize: vertical; }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 4px rgba(47,116,237,.12); }
.fg input::placeholder, .fg textarea::placeholder { color: #a9b7cb; }
.form .btn { width: 100%; justify-content: center; margin-top: .4rem; }
.form-note { font-size: .82rem; color: var(--muted); text-align: center; margin-top: 1rem; }
.form-feedback { display: none; margin-top: 1rem; padding: 1rem; border-radius: var(--r-sm); background: var(--blue-50); color: var(--blue-600); font-weight: 600; text-align: center; }
.form-feedback.show { display: block; }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-head { background: var(--grad-deep); padding-top: clamp(8rem, 15vh, 11rem); padding-bottom: clamp(3rem, 6vw, 5rem); position: relative; overflow: hidden; }
.page-head::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 360px at 85% 0%, rgba(56,189,248,.2), transparent 60%); }
.page-head .container { position: relative; z-index: 1; }
.page-head h1 { color: #fff; max-width: 16ch; }
.page-head p { color: var(--blue-200); font-size: 1.15rem; max-width: 50ch; margin-top: 1rem; }
.crumbs { display: flex; gap: .5rem; align-items: center; color: var(--blue-300); font-size: .88rem; margin-bottom: 1.2rem; }
.crumbs a:hover { color: #fff; }
.crumbs svg { width: 14px; height: 14px; opacity: .6; }

/* ============================================================
   LEGAL / PROSE
   ============================================================ */
.legal { max-width: 820px; margin-inline: auto; }
.legal h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); margin: 2.6rem 0 1rem; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.12rem; margin: 1.6rem 0 .6rem; color: var(--navy-800); }
.legal p, .legal li { color: var(--slate); margin-bottom: .9rem; line-height: 1.75; }
.legal ul { margin: 0 0 1rem 1.2rem; list-style: disc; }
.legal li { margin-bottom: .5rem; }
.legal a { color: var(--blue-600); font-weight: 600; }
.legal a:hover { text-decoration: underline; }
.legal strong { color: var(--ink); }
.legal .note { background: var(--blue-50); border: 1px solid var(--line); border-left: 3px solid var(--blue-500); border-radius: var(--r-sm); padding: 1rem 1.2rem; font-size: .92rem; }
.legal .updated { font-size: .85rem; color: var(--muted); margin-bottom: 2.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-950); color: var(--blue-200); padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand p { color: #8da6c6; margin-top: 1.1rem; max-width: 32ch; font-size: .95rem; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a, .footer-col span { color: #8da6c6; font-size: .95rem; transition: color .3s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-block: 1.6rem; flex-wrap: wrap; }
.footer-bottom p { color: #6f88a8; font-size: .86rem; }
.footer-bottom .fb-links { display: flex; gap: 1.4rem; }
.footer-bottom a { color: #6f88a8; font-size: .86rem; }
.footer-bottom a:hover { color: #cfe0f5; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"]{ transition-delay: .08s; }
[data-reveal][data-delay="2"]{ transition-delay: .16s; }
[data-reveal][data-delay="3"]{ transition-delay: .24s; }
[data-reveal][data-delay="4"]{ transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .orb, .marquee, .loader-logo, .hero-card { animation: none !important; }
}

/* Back to top */
.totop { position: fixed; right: 1.4rem; bottom: 1.4rem; width: 48px; height: 48px; border-radius: 50%; background: var(--grad-blue); color: #fff; display: grid; place-content: center; box-shadow: var(--sh-blue); opacity: 0; visibility: hidden; transform: translateY(12px); transition: .4s var(--ease); z-index: 900; }
.totop.show { opacity: 1; visibility: visible; transform: none; }
.totop:hover { transform: translateY(-3px); }
.totop svg { width: 22px; height: 22px; }

/* Responsive rules live in css/responsive.css (loaded after this file). */
