/* ============================================================
   Batikal — site vitrine
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; overflow-x: hidden; }

/* ============================================================
   Scroll progress bar
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: var(--p, 0%);
  background: linear-gradient(90deg, #6ba0e0 0%, #4277b9 50%, #2c5aa0 100%);
  box-shadow: 0 0 10px rgba(66, 119, 185, 0.6);
  z-index: 100;
  transition: width .15s ease-out;
  pointer-events: none;
}

/* ============================================================
   Cursor follow blob (hero)
   ============================================================ */
.cursor-blob {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 119, 185, 0.45) 0%, rgba(107, 160, 224, 0.20) 35%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  transform: translate3d(var(--cx, 50%), var(--cy, 50%), 0) translate(-50%, -50%);
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
  opacity: 0;
  will-change: transform;
}
.cursor-blob.is-active { opacity: 1; }

/* Hero decorative shapes (parallax layers) */
.hero-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.55;
  will-change: transform;
}
.hero-shape svg { width: 100%; height: 100%; display: block; }
.hero-shape-1 {
  width: 240px; height: 240px;
  top: 60px; right: 8%;
  animation: spin-slow 60s linear infinite;
}
.hero-shape-2 {
  width: 180px; height: 180px;
  bottom: 80px; left: 5%;
  opacity: 0.35;
}
@keyframes spin-slow {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob { animation: none !important; }
}

:root {
  --c-primary: #4277b9;
  --c-primary-dark: #2c5aa0;
  --c-primary-darker: #1e3a6b;
  --c-primary-soft: rgba(66, 119, 185, 0.08);
  --c-primary-softer: rgba(66, 119, 185, 0.04);
  --c-text: #0a1628;
  --c-text-2: #334155;
  --c-muted: #64748b;
  --c-muted-2: #94a3b8;
  --c-bg: #ffffff;
  --c-bg-alt: #f8fafc;
  --c-bg-deep: #050b18;
  --c-border: #e2e8f0;
  --c-border-strong: #cbd5e1;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
  --shadow-xl: 0 40px 100px -20px rgba(15, 23, 42, 0.30);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --container: 1200px;
  --header-h: 72px;

  --grad-primary: linear-gradient(135deg, #5a8fd0 0%, #2c5aa0 100%);
  --grad-text: linear-gradient(135deg, #4277b9 0%, #6ba0e0 100%);

  /* feature accent palette */
  --c-orange: #f97316;
  --c-cyan: #06b6d4;
  --c-emerald: #10b981;
  --c-rose: #f43f5e;
  --c-violet: #8b5cf6;
  --c-amber: #f59e0b;
  --c-blue: #3b82f6;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 { color: var(--c-text); margin: 0 0 0.5em; line-height: 1.15; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.25rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.85rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; color: var(--c-text-2); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

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

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 16px; height: 16px; }
.btn-sm { padding: 9px 16px; font-size: 0.875rem; border-radius: 10px; }
.btn-lg { padding: 16px 28px; font-size: 1rem; border-radius: 14px; }

.btn-primary {
  background: linear-gradient(135deg, #5a8fd0 0%, #2c5aa0 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(66, 119, 185, 0.42), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(66, 119, 185, 0.50), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-ghost {
  background: rgba(66, 119, 185, 0.04);
  color: var(--c-primary-dark);
  border-color: rgba(66, 119, 185, 0.20);
}
.btn-ghost:hover { background: var(--c-primary-soft); border-color: rgba(66, 119, 185, 0.40); }
.btn-on-dark { box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); }

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--c-border);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.92);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-name { font-weight: 800; font-size: 1.3rem; letter-spacing: -0.025em; }

.nav { display: flex; align-items: center; gap: 28px; margin-left: 32px; }
.nav a {
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--c-text-2);
  transition: color .15s ease;
}
.nav a:hover { color: var(--c-primary-dark); }

.header-cta { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.nav-link-muted { font-weight: 500; font-size: 0.94rem; color: var(--c-muted); }
.nav-link-muted:hover { color: var(--c-text); }

.menu-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 8px 10px;
  width: 42px; height: 42px;
}
.menu-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--c-text);
  margin: 3px auto;
  transition: transform .25s ease, opacity .25s ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--c-border);
  background: #fff;
}
.mobile-nav a {
  padding: 12px 4px;
  font-weight: 500;
  color: var(--c-text-2);
  border-bottom: 1px solid var(--c-border);
}
.mobile-nav a.btn { border-bottom: none; margin-top: 12px; justify-content: center; color: #fff; }

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  padding: 96px 0 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #fff 0%, #f4f8fd 100%);
  z-index: -1;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}
.blob-1 {
  width: 540px; height: 540px;
  top: -180px; right: -120px;
  background: radial-gradient(circle, #6ba0e0, transparent 70%);
  animation: float-1 14s ease-in-out infinite;
}
.blob-2 {
  width: 460px; height: 460px;
  bottom: -160px; left: -80px;
  background: radial-gradient(circle, #a8c4e8, transparent 70%);
  animation: float-2 18s ease-in-out infinite;
}
.blob-3 {
  width: 360px; height: 360px;
  top: 40%; left: 35%;
  background: radial-gradient(circle, #c8e0fb, transparent 70%);
  opacity: 0.4;
  animation: float-3 22s ease-in-out infinite;
}
@keyframes float-1 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-30px, 20px); }
}
@keyframes float-2 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(40px, -30px); }
}
@keyframes float-3 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(20px, 40px); }
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 75%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--c-primary-dark);
  background: rgba(66, 119, 185, 0.10);
  border: 1px solid rgba(66, 119, 185, 0.18);
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}
.eyebrow svg { width: 14px; height: 14px; }
.eyebrow-static { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; }

.hero-content h1 { margin-bottom: 22px; position: relative; }
.hero-h1 {
  font-size: clamp(2.5rem, 5.8vw, 4.75rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
  font-weight: 900;
}
.h1-stroke {
  position: absolute;
  top: -0.15em;
  right: -0.05em;
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(66, 119, 185, 0.18);
  text-stroke: 1.5px rgba(66, 119, 185, 0.18);
  pointer-events: none;
  z-index: -1;
  transform: rotate(-3deg);
  user-select: none;
}
@media (max-width: 980px) {
  .h1-stroke { display: none; }
}
.hero-sub {
  font-size: 1.18rem;
  color: var(--c-text-2);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero-sub strong { color: var(--c-text); font-weight: 700; }

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.platforms {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text-2);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--c-border);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.platform svg { width: 14px; height: 14px; color: var(--c-primary-dark); }

.hero-trust { display: flex; align-items: center; gap: 14px; }
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  border: 2px solid #fff;
  margin-left: -10px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-text { font-size: 0.88rem; color: var(--c-muted); }
.trust-text strong { color: var(--c-text); font-weight: 600; }

/* ============================================================
   Hero visual : browser + phone mockups
   ============================================================ */

.hero-visual {
  position: relative;
  min-height: 540px;
  perspective: 1500px;
}

.browser {
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 50px 100px -20px rgba(15, 23, 42, 0.30),
    0 30px 60px -30px rgba(15, 23, 42, 0.30),
    0 0 0 1px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  transform: rotateY(-6deg) rotateX(3deg);
  transform-origin: 100% 50%;
  transition: transform .5s ease;
  width: 100%;
}
.browser:hover { transform: rotateY(-3deg) rotateX(1deg); }
.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8fafc;
  border-bottom: 1px solid var(--c-border);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots i {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #cbd5e1;
}
.browser-dots i:nth-child(1) { background: #ef4444; }
.browser-dots i:nth-child(2) { background: #f59e0b; }
.browser-dots i:nth-child(3) { background: #22c55e; }
.browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 7px;
  padding: 6px 12px;
  font-size: 0.78rem;
  color: var(--c-muted);
  font-family: 'JetBrains Mono', monospace;
}
.browser-url svg { width: 13px; height: 13px; color: var(--c-muted-2); }
.browser-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 380px;
}

/* Sidebar */
.app-sidebar {
  background: #fafbfc;
  border-right: 1px solid var(--c-border);
  padding: 18px 12px;
}
.app-brand {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px 18px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-text);
}
.app-brand-mark {
  width: 24px; height: 24px;
  border-radius: 7px;
  background: var(--grad-primary);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
}
.app-nav-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--c-muted-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 8px 8px;
}
.app-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  font-size: 0.85rem;
  color: var(--c-text-2);
  border-radius: 8px;
  margin-bottom: 2px;
  font-weight: 500;
}
.app-nav-item.is-active {
  background: rgba(66, 119, 185, 0.10);
  color: var(--c-primary-dark);
  font-weight: 600;
}
.ic {
  width: 16px; height: 16px;
  border-radius: 4px;
  flex-shrink: 0;
  display: inline-block;
  background: currentColor;
  opacity: 0.55;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.is-active .ic { opacity: 1; }
.ic-flame { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M12 3c4 5 6 8 6 11a6 6 0 1 1-12 0c0-3 2-6 6-11z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M12 3c4 5 6 8 6 11a6 6 0 1 1-12 0c0-3 2-6 6-11z'/></svg>"); }
.ic-drop { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M7 13c0-3 5-8 5-8s5 5 5 8a5 5 0 1 1-10 0z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M7 13c0-3 5-8 5-8s5 5 5 8a5 5 0 1 1-10 0z'/></svg>"); }
.ic-radiator { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M5 4h14v16H5zM8 4v16M12 4v16M16 4v16'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M5 4h14v16H5zM8 4v16M12 4v16M16 4v16'/></svg>"); }
.ic-air { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><circle cx='12' cy='12' r='3'/><path d='M12 3v3M12 18v3M3 12h3M18 12h3'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><circle cx='12' cy='12' r='3'/><path d='M12 3v3M12 18v3M3 12h3M18 12h3'/></svg>"); }
.ic-pipe { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M3 12c3-4 6-4 9 0s6 4 9 0'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M3 12c3-4 6-4 9 0s6 4 9 0'/></svg>"); }

/* App main */
.app-main { padding: 18px 22px; }
.app-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.app-title { font-size: 1.05rem; font-weight: 700; margin: 0; color: var(--c-text); }
.app-badge {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--c-emerald);
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 4px 10px;
  border-radius: 999px;
}
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.app-input {
  background: #fafbfc;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 10px 12px;
}
.app-input label {
  display: block;
  font-size: 0.7rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 4px;
}
.app-input-val { font-size: 0.95rem; font-weight: 700; color: var(--c-text); }
.app-input-val small { color: var(--c-muted); font-weight: 500; font-size: 0.78rem; margin-left: 2px; }

.app-chart {
  background: linear-gradient(135deg, rgba(66,119,185,0.04), rgba(66,119,185,0.01));
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.app-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.app-chart-head > span:first-child { font-size: 0.78rem; color: var(--c-muted); font-weight: 600; }
.app-chart-tot { font-size: 1.1rem; font-weight: 800; color: var(--c-primary-dark); }
.app-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 90px;
}
.app-bar {
  flex: 1;
  background: linear-gradient(180deg, #6ba0e0, #2c5aa0);
  border-radius: 4px 4px 0 0;
  height: var(--h);
  position: relative;
  transition: filter .2s ease;
}
.app-bar:hover { filter: brightness(1.1); }
.app-bar span {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: var(--c-muted);
  white-space: nowrap;
}

.app-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 22px;
}
.app-result {
  background: linear-gradient(135deg, rgba(66,119,185,0.08), rgba(66,119,185,0.02));
  border: 1px solid rgba(66, 119, 185, 0.20);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: left;
}
.app-result-label {
  display: block;
  font-size: 0.65rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 4px;
}
.app-result-val { font-size: 1.15rem; font-weight: 800; color: var(--c-primary-dark); }
.app-result-val small { font-size: 0.7rem; color: var(--c-muted); font-weight: 500; margin-left: 2px; }

/* Phone mockup */
.phone {
  position: absolute;
  bottom: -50px;
  right: -30px;
  width: 200px;
  height: 410px;
  background: #0a1628;
  border-radius: 36px;
  padding: 8px;
  box-shadow:
    0 50px 80px -20px rgba(15, 23, 42, 0.45),
    0 0 0 1.5px rgba(255, 255, 255, 0.05);
  transform: rotate(6deg);
  transition: transform .5s ease;
  z-index: 3;
}
.phone:hover { transform: rotate(2deg); }
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 22px;
  background: #0a1628;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 14px 22px 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-text);
}
.phone-status-icons { display: flex; gap: 4px; align-items: center; }
.phone-status-icons svg { width: 16px; height: 10px; }
.phone-app { padding: 28px 18px 0; }
.phone-title { font-size: 1.05rem; font-weight: 800; color: var(--c-text); }
.phone-sub { font-size: 0.78rem; color: var(--c-muted); margin-bottom: 16px; }
.phone-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  font-size: 0.78rem;
  color: var(--c-text-2);
}
.phone-card strong { color: var(--c-text); font-weight: 700; }
.phone-card-accent {
  background: linear-gradient(135deg, rgba(16,185,129,0.10), rgba(16,185,129,0.04));
  border-color: rgba(16,185,129,0.30);
}
.phone-card-accent strong { color: var(--c-emerald); }
.phone-cta {
  margin-top: 14px;
  text-align: center;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(66, 119, 185, 0.30);
}

/* Floating chips */
.floating-chip {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  display: flex; align-items: center; gap: 10px;
  z-index: 4;
  border: 1px solid var(--c-border);
}
.chip-1 {
  top: 60px; left: -30px;
  animation: chip-bob 4s ease-in-out infinite;
}
.chip-1 i {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #10b981, #047857);
  display: inline-flex;
  flex-shrink: 0;
}
.chip-1 i::after {
  content: '';
  display: block;
  width: 14px; height: 8px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg);
  margin: 11px auto 0;
}
.chip-title { font-size: 0.82rem; font-weight: 700; color: var(--c-text); line-height: 1.2; }
.chip-sub { font-size: 0.7rem; color: var(--c-muted); }
.chip-2 {
  bottom: 70px; left: -50px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  animation: chip-bob 5s ease-in-out infinite;
  animation-delay: -2s;
}
.chip-2 strong { font-size: 1rem; color: var(--c-primary-dark); font-weight: 800; }
.chip-2 span { font-size: 0.72rem; color: var(--c-muted); }
@keyframes chip-bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================================
   Stats strip
   ============================================================ */

.stats {
  padding: 56px 0;
  background: #0a1628;
  background:
    radial-gradient(circle at 80% 50%, rgba(66, 119, 185, 0.30), transparent 60%),
    radial-gradient(circle at 0% 50%, rgba(66, 119, 185, 0.20), transparent 50%),
    linear-gradient(135deg, #0a1628 0%, #050b18 100%);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat { text-align: center; }
.stat-num {
  font-size: 3.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, #6ba0e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: rgba(255, 255, 255, 0.65); font-size: 0.92rem; font-weight: 500; }

/* ============================================================
   Sections
   ============================================================ */

.section { padding: 112px 0; }
.section-alt { background: var(--c-bg-alt); }

.section-head {
  max-width: 780px;
  margin: 0 auto 68px;
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 16px; }
.section-lead { font-size: 1.1rem; color: var(--c-muted); }

.grid { display: grid; gap: 24px; }

/* ============================================================
   Features
   ============================================================ */

.features { grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 18px;
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent, transparent) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(66, 119, 185, 0.30);
}
.feature:hover::before { opacity: 0.05; }
.feature-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  box-shadow: 0 8px 20px var(--icon-shadow, rgba(66, 119, 185, 0.25));
}
.feature-icon svg { width: 26px; height: 26px; }
.icon-c1 { background: linear-gradient(135deg, #fb923c, #ea580c); --icon-shadow: rgba(234, 88, 12, 0.30); }
.icon-c2 { background: linear-gradient(135deg, #22d3ee, #0891b2); --icon-shadow: rgba(8, 145, 178, 0.30); }
.icon-c3 { background: linear-gradient(135deg, #a78bfa, #7c3aed); --icon-shadow: rgba(124, 58, 237, 0.30); }
.icon-c4 { background: linear-gradient(135deg, #f472b6, #db2777); --icon-shadow: rgba(219, 39, 119, 0.30); }
.icon-c5 { background: linear-gradient(135deg, #60a5fa, #2563eb); --icon-shadow: rgba(37, 99, 235, 0.30); }
.icon-c6 { background: linear-gradient(135deg, #34d399, #059669); --icon-shadow: rgba(5, 150, 105, 0.30); }
.icon-c7 { background: linear-gradient(135deg, #fbbf24, #d97706); --icon-shadow: rgba(217, 119, 6, 0.30); }
.icon-c8 { background: linear-gradient(135deg, #f87171, #b91c1c); --icon-shadow: rgba(185, 28, 28, 0.30); }
.icon-c9 { background: linear-gradient(135deg, #5a8fd0, #2c5aa0); --icon-shadow: rgba(44, 90, 160, 0.30); }

.feature h3 { margin-bottom: 8px; font-size: 1.18rem; font-weight: 700; }
.feature p { margin: 0 0 16px; font-size: 0.94rem; color: var(--c-muted); line-height: 1.55; }
.feature-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.feature-tags li {
  font-size: 0.74rem;
  color: var(--c-muted);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 500;
}

/* ============================================================
   Comment ça marche (steps)
   ============================================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 90px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-border) 0, var(--c-border) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}
.step {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  z-index: 1;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(66, 119, 185, 0.30);
}
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { font-size: 0.94rem; color: var(--c-muted); margin-bottom: 22px; }
.step-visual {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 14px;
}
.step-visual-1 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sv-pill {
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--c-border);
  color: var(--c-muted);
  font-weight: 500;
}
.sv-pill.sv-active {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(66, 119, 185, 0.30);
}
.step-visual-2 .sv-row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--c-border);
}
.step-visual-2 .sv-row:last-child { border-bottom: none; }
.step-visual-2 .sv-row span { color: var(--c-muted); }
.step-visual-2 .sv-row strong { color: var(--c-text); font-weight: 700; }
.step-visual-3 { display: flex; align-items: center; gap: 10px; }
.sv-result {
  flex: 1;
  background: linear-gradient(135deg, rgba(66,119,185,0.10), rgba(66,119,185,0.02));
  border: 1px solid rgba(66, 119, 185, 0.20);
  border-radius: 10px;
  padding: 10px 12px;
}
.sv-result span { display: block; font-size: 0.7rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.sv-result strong { font-size: 1.2rem; font-weight: 800; color: var(--c-primary-dark); }
.sv-pdf {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem;
  color: var(--c-emerald);
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 600;
}
.sv-pdf svg { width: 16px; height: 16px; }

/* ============================================================
   USP
   ============================================================ */

.usp { grid-template-columns: repeat(4, 1fr); }
.usp-item {
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--c-border);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.usp-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(66, 119, 185, 0.30); }
.usp-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(66, 119, 185, 0.12), rgba(66, 119, 185, 0.04));
  color: var(--c-primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.usp-ic svg { width: 22px; height: 22px; }
.usp-item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.usp-item p { margin: 0; font-size: 0.94rem; color: var(--c-muted); line-height: 1.55; }

/* ============================================================
   Testimonials
   ============================================================ */

.section-quotes { background: linear-gradient(180deg, #fff 0%, #f8fafc 100%); }
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 18px;
  padding: 32px 28px;
  margin: 0;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.quote:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.quote-mark {
  position: absolute;
  top: -14px;
  left: 24px;
  width: 40px; height: 40px;
  color: var(--c-primary);
  background: #fff;
  padding: 4px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
}
.quote blockquote {
  margin: 8px 0 24px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-text);
  font-weight: 500;
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
}
.ava {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.quote figcaption strong { display: block; color: var(--c-text); font-size: 0.92rem; }
.quote figcaption span { font-size: 0.82rem; color: var(--c-muted); }

/* ============================================================
   Pricing card
   ============================================================ */

.pricing-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--c-border);
  padding: 64px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pricing-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob-p1 {
  width: 360px; height: 360px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, #6ba0e0, transparent 70%);
  opacity: 0.45;
}
.blob-p2 {
  width: 280px; height: 280px;
  bottom: -80px; left: -60px;
  background: radial-gradient(circle, #c8e0fb, transparent 70%);
  opacity: 0.55;
}
.pricing-content { position: relative; max-width: 720px; z-index: 1; }
.pricing-content h2 { margin-bottom: 14px; }
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}
.pricing-list li {
  position: relative;
  padding-left: 32px;
  color: var(--c-text-2);
  font-weight: 500;
  font-size: 0.95rem;
}
.pricing-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad-primary);
  box-shadow: 0 4px 10px rgba(66, 119, 185, 0.30);
}
.pricing-list li::after {
  content: '';
  position: absolute;
  left: 7px; top: 11px;
  width: 8px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.pricing-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   Final CTA
   ============================================================ */

.cta-final {
  position: relative;
  padding: 120px 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a6b 0%, #050b18 100%);
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.blob-c1 {
  width: 500px; height: 500px;
  top: -160px; right: -100px;
  background: radial-gradient(circle, rgba(66, 119, 185, 0.55), transparent 70%);
  filter: blur(60px);
  opacity: 1;
  animation: float-1 16s ease-in-out infinite;
}
.blob-c2 {
  width: 400px; height: 400px;
  bottom: -120px; left: -80px;
  background: radial-gradient(circle, rgba(107, 160, 224, 0.40), transparent 70%);
  filter: blur(60px);
  opacity: 1;
  animation: float-2 20s ease-in-out infinite;
}
.cta-final h2 { color: #fff; margin-bottom: 14px; font-size: clamp(2rem, 4vw, 3rem); }
.cta-final p { color: rgba(255, 255, 255, 0.78); margin-bottom: 36px; font-size: 1.15rem; }
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-final .container { position: relative; z-index: 2; }

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: #0a1628;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 72px;
}
.brand-on-dark .brand-name { color: #fff; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-tagline { color: rgba(255, 255, 255, 0.55); font-size: 0.95rem; max-width: 360px; line-height: 1.55; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  transition: color .15s ease;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-made { color: rgba(255, 255, 255, 0.35); }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1100px) {
  .hero { padding: 72px 0 96px; }
  .hero-inner { gap: 48px; }
  .browser-body { grid-template-columns: 150px 1fr; }
  .phone { width: 170px; height: 350px; right: -10px; bottom: -30px; }
  .hero-shape-1 { width: 180px; height: 180px; right: 4%; }
  .hero-shape-2 { width: 140px; height: 140px; }
}

@media (max-width: 980px) {
  .hero { padding: 56px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { min-height: 460px; max-width: 580px; margin: 0 auto; width: 100%; }
  .browser { transform: rotateY(0); }
  .browser-body { grid-template-columns: 160px 1fr; }
  .hero-shape-1, .hero-shape-2 { display: none; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .usp { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .quotes { grid-template-columns: 1fr; }
  .pricing-card { padding: 48px 36px; }
  .pricing-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .marquee-track span { font-size: 1.1rem; }
  .marquee-track { gap: 28px; }
  .section { padding: 88px 0; }
  .section-head { margin-bottom: 48px; }
}

@media (max-width: 720px) {
  :root { --header-h: 60px; }
  .container { padding: 0 18px; }
  .nav, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .mobile-nav.is-open { display: flex; }

  .hero { padding: 48px 0 72px; }
  .hero-content h1, .hero-h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero-sub { font-size: 1rem; margin-bottom: 24px; }
  .hero-cta { gap: 8px; }
  .hero-cta .btn { flex: 1; min-width: 0; }
  .hero-cta .btn-lg { padding: 14px 18px; font-size: 0.95rem; }
  .platforms { gap: 6px; }
  .platform { font-size: 0.78rem; padding: 5px 10px; }
  .hero-trust { gap: 10px; }
  .trust-text { font-size: 0.82rem; }
  .trust-avatars span { width: 30px; height: 30px; font-size: 0.7rem; }

  .hero-visual { min-height: 360px; }
  .browser-body { grid-template-columns: 100px 1fr; min-height: 300px; }
  .app-sidebar { padding: 12px 6px; }
  .app-brand { padding: 4px 6px 12px; font-size: 0.85rem; }
  .app-brand-mark { width: 20px; height: 20px; font-size: 0.7rem; }
  .app-nav-label { padding: 0 6px 6px; font-size: 0.65rem; }
  .app-nav-item { padding: 6px 6px; font-size: 0.74rem; gap: 6px; }
  .app-nav-item .ic { width: 14px; height: 14px; }
  .app-main { padding: 12px; }
  .app-topbar { margin-bottom: 12px; }
  .app-title { font-size: 0.92rem; }
  .app-badge { font-size: 0.62rem; padding: 3px 8px; }
  .app-grid { gap: 6px; margin-bottom: 12px; }
  .app-input { padding: 8px 10px; }
  .app-input label { font-size: 0.62rem; }
  .app-input-val { font-size: 0.86rem; }
  .app-chart { padding: 12px; margin-bottom: 14px; }
  .app-bars { height: 70px; gap: 4px; }
  .app-results { grid-template-columns: 1fr 1fr; gap: 6px; padding-top: 18px; }
  .app-result { padding: 8px 10px; }
  .app-result:last-child { display: none; }
  .app-result-val { font-size: 1rem; }

  .phone { width: 130px; height: 270px; right: -6px; bottom: -16px; }
  .phone-app { padding: 22px 12px 0; }
  .phone-title { font-size: 0.95rem; }
  .phone-card { padding: 8px 10px; font-size: 0.72rem; }
  .floating-chip { display: none; }

  .stats { padding: 48px 0; }
  .stat-num { font-size: 2.4rem; }
  .stat-label { font-size: 0.85rem; }

  .marquee-strip { padding: 16px 0; }
  .marquee-track { gap: 22px; }
  .marquee-track span { font-size: 1rem; }
  .marquee-track i { width: 6px; height: 6px; }

  .features { grid-template-columns: 1fr; }
  .feature { padding: 24px; }
  .usp { grid-template-columns: 1fr; }
  .usp-item { padding: 24px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2, h2 { font-size: clamp(1.6rem, 7vw, 2rem); }
  .section-lead { font-size: 0.98rem; }

  .pricing-card { padding: 32px 22px; }
  .pricing-list { margin: 18px 0 26px; }
  .pricing-list li { font-size: 0.92rem; padding-left: 28px; }
  .pricing-list li::before { width: 18px; height: 18px; top: 5px; }
  .pricing-list li::after { left: 5px; top: 11px; }
  .pricing-cta { gap: 8px; }
  .pricing-cta .btn { flex: 1; min-width: 0; padding: 13px 16px; font-size: 0.92rem; }

  .cta-final { padding: 72px 0; }
  .cta-final h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .cta-final p { font-size: 1rem; margin-bottom: 24px; }
  .cta-buttons { gap: 8px; }
  .cta-buttons .btn { flex: 1; min-width: 0; padding: 14px 16px; font-size: 0.92rem; }

  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; gap: 6px; }

  .marquee-strip::before, .marquee-strip::after { width: 60px; }

  .spotlight { padding: 64px 0; }
  .spotlight-head { margin-bottom: 24px; }
  .spotlight-head h2 { font-size: clamp(1.6rem, 7vw, 2rem); }
  .spotlight-head p { font-size: 1rem; }
  .spot-mock-body { padding: 18px; }

  .compare-card { padding: 24px 20px; }
  .compare-card h3 { font-size: 1.1rem; }
  .compare-card li { font-size: 0.92rem; padding: 10px 0; }
}

@media (max-width: 480px) {
  .platforms { width: 100%; }
  .platform { flex: 1; justify-content: center; min-width: 0; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; flex: 0 0 auto; }
  .pricing-cta, .cta-buttons { flex-direction: column; }
  .pricing-cta .btn, .cta-buttons .btn { width: 100%; flex: 0 0 auto; }
  .footer-cols { grid-template-columns: 1fr; }
}

/* ============================================================
   Section dividers (curves)
   ============================================================ */
.section-divider {
  position: absolute;
  left: 0;
  width: 100%;
  height: 80px;
  display: block;
  pointer-events: none;
  z-index: 1;
}
.divider-bottom { bottom: -1px; }
.divider-top { top: -1px; transform: scaleY(-1); }
.hero { position: relative; }
.hero .section-divider path { fill: #050b18; }

/* Stats with bg blobs */
.stats { position: relative; overflow: hidden; }
.stats-bg { position: absolute; inset: 0; pointer-events: none; }
.blob-s1 {
  width: 480px; height: 480px;
  top: -120px; right: -100px;
  background: radial-gradient(circle, rgba(66, 119, 185, 0.55), transparent 70%);
  filter: blur(80px);
}
.blob-s2 {
  width: 380px; height: 380px;
  bottom: -100px; left: -80px;
  background: radial-gradient(circle, rgba(107, 160, 224, 0.40), transparent 70%);
  filter: blur(80px);
}

/* ============================================================
   Spotlight (sticky scroll, Apple-style)
   ============================================================ */
.spotlight {
  background: #0a1628;
  background:
    radial-gradient(circle at 10% 30%, rgba(66, 119, 185, 0.20), transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(107, 160, 224, 0.15), transparent 50%),
    linear-gradient(180deg, #050b18 0%, #0a1628 100%);
  color: #fff;
  padding: 120px 0;
  position: relative;
}
.spotlight h2, .spotlight h3 { color: #fff; }
.spotlight p { color: rgba(255, 255, 255, 0.70); }
.spotlight .eyebrow {
  color: #6ba0e0;
  background: rgba(107, 160, 224, 0.15);
  border-color: rgba(107, 160, 224, 0.30);
}

.spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.spotlight-content { padding-top: 0; }
.spotlight-head { margin-bottom: 80px; }
.spotlight-head h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
.spotlight-head p { font-size: 1.1rem; max-width: 480px; }

.spot-card {
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.spot-card:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.spot-num {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  color: #6ba0e0;
  margin-bottom: 14px;
}
.spot-card h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; line-height: 1.2; letter-spacing: -0.02em; }
.spot-card p { font-size: 1rem; margin: 0; line-height: 1.6; }

.spotlight-visual {
  position: relative;
  height: 100%;
}
.spotlight-sticky {
  position: sticky;
  top: 100px;
}
.spot-mock {
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 50px 100px -20px rgba(0, 0, 0, 0.50),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.spot-mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f8fafc;
  border-bottom: 1px solid var(--c-border);
}
.spot-mock-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #cbd5e1;
}
.spot-mock-dot:nth-child(1) { background: #ef4444; }
.spot-mock-dot:nth-child(2) { background: #f59e0b; }
.spot-mock-dot:nth-child(3) { background: #22c55e; }
.spot-mock-title {
  margin-left: 8px;
  font-size: 0.78rem;
  color: var(--c-muted);
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.spot-mock-body { padding: 24px; }
.spot-mock-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.spot-mock-input {
  background: #fafbfc;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 12px 14px;
}
.spot-mock-input label {
  display: block;
  font-size: 0.7rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 4px;
}
.spot-mock-input strong { font-size: 1.05rem; color: var(--c-text); font-weight: 700; }

.spot-mock-graph {
  background: linear-gradient(135deg, rgba(66,119,185,0.04), rgba(66,119,185,0.01));
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 16px;
  margin: 16px 0;
}
.spot-mock-graph svg { width: 100%; height: 110px; display: block; }

.spot-mock-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.spot-mock-result {
  background: linear-gradient(135deg, rgba(66,119,185,0.08), rgba(66,119,185,0.02));
  border: 1px solid rgba(66, 119, 185, 0.20);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
}
.spot-mock-result span {
  display: block;
  font-size: 0.66rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 4px;
}
.spot-mock-result strong { font-size: 1.1rem; color: var(--c-primary-dark); font-weight: 800; }

/* ============================================================
   Features section bg
   ============================================================ */
.section-features { position: relative; overflow: hidden; }
.features-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.blob-f1 {
  width: 540px; height: 540px;
  top: 30%; right: -200px;
  background: radial-gradient(circle, rgba(66, 119, 185, 0.18), transparent 70%);
  filter: blur(80px);
  opacity: 0.6;
}
.section-features .container { position: relative; z-index: 1; }

/* ============================================================
   Compare (avant/après)
   ============================================================ */
.section-compare {
  background: var(--c-bg-alt);
  position: relative;
  overflow: hidden;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.compare-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 18px;
  padding: 36px;
  position: relative;
}
.compare-before {
  background: #fff8f7;
  border-color: rgba(244, 63, 94, 0.18);
}
.compare-after {
  background: linear-gradient(135deg, #fff 0%, #f0f7ff 100%);
  border-color: rgba(66, 119, 185, 0.30);
  box-shadow: 0 16px 40px rgba(66, 119, 185, 0.10);
}
.compare-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.compare-label-before { background: rgba(244, 63, 94, 0.12); color: #be123c; }
.compare-label-after { background: rgba(66, 119, 185, 0.12); color: var(--c-primary-dark); }
.compare-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.98rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--c-text-2);
}
.compare-card li:last-child { border-bottom: none; }
.compare-before li { color: var(--c-muted); }
.compare-card .x, .compare-card .v {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.compare-card .x {
  background: rgba(244, 63, 94, 0.12);
  color: #f43f5e;
}
.compare-card .v {
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
}
.compare-vs {
  align-self: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-muted-2);
  padding: 0 4px;
}

@media (max-width: 980px) {
  .spotlight-inner { grid-template-columns: 1fr; gap: 36px; }
  .spotlight-sticky { position: static; }
  .spotlight-visual { order: -1; max-width: 600px; margin: 0 auto; width: 100%; }
  .spotlight { padding: 88px 0; }
  .spotlight-head { margin-bottom: 32px; }
  .spot-card { padding: 28px 0; }
  .compare-grid { grid-template-columns: 1fr; gap: 14px; max-width: 600px; }
  .compare-vs { transform: rotate(90deg); padding: 4px 0; font-size: 1.6rem; }
}
@media (max-width: 720px) {
  .compare-card { padding: 28px 22px; }
  .spot-card { padding: 28px 0; }
  .spot-card h3 { font-size: 1.3rem; }
  .stat-num { font-size: 2.6rem; }
}

/* ============================================================
   Marquee ticker
   ============================================================ */
.marquee-strip {
  background: #050b18;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-strip::before {
  left: 0;
  background: linear-gradient(90deg, #050b18, transparent);
}
.marquee-strip::after {
  right: 0;
  background: linear-gradient(270deg, #050b18, transparent);
}
.marquee {
  width: 100%;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  white-space: nowrap;
  text-transform: uppercase;
}
.marquee-track span:nth-child(4n+1) {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.25);
  text-stroke: 1.5px rgba(255, 255, 255, 0.25);
}
.marquee-track i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(66, 119, 185, 0.6);
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============================================================
   Tilt 3D cards
   ============================================================ */
.tilt {
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .15s ease-out;
  will-change: transform;
}
.tilt > * {
  transform: translateZ(20px);
}
.tilt:hover { transition: transform .05s ease-out; }
.tilt::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(66, 119, 185, 0.18), transparent 50%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.tilt.is-hover::after { opacity: 1; }

/* ============================================================
   Spotlight: active card highlight
   ============================================================ */
.spot-card {
  transition: opacity .4s ease, transform .4s ease;
}
.spot-card:not(.is-active) {
  opacity: 0.35;
}
.spot-card.is-active {
  opacity: 1;
  transform: translateX(8px);
}
.spot-card.is-active .spot-num {
  color: #fff;
  text-shadow: 0 0 20px rgba(107, 160, 224, 0.6);
}
.spot-card.is-active h3 {
  background: linear-gradient(90deg, #fff 0%, #6ba0e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Mobile reset for tilt + active cards */
@media (max-width: 980px) {
  .tilt { transform: none !important; }
  .tilt > * { transform: none; }
  .spot-card { opacity: 1; transform: none; }
}
