/* ══════════════════════════════════════════════════════
   E-shop na Pohodu – style.css
   Visual language from grafika.htm, content from obsah.html
   Mobile-first responsive design
   ══════════════════════════════════════════════════════ */

:root {
  --ink: #0c1e3a;
  --cream: #eef4fb;
  --orange: #03a9f4;
  --orange2: #96b400;
  --muted: #5a7490;
  --border: rgba(12,30,58,0.11);
  --surface: #ffffff;
  --surface-soft: #e8f4fb;
  --text: var(--ink);
  --text-soft: #2f4458;
  --primary: var(--orange);
  --primary-strong: #0099d1;
  --success: #22c55e;
  --font-ui: 'Roboto', Arial, sans-serif;
  --font-display: var(--font-ui);
  --radius-card: 1.25rem;
  --radius-soft: 0.875rem;
  --container-wide: 1160px;
  --section-space: clamp(4.5rem, 6vw, 6.5rem);
  --ease-standard: cubic-bezier(.16,1,.3,1);
  --dur-fast: .24s;
  --dur-base: .56s;
  --dur-slow: .8s;
  --shadow-soft: 0 18px 54px rgba(4,48,106,.12);
  --shadow-card: 0 10px 34px rgba(4,48,106,.08);
  --shadow-lift: 0 24px 64px rgba(4,48,106,.18);

  /* obsah.html vars */
  --bg: #0f172a;
  --bg-soft: #111827;
  --panel: rgba(255,255,255,0.06);
  --white: #ffffff;
  --emerald: #34d399;
  --emerald-dark: #10b981;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --shadow: 0 20px 60px rgba(2, 6, 23, 0.18);
  --radius-xl: 28px;
  --radius-2xl: 36px;
}

/* ── RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(180deg, #f7fbff 0%, #eef4fb 42%, #f9fcff 100%);
  color: var(--ink);
  font-family: var(--font-ui);
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--orange); color: #fff; }

/* ── CONTAINER ─────────────────────────────────────── */
.container {
  width: min(var(--container-wide), calc(100% - 24px));
  margin: 0 auto;
}

/* ── SITE HEADER ──────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1010;
  border-bottom: 1px solid rgba(255,255,255,0);
  background: rgba(12,30,58,0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: all .4s ease;
}
.site-header.scrolled {
  border-bottom-color: rgba(255,255,255,.08);
  background: rgba(12,30,58,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .875rem 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .header-inner { padding: .875rem 2rem; } }

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.header-logo-svg {
  height: 2.5rem;
  width: auto;
  align-self: center;
}
@media (min-width: 768px) { .header-logo-svg { height: 3rem; } }
.header-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 4px;
}
.header-logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.header-logo-sub {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(255,255,255,.4);
  margin-top: -.05rem;
}

/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: .25rem;
}
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-link {
  padding: .5rem .875rem;
  border-radius: .75rem;
  font-size: .875rem;
  font-weight: 450;
  color: rgba(255,255,255,.55);
  transition: all .25s;
  text-decoration: none;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-link.active {
  color: #fff;
  border-bottom: 2px solid var(--nav-accent, var(--orange));
  border-radius: .75rem .75rem 0 0;
}
.nav-link[href="#benefits"]    { --nav-accent: var(--orange); }
.nav-link[href="#references"]  { --nav-accent: #06b6d4; }
.nav-link[href="#comparison"]  { --nav-accent: var(--orange2); }
.nav-link[href="#table"]       { --nav-accent: var(--orange); }
.nav-link[href="#expansion"]   { --nav-accent: #06b6d4; }
.nav-link[href="#contact"]     { --nav-accent: var(--success); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}
.header-cta {
  display: none;
  align-items: center;
  gap: .4rem;
  padding: .6rem 1.25rem;
  border-radius: .75rem;
  background: var(--orange);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .2s;
}
.header-cta svg { width: .9rem; height: .9rem; }
.header-cta:hover { background: #0288d1; transform: translateY(-1px); }
@media (min-width: 1024px) { .header-cta { display: inline-flex; } }

/* Burger (mobile) */
.fnav-burger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .75rem;
  cursor: pointer;
  color: #fff;
  transition: background .2s;
}
.fnav-burger:hover { background: rgba(255,255,255,.06); }
@media (min-width: 1024px) { .fnav-burger { display: none; } }
.fnav-burger-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.fnav-burger.is-open .fnav-burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fnav-burger.is-open .fnav-burger-bar:nth-child(2) { opacity: 0; }
.fnav-burger.is-open .fnav-burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.fnav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12,30,58,.45);
  backdrop-filter: blur(6px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.fnav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.fnav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 88vw);
  height: 100vh;
  height: 100dvh;
  background: #fff;
  z-index: 1020;
  transform: translateX(100%);
  transition: transform .4s var(--ease-standard);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
}
.fnav-drawer.is-open { transform: translateX(0); }

/* Drawer header — logo + close on same row */
.fnav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--slate-200);
  flex-shrink: 0;
}
.fnav-drawer-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.fnav-drawer-brand-svg {
  height: 2.2rem;
  width: auto;
}
.fnav-drawer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.fnav-brand-kicker {
  font-size: .55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--orange);
}
.fnav-brand-title {
  font-size: .95rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
}
.fnav-drawer-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--slate-200);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: background .2s;
}
.fnav-drawer-close:hover { background: var(--slate-100); }
.fnav-drawer-close svg { width: 18px; height: 18px; }

/* Drawer links */
.fnav-links {
  list-style: none;
  margin: 0;
  padding: 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  flex: 1;
}
.fnav-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem .75rem;
  border-radius: 12px;
  color: var(--ink);
  transition: background .2s;
  text-decoration: none;
}
.fnav-link:hover { background: var(--slate-50); }
.fnav-link-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--slate-50);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--orange);
}
.fnav-link-icon svg { width: 17px; height: 17px; }
.fnav-link-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: .9rem;
  font-weight: 600;
}
.fnav-link-desc {
  display: block;
  font-size: .7rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: .1rem;
}

/* Drawer CTA */
.fnav-drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin: 0 1rem .75rem;
  padding: .85rem 1.25rem;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}
.fnav-drawer-cta svg { width: 17px; height: 17px; }
.fnav-drawer-cta:hover { background: #0288d1; }

/* Drawer contact footer */
.fnav-drawer-contact {
  margin-top: auto;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  gap: .6rem;
  font-size: .8rem;
  color: var(--muted);
}
.fnav-drawer-contact a {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: var(--muted);
  transition: color .2s;
}
.fnav-drawer-contact a svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--orange);
}
.fnav-drawer-contact a:hover { color: var(--ink); }

/* ── HERO ──────────────────────────────────────────── */
#hero {
  background: linear-gradient(140deg, #05376c 0%, #0d2b57 54%, #08182f 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(6.5rem, 12vh, 10rem) 1.5rem clamp(6rem, 10vw, 8rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-glow,
.hero-ambient {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.hero-glow { border-radius: 50%; filter: blur(100px); }
.hero-glow-1 { width: 600px; height: 600px; background: rgba(3,169,244,.22); top: -100px; right: -100px; animation: glowFloat 15s ease-in-out infinite; }
.hero-glow-2 { width: 400px; height: 400px; background: rgba(3,169,244,.12); bottom: -50px; left: -80px; animation: glowFloat 19s ease-in-out infinite reverse; }
.hero-glow-3 { width: 480px; height: 480px; background: rgba(150,180,0,.11); top: 45%; left: 3%; animation: glowFloat 24s ease-in-out infinite 3s; }
.hero-glow-4 { width: 260px; height: 260px; background: rgba(239,125,0,.08); bottom: 20%; right: 8%; animation: glowFloat 21s ease-in-out infinite reverse 5s; }

.hero-ambient {
  inset: 0;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(3,169,244,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3,169,244,.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 56rem;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: #b4d53a;
  margin: 0 0 1.25rem;
}
.hero-eyebrow::before { display: none; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.025em;
  font-weight: 400;
  margin: .75rem 0 1.75rem;
  max-width: 100%;
}
.hero-accent { color: #03a9f4; font-weight: 700; }

.hero-lead {
  max-width: 38rem;
  margin: 0 0 2rem;
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(224,239,255,.78);
}

.hero-actions {
  display: flex;
  gap: .85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: .9rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
  transition: background var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast);
}
.btn-primary:hover { background: #0099d1; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(3,169,244,.35); }

.btn-secondary {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,.24);
  color: rgba(255,255,255,.84);
  padding: .9rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
}
.btn-secondary:hover { border-color: rgba(255,255,255,.6); color: #fff; background: rgba(255,255,255,.04); }

/* Hero stat cards */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.75rem;
  position: relative;
  z-index: 1;
}
.hero-pill {
  display: inline-flex;
  align-items: flex-start;
  gap: .45rem;
  padding: .55rem .9rem .55rem .6rem;
  border-radius: .75rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  line-height: 1.3;
  max-width: 240px;
}
.hero-pill strong {
  color: var(--orange);
  font-weight: 700;
  margin-right: .15rem;
}
.hero-pill-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--orange);
  opacity: .7;
  flex-shrink: 0;
  margin-top: .1rem;
}
.hero-pill-icon svg { width: 16px; height: 16px; }
.hero-pill-text { display: flex; flex-direction: column; gap: .1rem; text-align: left; }
.hero-pill-desc {
  display: block;
  width: 100%;
  font-size: .72rem;
  color: rgba(255,255,255,.85);
  font-weight: 400;
  line-height: 1.3;
}

@media (max-width: 639px) {
  .hero-pills {
    flex-direction: column;
    align-items: stretch;
    gap: .55rem;
    margin-top: 1.25rem;
    padding: 0 .25rem;
  }
  .hero-pill {
    white-space: normal;
    padding: .6rem .9rem;
    border-radius: .75rem;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.13);
    font-size: .82rem;
  }
  .hero-pill-icon {
    width: 28px;
    height: 28px;
    align-self: flex-start;
    margin-top: .1rem;
  }
  .hero-pill-icon svg { width: 20px; height: 20px; }
}

/* Hero architecture panel */
.panel-glass {
  margin-top: 2rem;
  width: 100%;
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(14px);
  padding: 3px;
}
.panel-inner {
  background: rgba(15,23,42,.88);
  border-radius: calc(var(--radius-xl) - 3px);
  padding: 1.5rem;
  color: #fff;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  text-align: left;
}
.eyebrow {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(209,250,229,0.8);
}
.panel-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: .25rem;
}
.icon-box {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .08em;
  flex-shrink: 0;
}

.stack { display: flex; flex-direction: column; gap: .75rem; }
.step {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: .85rem 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-soft);
  min-height: 56px;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .82rem;
  flex-shrink: 0;
  line-height: 1;
}
.step-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.step-title { font-weight: 700; font-size: .88rem; line-height: 1.3; }
.step-text { font-size: .78rem; color: rgba(255,255,255,.62); margin-top: .1rem; line-height: 1.4; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.28);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-hint svg { animation: bounce 3.1s ease-in-out infinite; }

/* ── TRUST ─────────────────────────────────────────── */
.trust {
  padding: 3rem 0;
  background: #fff;
}
.trust-heading {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  margin: 0 0 .5rem;
}
.trust-sub {
  text-align: center;
  font-size: .88rem;
  color: var(--muted);
  margin: 0 0 2rem;
}
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2rem;
}
.trust-grid img {
  height: 1.75rem;
  width: auto;
  max-width: 100%;
  transition: transform .6s ease;
}
.trust-grid img:hover {
  transform: scale(1.1);
}
@media (min-width: 768px) {
  .trust { padding: 4rem 0; }
  .trust-grid { gap: 2rem 3rem; }
  .trust-grid img { height: 2.1rem; }
}

/* ── CONTENT SECTIONS ──────────────────────────────── */
.content-section {
  padding: var(--section-space) 0;
}
.section-head {
  margin-bottom: 2.5rem;
}
.section-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--orange);
  margin-bottom: .5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0;
}
.section-text {
  color: var(--slate-600);
  font-size: .95rem;
  line-height: 1.7;
  margin-top: .75rem;
  max-width: 720px;
}

/* ── BENEFITS ──────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .6rem;
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 1rem 1.15rem;
  transition: box-shadow .3s, transform .3s;
  border-top: 3px solid transparent;
}
.benefit-card--blue  { --card-accent: var(--orange); }
.benefit-card--cyan  { --card-accent: #06b6d4; }
.benefit-card--lime  { --card-accent: var(--orange2); }
.benefit-card--blue,
.benefit-card--cyan,
.benefit-card--lime  { border-top-color: var(--card-accent); }
/* benefit-side: no effect on desktop */
.benefit-side { display: contents; }

@media (max-width: 859px) {
  .benefit-card {
    border-top: none;
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: .85rem;
  }
  .benefit-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    width: 135px;
  }
  .benefit-card .benefit-icon { margin-bottom: .4rem; }
  .benefit-card h3 { margin: 0; font-size: .85rem; line-height: 1.2; }
  .benefit-card p { margin: 0; flex: 1; }
  .benefit-card:nth-child(even) {
    flex-direction: row-reverse;
    border-left: none;
    border-right: 3px solid transparent;
  }
  .benefit-card--blue,
  .benefit-card--cyan,
  .benefit-card--lime { border-top-color: transparent; border-left-color: var(--card-accent); }
  .benefit-card--blue:nth-child(even),
  .benefit-card--cyan:nth-child(even),
  .benefit-card--lime:nth-child(even) { border-left-color: transparent; border-right-color: var(--card-accent); }
}
.benefit-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(3,169,244,.08);
  color: var(--orange);
}
.benefit-card--cyan .benefit-icon  { background: rgba(6,182,212,.08); color: #06b6d4; }
.benefit-card--lime .benefit-icon  { background: rgba(150,180,0,.08);  color: var(--orange2); }
.benefit-icon svg {
  width: 24px;
  height: 24px;
}
.benefit-card h3 {
  margin: 0 0 .5rem;
  font-size: 1.1rem;
  line-height: 1.25;
}
.benefit-card p {
  margin: 0;
  color: var(--slate-600);
  font-size: .88rem;
  line-height: 1.6;
}

/* ── REFERENCES (Phone carousel) ───────────────────── */
.references {
  padding: var(--section-space) 0;
  background: #fff;
}
.ref-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: var(--container-wide);
  margin-left: auto;
  margin-right: auto;
  padding: 0 12px;
}
.ref-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0;
  max-width: 460px;
}
.ref-sub {
  font-size: .9rem;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.75;
}

.ref-shell {
  border-radius: 10px;
  border: 1px solid rgba(4,48,106,.07);
  background: #fafafa;
  box-shadow: 0 1px 3px rgba(4,48,106,.04), 0 8px 24px rgba(4,48,106,.05);
  padding: clamp(16px, 2.5vw, 28px) clamp(20px, 3vw, 34px);
  overflow: hidden;
}

.ref-row {
  position: relative;
  overflow: hidden;
  padding: .5rem 0;
  --ref-duration: 30s;
  --ref-loop-distance: 50%;
  contain: layout style paint;
  will-change: transform;
}
.ref-row::before,
.ref-row::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(36px, 7vw, 92px);
  z-index: 2;
  pointer-events: none;
}
.ref-row::before { left: 0; background: linear-gradient(90deg, rgba(250,250,250,.98), rgba(250,250,250,0)); }
.ref-row::after { right: 0; background: linear-gradient(270deg, rgba(250,250,250,.98), rgba(250,250,250,0)); }

.ref-track {
  display: flex;
  gap: .85rem;
  width: max-content;
  align-items: stretch;
  will-change: transform;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
  contain: layout paint;
}
.ref-row.is-animated[data-direction="right"] .ref-track {
  animation: refScrollRight var(--ref-duration) linear infinite;
}
.ref-row.is-animated:hover .ref-track,
.ref-row.is-animated:focus-within .ref-track {
  animation-play-state: paused;
}

@keyframes refScrollRight {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(calc(-1 * var(--ref-loop-distance)),0,0); }
}

/* Mobile: full-width carousel, touch-scrollable */
@media (max-width: 859px) {
  .references { padding-left: 0; padding-right: 0; }
  .references .container { width: 100%; padding: 0; }
  .ref-head { padding: 0 1rem; }
  .ref-shell {
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 12px 0;
    box-shadow: none;
  }
  .ref-row { overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
  .ref-row.is-animated .ref-track { animation: none; }
  .ref-track { padding: 0 .75rem; }
  .phone { scroll-snap-align: start; }
  .ref-row::before, .ref-row::after { display: none; }
  .ref-cta { padding: 0 1rem; }
}

/* Phone card */
.phone {
  flex: 0 0 11rem;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
  contain: content;
}
.phone:hover { transform: translateY(-6px); }

.phone-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 19rem;
  overflow: hidden;
  border-radius: .6rem;
  border: 1px solid rgba(4,48,106,.08);
  background: #fff;
  box-shadow: 0 1px 4px rgba(4,48,106,.07);
}

.phone-statusbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .4rem .7rem .3rem;
  background: #fafafa;
  border-bottom: 1px solid rgba(4,48,106,.05);
  font-size: .58rem;
  font-weight: 700;
  color: rgba(2,52,68,.78);
}
.phone-statusbar-right { display: flex; align-items: center; gap: .25rem; }
.phone-statusbar-right svg { width: .75rem; height: .75rem; }

.phone-screen {
  position: relative;
  display: block;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: #f0f0f0;
}
.phone-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .35s ease;
}
.phone-screen:hover img { transform: scale(1.03); }

.phone-info {
  padding: .6rem .8rem .7rem;
  background: #fff;
  border-top: 1px solid rgba(4,48,106,.06);
}
.phone-title {
  display: block;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}
.phone-title:hover { color: var(--orange); }
.phone-info p {
  margin: .25rem 0 0;
  color: rgba(2,52,68,.66);
  font-size: .62rem;
  line-height: 1.5;
}
.phone-url {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .4rem;
  color: var(--orange);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
}
.phone-url svg { width: .74rem; height: .74rem; }
.phone-home {
  display: flex;
  justify-content: center;
  padding: .35rem 0 .45rem;
  background: #fafafa;
  border-top: 1px solid rgba(4,48,106,.05);
}
.phone-home-bar {
  width: 5.5rem;
  height: .25rem;
  border-radius: 0;
  background: rgba(4,48,106,.14);
}

/* CTA phone */
.phone-cta-screen {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem .8rem;
  text-align: center;
  background:
    radial-gradient(circle at 30% 24%, rgba(3,169,244,.12), transparent 36%),
    radial-gradient(circle at 70% 76%, rgba(4,48,106,.06), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,247,250,.96));
}
.phone-cta-screen h4 {
  margin: 0 0 .75rem;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.2;
}
.phone-cta-btn {
  display: inline-flex;
  padding: .5rem .9rem;
  border-radius: 4px;
  background: var(--orange);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.phone-cta-btn:hover { background: var(--primary-strong); transform: translateY(-1px); }

.ref-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  text-align: center;
}
.ref-cta-text {
  font-size: .95rem;
  color: var(--muted);
  margin: 0;
}
.ref-cta-text strong {
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  .ref-track, .phone, .phone-screen img { transition: none; }
  .ref-row.is-animated .ref-track { animation: none; }
}

/* ── FLIP (COUNTER) ───────────────────────────────── */
#flip {
  background: linear-gradient(180deg, #0d2b57 0%, #08182f 100%);
  padding: clamp(4.5rem, 7vw, 6.5rem) 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#flip .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
}
#flip .g1 {
  width: 600px;
  height: 600px;
  background: rgba(3,169,244,.18);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.flip-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}
.flip-eyebrow {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.25rem;
}
.flip-big {
  font-size: clamp(4.5rem, 15vw, 12rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -.04em;
  display: block;
  position: relative;
  text-shadow: 0 0 0 rgba(3,169,244,0);
}
.flip-big.counter-hit {
  will-change: transform, text-shadow;
  animation: counterPopGlow .56s cubic-bezier(.22,.84,.32,1) both;
}
.flip-big.counter-shine-early::after {
  content: "";
  position: absolute;
  top: 10%;
  left: -18%;
  width: 22%;
  height: 78%;
  pointer-events: none;
  opacity: 0;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.75), rgba(255,255,255,0));
  will-change: transform, opacity;
  animation: counterShine .48s linear forwards;
}
@keyframes counterPopGlow {
  0%   { transform: scale(1);     text-shadow: 0 0 0 rgba(3,169,244,0); }
  40%  { transform: scale(1.035); text-shadow: 0 0 10px rgba(3,169,244,.45), 0 0 24px rgba(3,169,244,.22); }
  100% { transform: scale(1);     text-shadow: 0 0 9px rgba(3,169,244,.36), 0 0 18px rgba(3,169,244,.18); }
}
@keyframes counterShine {
  0%   { opacity: 0;   transform: translate3d(0,0,0) skewX(-18deg); }
  20%  { opacity: .85; }
  100% { opacity: 0;   transform: translate3d(460%,0,0) skewX(-18deg); }
}
.flip-unit {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  color: rgba(255,255,255,.4);
  font-style: italic;
  font-weight: 300;
  margin-top: .25rem;
}
.flip-h2 {
  font-size: clamp(1.9rem, 4vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  margin: 1.8rem auto 1.15rem;
  max-width: 760px;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.flip-h2 em {
  display: block;
  margin-top: .35em;
  font-style: italic;
  color: var(--orange2);
  font-weight: 300;
}
.flip-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.4);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

/* ── COMPARISON (DARK) ─────────────────────────────── */
.comparison {
  background: var(--bg);
  color: #fff;
}
.comparison .section-eyebrow { color: var(--emerald); }
.comparison .section-title { color: #fff; }
.comparison .section-text { color: rgba(255,255,255,.68); }

.chart-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.chart-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}
.chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.chart-head h3 { margin: 0; font-size: 1.05rem; }
.chart-tag {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  background: rgba(255,255,255,.1);
  padding: .35rem .65rem;
  border-radius: 6px;
}

/* Radar chart */
.radar-wrap { width: 100%; }
.radar-svg text {
  font-size: 12px;
  fill: rgba(255,255,255,.78);
  font-weight: 600;
}
.radar-grid-line { fill: none; stroke: rgba(255,255,255,.12); stroke-width: 1; }
.radar-axis { stroke: rgba(255,255,255,.14); stroke-width: 1; }
.radar-market { fill: rgba(148,163,184,.18); stroke: #94a3b8; stroke-width: 2; }
.radar-ours { fill: rgba(52,211,153,.28); stroke: #34d399; stroke-width: 2; }
.legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: .78rem;
  color: rgba(255,255,255,.68);
}
.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: .4rem;
  vertical-align: middle;
}

/* Bar chart */
.bar-list { display: flex; flex-direction: column; gap: .85rem; }
.bar-label {
  font-size: .76rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-bottom: .3rem;
}
.bar-pair { display: flex; flex-direction: column; gap: .25rem; }
.bar-row {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.bar-row-label {
  flex-shrink: 0;
  width: 2.4rem;
  font-size: .58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: right;
}
.bar-row--market .bar-row-label { color: #94a3b8; }
.bar-row--ours .bar-row-label { color: var(--emerald); }
.bar-track {
  position: relative;
  flex: 1;
  height: 10px;
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 999px;
  width: 0;
  transition: width 1.2s cubic-bezier(.16,1,.3,1);
}
.bar-row--market .bar-fill { background: rgba(148,163,184,.45); }
.bar-row--ours .bar-fill { background: var(--emerald); }
.bar-val {
  flex-shrink: 0;
  width: 1.8rem;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
}
.bar-row--ours .bar-val { color: var(--emerald); }

/* Animate bars when visible */
.chart-card.visible .bar-fill { width: var(--bar-w); }

.bar-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.25rem;
  font-size: .75rem;
  color: rgba(255,255,255,.6);
}
.bar-legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: .4rem;
  vertical-align: middle;
}

/* Strategic highlight */
.highlight {
  margin-top: 2rem;
  background: linear-gradient(135deg, #064e3b, #0f766e);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.highlight .mini-eyebrow {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(209,250,229,0.8);
  font-weight: 700;
}
.highlight h3 {
  margin: .75rem 0 0;
  font-size: 1.3rem;
  line-height: 1.2;
}
.highlight p {
  margin: .75rem 0 0;
  color: rgba(236,253,245,0.86);
  font-size: .9rem;
  line-height: 1.6;
}

/* ── TABLE SECTION ─────────────────────────────────── */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Swipe hint (mobile) */
.cmp-swipe-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: .75rem;
  font-size: .78rem;
  color: var(--slate-500);
  font-weight: 500;
}
.cmp-swipe-hint svg { width: 1rem; height: 1rem; animation: swipeHint 1.5s ease-in-out infinite; }
@keyframes swipeHint { 0%,100%{transform:translateX(0)} 50%{transform:translateX(6px)} }

/* Table wrapper */
.cmp-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  background: #fff;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
  max-width: 100%;
}
.cmp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 56rem;
  font-size: .85rem;
}
.cmp-table th,
.cmp-table td {
  text-align: left;
  padding: 1rem 1.15rem;
  vertical-align: top;
  border-bottom: 1px solid var(--slate-200);
}
.cmp-table thead th {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  font-weight: 700;
  padding: .9rem 1.15rem;
  background: var(--bg);
  border-bottom: 3px solid var(--orange);
  position: relative;
}
.cmp-table thead th:first-child { border-radius: var(--radius-xl) 0 0 0; }
.cmp-table thead th:last-child { border-radius: 0 var(--radius-xl) 0 0; }
.cmp-table tbody tr { transition: background .25s; }
.cmp-table tbody tr:nth-child(odd) { background: #fff; }
.cmp-table tbody tr:nth-child(even) { background: var(--slate-50); }
.cmp-table tbody tr:hover { background: rgba(3,169,244,.04); }
.cmp-table tbody tr:last-child td { border-bottom: none; }

/* First column sticky on mobile */
.cmp-table th:first-child,
.cmp-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: inherit;
}
.cmp-table thead th:first-child { z-index: 3; background: var(--bg); }
.cmp-table tbody tr:nth-child(odd) td:first-child { background: #fff; }
.cmp-table tbody tr:nth-child(even) td:first-child { background: var(--slate-50); }
.cmp-table tbody tr:hover td:first-child { background: rgba(3,169,244,.04); }
.cmp-table tbody tr.featured td:first-child { background: #ecfdf5; }
/* subtle shadow on sticky col when scrolled */
.cmp-wrap.is-scrolled .cmp-table th:first-child,
.cmp-wrap.is-scrolled .cmp-table td:first-child {
  box-shadow: 4px 0 12px rgba(0,0,0,.06);
}

/* Highlighted row */
.cmp-table tbody tr.featured,
.cmp-table tbody tr.featured:nth-child(odd),
.cmp-table tbody tr.featured:nth-child(even),
.cmp-table tbody tr.featured:hover { background: #ecfdf5; }
.cmp-table .featured td {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.solution-name { font-weight: 700; white-space: nowrap; font-size: .9rem; color: var(--text); }
.badge {
  display: inline-flex;
  margin-top: .5rem;
  padding: .3rem .65rem;
  border-radius: 999px;
  background: #d1fae5;
  color: #047857;
  font-size: .65rem;
  font-weight: 700;
}
td.muted { color: var(--slate-600); }
.score-cell { min-width: 160px; }
.score-wrap { display: flex; align-items: center; gap: .75rem; }
.score-track {
  width: 100px;
  height: 8px;
  background: var(--slate-200);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}
.score-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--slate-500);
  transition: width 1s ease;
}
tr.featured .score-fill { background: var(--emerald-dark); }
.note {
  margin-top: 1rem;
  color: var(--slate-500);
  font-size: .82rem;
  line-height: 1.6;
}

/* Floating sticky header clone */
.cmp-float {
  position: fixed;
  left: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s;
  overflow: hidden;
  max-width: 100vw;
}
.cmp-float.visible { opacity: 1; pointer-events: auto; }
.cmp-float .cmp-table { min-width: 0; }
.cmp-float .cmp-table thead th {
  background: var(--bg);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  border-radius: 0 !important;
}

/* Mobile scrollbar + swipe hint */
@media (max-width: 1023px) {
  .cmp-swipe-hint { display: flex; }
  .cmp-wrap { border-radius: 1rem; }
  .cmp-wrap::-webkit-scrollbar { height: 10px; }
  .cmp-wrap::-webkit-scrollbar-track { background: var(--slate-100); border-radius: 5px; }
  .cmp-wrap::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 5px; min-width: 60px; }
  .cmp-wrap::-webkit-scrollbar-thumb:hover { background: var(--primary-strong); }
  .cmp-wrap { scrollbar-width: auto; scrollbar-color: var(--orange) var(--slate-100); }
}

/* ── EXPANSION ─────────────────────────────────────── */
#expansion {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.expansion-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.mini-card {
  border: 1px solid var(--slate-200);
  background: var(--slate-50);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  border-top: 3px solid transparent;
}
.mini-card--blue { --card-accent: var(--orange); }
.mini-card--cyan { --card-accent: #06b6d4; }
.mini-card--lime { --card-accent: var(--orange2); }
.mini-card--blue,
.mini-card--cyan,
.mini-card--lime { border-top-color: var(--card-accent); }
@media (max-width: 859px) {
  .mini-card { border-top: none; border-left: 3px solid transparent; }
  .mini-card:nth-child(even) {
    border-left: none;
    border-right: 3px solid transparent;
    text-align: right;
  }
  .mini-card:nth-child(even) .mini-card-head {
    flex-direction: row-reverse;
  }
  .mini-card--blue,
  .mini-card--cyan,
  .mini-card--lime { border-top-color: transparent; border-left-color: var(--card-accent); }
  .mini-card--blue:nth-child(even),
  .mini-card--cyan:nth-child(even),
  .mini-card--lime:nth-child(even) { border-left-color: transparent; border-right-color: var(--card-accent); }
}
.mini-card-head { display: flex; gap: .85rem; align-items: start; }
.mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(3,169,244,.08);
  color: var(--orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.mini-icon svg { width: 22px; height: 22px; }
.mini-card--cyan .mini-icon { background: rgba(6,182,212,.08); color: #06b6d4; }
.mini-card--lime .mini-icon { background: rgba(150,180,0,.08); color: var(--orange2); }
.mini-card h3 { margin: 0; font-size: 1.05rem; line-height: 1.2; }
.mini-card p { margin: .4rem 0 0; color: var(--slate-600); font-size: .85rem; }

/* ── DARK PANELS ───────────────────────────────────── */
.dark-panels {
  background: var(--bg);
  color: #fff;
  padding: var(--section-space) 0;
}
.dark-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.dark-card {
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}
.dark-card .benefit-icon { background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); margin-bottom: 1rem; }
.dark-card h3 { margin: 0; font-size: 1.15rem; line-height: 1.25; }
.dark-card p { margin: .75rem 0 0; color: rgba(255,255,255,.68); font-size: .88rem; line-height: 1.6; }

/* ── TEAM STRIP ───────────────────────────────────── */
.team-strip {
  background: #fff;
  padding: clamp(3.5rem, 6vw, 5rem) 1.5rem;
  text-align: center;
}
.team-strip h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 2.5rem;
}
.team-members {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  justify-items: center;
}
.team-member {
  text-align: center;
}
.team-photo {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(3,169,244,.14);
  filter: grayscale(.3);
  transition: filter .3s, border-color .3s, transform .3s;
  display: block;
  margin: 0 auto .75rem;
}
.team-member:hover .team-photo {
  filter: grayscale(0);
  border-color: var(--orange);
  transform: scale(1.05);
}
.team-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 .25rem;
}
.team-role {
  font-size: .72rem;
  color: var(--muted);
  margin: 0 0 .2rem;
  line-height: 1.4;
  letter-spacing: .05em;
}
.team-since {
  font-size: .75rem;
  color: var(--muted);
  margin: 0;
}
@media (min-width: 768px) {
  .team-members { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
  .team-photo { width: 10rem; height: 10rem; }
}

/* ── CONTACT / CTA ─────────────────────────────────── */
.contact-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 1.5rem;
  background: linear-gradient(135deg, #020617, #0f172a 42%, #064e3b 100%);
  color: #fff;
  box-shadow: var(--shadow);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.contact-wrap .section-eyebrow,
.contact-wrap .section-text { color: rgba(255,255,255,.72); }
.contact-wrap .section-title { color: #fff; }

/* Form wizard */
.form-wizard {
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  backdrop-filter: blur(14px);
}
.form-wizard h3 { margin: 0 0 .5rem; font-size: 1.15rem; }
.wizard-steps {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.wizard-step-dot {
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  transition: background .3s;
}
.wizard-step-dot.active { background: var(--orange); }
.wizard-step-dot.done { background: var(--success); }

.wizard-panel { display: none; }
.wizard-panel.active { display: block; }
.wizard-label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  margin-bottom: .75rem;
}

.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  display: inline-flex;
  padding: .55rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.80);
  font-size: .78rem;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  user-select: none;
}
.chip:hover { background: rgba(255,255,255,.12); }
.chip.selected {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.wizard-input {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.2);
  border-radius: var(--radius-soft);
  color: #fff;
  font-size: .88rem;
  font-family: var(--font-ui);
  margin-bottom: .75rem;
  outline: none;
  transition: border-color .2s;
}
.wizard-input::placeholder { color: rgba(255,255,255,.35); }
.wizard-input:focus { border-color: var(--orange); }

.wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  margin-top: 1.25rem;
}
.wizard-btn {
  padding: .7rem 1.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  border: none;
  transition: background .2s, transform .15s;
}
.wizard-btn--next { background: var(--orange); color: #fff; }
.wizard-btn--next:hover { background: #0099d1; transform: translateY(-1px); }
.wizard-btn--back { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.wizard-btn--back:hover { background: rgba(255,255,255,.15); }
.wizard-btn--submit { background: var(--success); color: #fff; }
.wizard-btn--submit:hover { background: #16a34a; }
.wizard-btn:disabled { opacity: .4; cursor: default; }

.wizard-success {
  text-align: center;
  padding: 2rem 0;
}
.wizard-success-icon {
  font-size: 2.5rem;
  margin-bottom: .75rem;
}

/* Contact details */
.contact-details {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
}
.contact-detail svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--orange);
  opacity: .8;
}
.contact-detail a {
  color: rgba(255,255,255,.72);
  transition: color .2s;
}
.contact-detail a:hover { color: #fff; }

/* ── FOOTER ────────────────────────────────────────── */
.site-footer {
  background: var(--bg);
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 2rem 1rem;
  font-size: .78rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.site-footer a { color: var(--orange); }

/* ── BACK TO TOP ───────────────────────────────────── */
.back-top-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(3,169,244,.35);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.back-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-top-btn:hover { transform: translateY(-3px); }
.back-top-btn svg { width: 18px; height: 18px; }

/* ── REVEAL ANIMATION ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease-standard), transform .7s var(--ease-standard);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

/* ── KEYFRAMES ─────────────────────────────────────── */
@keyframes glowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -20px) scale(1.05); }
  66%      { transform: translate(-20px, 15px) scale(0.95); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: .3; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .container { width: min(var(--container-wide), calc(100% - 32px)); }

  .hero-pills { gap: .65rem; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .benefit-card { padding: 1.5rem; }
  .mini-grid { grid-template-columns: repeat(2, 1fr); }
  .dark-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { padding: 2rem; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — Small Desktop
   ══════════════════════════════════════════════════════ */
@media (min-width: 860px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .chart-grid { grid-template-columns: repeat(2, 1fr); }
  .dark-grid { grid-template-columns: repeat(3, 1fr); }
  .expansion-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; }
  .contact-wrap { padding: 2.5rem; border-radius: var(--radius-2xl); }

  .hero-title { font-size: clamp(2rem, 4.5vw, 3.8rem); }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — Desktop
   ══════════════════════════════════════════════════════ */
@media (min-width: 1100px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .benefit-card, .dark-card, .mini-card, .chart-card { padding: 1.75rem; }
  .contact-wrap { padding: 2.75rem; }
}

/* ══════════════════════════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════════════════════════ */
.cookie-banner {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: var(--bg); border-top: 2px solid var(--orange);
  box-shadow: 0 -4px 30px rgba(0,0,0,.4);
}
.cookie-banner.visible { display: block; }
.cookie-banner-inner {
  max-width: var(--container-wide); margin: 0 auto; padding: 1.25rem 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
@media (min-width: 768px) { .cookie-banner-inner { flex-direction: row; align-items: center; padding: 1.5rem 2rem; } }
.cookie-banner h4 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: .25rem; }
.cookie-banner p { font-size: .85rem; color: var(--slate-300); line-height: 1.5; }
.cookie-banner p a { color: var(--orange); text-decoration: underline; }
.cookie-banner p a:hover { color: var(--primary-strong); }
.cookie-btns { display: flex; flex-wrap: nowrap; gap: .5rem; flex-shrink: 0; width: 100%; }
@media (min-width: 768px) { .cookie-btns { width: auto; } }

.cookie-btn {
  padding: .6rem 1.25rem; font-size: .85rem; border-radius: 2rem; font-weight: 500;
  cursor: pointer; border: none; white-space: nowrap; text-align: center;
  transition: background .2s, transform .2s; flex: 1;
}
@media (min-width: 768px) { .cookie-btn { flex: none; } }
.cookie-btn--primary { background: var(--orange); color: #fff; }
.cookie-btn--primary:hover { background: var(--primary-strong); transform: translateY(-1px); }
.cookie-btn--outline { background: transparent; color: var(--slate-200); border: 1px solid rgba(255,255,255,.2); }
.cookie-btn--outline:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* ── MODAL SHARED ── */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 310; overflow-y: auto; }
.modal-overlay.visible { display: block; }
.modal-bg { position: fixed; inset: 0; background: rgba(0,0,0,.6); }
.modal-center { display: flex; min-height: 100vh; align-items: center; justify-content: center; padding: 1rem; }
.modal-box {
  position: relative; background: var(--bg-soft); border-radius: var(--radius-card);
  box-shadow: 0 20px 60px rgba(0,0,0,.5); max-width: 42rem; width: 100%;
  border: 1px solid rgba(255,255,255,.08);
}
.modal-header {
  background: var(--slate-800); padding: 1.25rem 1.75rem;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  display: flex; align-items: center; justify-content: space-between;
}
.modal-header h3 { font-size: 1.25rem; font-weight: 700; color: #fff; }
.modal-close { color: var(--slate-300); transition: color .2s; background: none; border: none; cursor: pointer; }
.modal-close:hover { color: #fff; }
.modal-close svg { width: 1.5rem; height: 1.5rem; }
.modal-body { padding: 1.75rem; max-height: 70vh; overflow-y: auto; }
.modal-footer {
  background: rgba(255,255,255,.03); padding: 1rem 1.75rem;
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  display: flex; justify-content: flex-end; gap: .75rem;
}

/* ── COOKIE SETTINGS MODAL ── */
.cookie-category { padding-bottom: 1.25rem; margin-bottom: 1.25rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.cookie-category:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.cookie-cat-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .35rem; }
.cookie-cat-header h4 { font-size: 1rem; font-weight: 600; color: #fff; }
.cookie-badge { padding: .2rem .6rem; font-size: .75rem; background: rgba(255,255,255,.08); color: var(--slate-300); border-radius: 1rem; font-weight: 500; }
.cookie-category p { font-size: .85rem; color: var(--slate-300); line-height: 1.5; }

/* ── Toggle switch ── */
.cookie-toggle { position: relative; display: inline-flex; width: 2.75rem; height: 1.5rem; cursor: pointer; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute; inset: 0; background: var(--slate-600); border-radius: 1rem; transition: background .3s;
}
.cookie-toggle-slider::before {
  content: ''; position: absolute; top: 2px; left: 2px; width: 1.25rem; height: 1.25rem;
  background: #fff; border-radius: 50%; transition: transform .3s;
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--orange); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(1.25rem); }

/* ── GDPR MODAL ── */
.gdpr-content h4 { font-size: 1rem; font-weight: 600; color: #fff; margin-top: 1.5rem; margin-bottom: .5rem; }
.gdpr-content p { font-size: .875rem; color: var(--slate-300); line-height: 1.6; margin-bottom: .75rem; }
.gdpr-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: .75rem; }
.gdpr-content li { font-size: .875rem; color: var(--slate-300); line-height: 1.6; margin-bottom: .25rem; }
.gdpr-content strong { color: var(--slate-100); }
.gdpr-content a { color: var(--orange); text-decoration: underline; }
.gdpr-content a:hover { color: var(--primary-strong); }

/* ── Footer cookie link ── */
.footer-cookie-link { color: var(--slate-500); text-decoration: underline; font-size: .8rem; margin-left: 1rem; }
.footer-cookie-link:hover { color: var(--slate-300); }
