/* ══════════════════════════════════════════════════════
   SANTEO CONNECT — CSS COMPLET v3.0
   Palette logo : teal #29ABB8, arc #3DC4B5→#C8D92B
   Fond : dégradé bleu clair → blanc
══════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --teal:       #29ABB8;
  --teal-dark:  #1d8a96;
  --teal-light: #e0f5f7;
  --arc1:       #3DC4B5;
  --lime:       #C8D92B;
  --lime-dark:  #a8b820;
  --gray:       #ABABAB;
  --gray-dark:  #555;
  --dark:       #0d1117;
  --dark2:      #161c25;
  --text:       #1a2433;
  --text-soft:  #5a6a7a;
  --white:      #ffffff;
  --off-white:  #f7fcfd;
  --border:     rgba(41,171,184,.15);
  --grad:       linear-gradient(135deg, var(--teal) 0%, var(--lime) 100%);
  --grad-rev:   linear-gradient(135deg, var(--arc1) 0%, var(--teal) 100%);
  --grad-bg:    linear-gradient(160deg, #c5eaed 0%, #daf3f5 25%, #edfafa 55%, #f6fdfd 80%, #ffffff 100%);
  --shadow-sm:  0 2px 12px rgba(41,171,184,.12);
  --shadow-md:  0 8px 32px rgba(41,171,184,.18);
  --shadow-lg:  0 20px 60px rgba(41,171,184,.22);
  --radius:     16px;
  --radius-lg:  28px;
  --radius-xl:  40px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-head:  'Poppins', sans-serif;
  --font-body:  'Inter', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: none; font-family: var(--font-body); border: none; background: none; }

/* ── Container ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }

/* ── Gradient text ── */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}
.grad-text-light {
  background: linear-gradient(135deg, #fff 0%, var(--lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

/* ══════════════════════════════════════════════════════
   CURSOR
══════════════════════════════════════════════════════ */
.cursor-dot, .cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--teal);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid rgba(41,171,184,.5);
  transition: transform .12s ease, width .2s, height .2s, border-color .2s;
}
body.cursor-hover .cursor-ring {
  width: 52px; height: 52px;
  border-color: var(--lime);
}
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

/* ══════════════════════════════════════════════════════
   LOADER
══════════════════════════════════════════════════════ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--grad-bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.loader-logo {
  width: 120px; height: 120px; object-fit: contain;
  animation: logoSpin 2s cubic-bezier(.4,0,.2,1) forwards;
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(41,171,184,.1), 0 0 0 24px rgba(41,171,184,.05);
}
@keyframes logoSpin {
  0% { transform: scale(.5) rotate(-20deg); opacity: 0; }
  60% { transform: scale(1.08) rotate(4deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
.loader-bar {
  width: 200px; height: 4px;
  background: rgba(41,171,184,.15); border-radius: 99px; overflow: hidden;
}
.loader-progress {
  height: 100%; width: 0;
  background: var(--grad);
  border-radius: 99px;
  transition: width .05s linear;
}
.loader-label { font-family: var(--font-head); font-size: .85rem; color: var(--teal); letter-spacing: .1em; }

/* ══════════════════════════════════════════════════════
   VIVATECH BANNER
══════════════════════════════════════════════════════ */
.vivatech-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #000;
  height: 44px; overflow: hidden;
  display: flex; align-items: center;
  border-bottom: 2px solid #00FF87;
  transition: transform .4s ease, opacity .4s ease;
}
.vivatech-banner.hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.viva-track {
  display: flex; align-items: center;
  animation: vivaScroll 28s linear infinite;
  white-space: nowrap;
  gap: 0;
}
@keyframes vivaScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.viva-content {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 0 3rem;
}
.viva-badge {
  background: #00FF87;
  color: #000;
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 99px;
  letter-spacing: .1em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.viva-text {
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  font-family: var(--font-body);
  letter-spacing: .01em;
}
.viva-text strong { color: #00FF87; }
.viva-logo-img {
  height: 24px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
  opacity: .9;
}
.viva-cta {
  background: #00FF87;
  color: #000;
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .8rem;
  border-radius: 99px;
  display: inline-flex; align-items: center; gap: .3rem;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
  cursor: pointer;
}
.viva-cta:hover { background: #fff; color: #000; transform: scale(1.05); }
.viva-close {
  position: absolute; right: 1rem;
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  padding: .4rem;
  z-index: 2;
  background: rgba(0,0,0,.3);
  border-radius: 50%;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s, background .2s;
  flex-shrink: 0;
  cursor: pointer;
}
.viva-close:hover { color: #00FF87; background: rgba(0,255,135,.15); }

/* ══════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 44px; left: 0; right: 0; z-index: 900;
  padding: .8rem 2rem;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s, top .4s;
}
/* When banner is hidden, navbar moves up */
.vivatech-banner.hidden ~ .navbar,
.navbar.no-banner { top: 0 !important; }
.navbar.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(41,171,184,.1);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}
.nav-left { display: flex; align-items: center; gap: 1.5rem; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; justify-content: flex-end; }
.nav-link {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: .3rem 0;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 100%;
  height: 2px;
  background: var(--grad);
  border-radius: 99px;
  transition: right var(--transition);
}
.nav-link:hover { color: var(--teal); }
.nav-link:hover::after { right: 0; }
.nav-link.active { color: var(--teal); }
.nav-link.active::after { right: 0; }

.nav-cta {
  background: var(--grad);
  color: #fff;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  padding: .55rem 1.4rem;
  border-radius: 99px;
  display: inline-flex; align-items: center; gap: .5rem;
  box-shadow: 0 4px 18px rgba(41,171,184,.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(41,171,184,.4); }

/* Logo center */
.logo-wrap {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 2;
}
.logo-circle {
  width: 72px; height: 72px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 3px var(--teal), 0 0 0 6px rgba(41,171,184,.2), var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.logo-circle:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 0 0 3px var(--lime), 0 0 0 8px rgba(200,217,43,.2), var(--shadow-lg);
}
.logo-img { width: 58px; height: 58px; object-fit: contain; }
.navbar.scrolled .logo-circle { width: 56px; height: 56px; }
.navbar.scrolled .logo-img { width: 44px; height: 44px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: .5rem;
  background: none; border: none;
  z-index: 10;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--text);
  border-radius: 99px;
  transition: transform .3s, opacity .3s, background .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--teal); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--teal); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 800;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--teal) 0%, var(--arc1) 50%, var(--teal-dark) 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .5s cubic-bezier(.77,0,.175,1);
}
.mobile-menu.open { pointer-events: all; }
.mobile-menu.open .mobile-menu-bg { transform: scaleY(1); }
.mobile-nav {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity .4s ease .3s, transform .4s ease .3s;
}
.mobile-menu.open .mobile-nav { opacity: 1; transform: translateY(0); }
.mob-link {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.mob-link:hover { color: var(--lime); }
.mob-cta {
  background: var(--lime);
  color: #000;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  padding: .8rem 2rem;
  border-radius: 99px;
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1rem;
}

/* ══════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="100"] { transition-delay: .1s; }
[data-delay="150"] { transition-delay: .15s; }
[data-delay="200"] { transition-delay: .2s; }
[data-delay="300"] { transition-delay: .3s; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: 10rem 0 5rem;
  background: var(--grad-bg);
  position: relative;
  overflow: hidden;
}

/* Watermark */
.hero-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(800px, 90vw);
  opacity: .04;
  pointer-events: none;
  z-index: 0;
}
.hero-watermark img { width: 100%; height: auto; }

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(41,171,184,.25), transparent 70%); top: -100px; left: -150px; }
.orb2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(200,217,43,.18), transparent 70%); bottom: 0; right: -100px; animation-delay: -3s; }
.orb3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(61,196,181,.2), transparent 70%); top: 40%; left: 40%; animation-delay: -5s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(.97); }
}

/* Grid overlay */
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(41,171,184,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,171,184,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 10rem);
}

/* Hero text */
.hero-tag {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  color: var(--teal);
  background: rgba(41,171,184,.1);
  border: 1px solid rgba(41,171,184,.2);
  padding: .4rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.tag-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(41,171,184,.5); }
  50% { box-shadow: 0 0 0 6px rgba(41,171,184,0); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--dark);
  margin-bottom: 1.5rem;
  display: flex; flex-direction: column; gap: .1em;
}
.line-reveal {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: lineIn .7s cubic-bezier(.4,0,.2,1) forwards;
}
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
@keyframes lineIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 2.2rem;
}
.hero-sub strong { color: var(--teal); font-weight: 600; }

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 2rem;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 1.8rem;
  border-radius: 99px;
  display: inline-flex; align-items: center; gap: .6rem;
  box-shadow: 0 6px 24px rgba(41,171,184,.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(41,171,184,.45); }
.btn-secondary {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 1.8rem;
  border-radius: 99px;
  display: inline-flex; align-items: center; gap: .6rem;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.btn-secondary:hover { transform: translateY(-3px); border-color: var(--teal); box-shadow: var(--shadow-md); }
.btn-ghost {
  color: var(--teal-dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 1rem;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: gap var(--transition);
}
.btn-ghost:hover { gap: .8rem; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: .6rem;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: rgba(41,171,184,.08);
  border: 1px solid rgba(41,171,184,.15);
  padding: .35rem .9rem;
  border-radius: 99px;
}

/* ── Phone mockup ── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.phone-mockup {
  position: relative;
  animation: phoneBob 4s ease-in-out infinite;
}
@keyframes phoneBob {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-16px) rotate(-1deg); }
}
.phone-frame {
  width: 280px;
  background: linear-gradient(160deg, #1a2433 0%, #0d1117 100%);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.08), inset 0 0 0 2px rgba(255,255,255,.05);
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 6px;
  background: rgba(255,255,255,.15);
  border-radius: 99px;
}
.phone-frame.small { width: 240px; }
.phone-screen {
  background: linear-gradient(160deg, #0f1923 0%, #0a1018 100%);
  border-radius: 30px;
  padding: 1.2rem;
  overflow: hidden;
  min-height: 480px;
  display: flex; align-items: flex-start;
}
.phone-frame.small .phone-screen { min-height: 380px; }

/* App UI inside phone */
.app-ui { width: 100%; display: flex; flex-direction: column; gap: .8rem; }
.app-topbar {
  display: flex; align-items: center; gap: .6rem;
}
.app-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: #fff;
  flex-shrink: 0;
}
.app-greeting { flex: 1; }
.app-greeting span { display: block; font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.9); }
.app-greeting small { font-size: .6rem; color: var(--teal); }
.app-notif { position: relative; color: rgba(255,255,255,.5); font-size: .85rem; }
.notif-dot {
  position: absolute; top: 0; right: -2px;
  width: 6px; height: 6px;
  background: var(--lime); border-radius: 50%;
}

.app-card-main {
  background: linear-gradient(135deg, rgba(41,171,184,.25) 0%, rgba(200,217,43,.15) 100%);
  border: 1px solid rgba(41,171,184,.25);
  border-radius: 16px;
  padding: .9rem;
}
.app-card-label { font-size: .6rem; color: rgba(255,255,255,.55); font-weight: 500; margin-bottom: .2rem; }
.app-card-value { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.app-spark { margin-top: .4rem; opacity: .8; }
.app-spark svg { width: 100%; height: 30px; }

.app-cards-row { display: flex; gap: .5rem; }
.app-mini-card {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: .6rem .5rem;
  display: flex; flex-direction: column; align-items: center; gap: .2rem;
  text-align: center;
}
.app-mini-card i { font-size: .9rem; }
.app-mini-card span { font-size: .5rem; color: rgba(255,255,255,.5); }
.app-mini-card strong { font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.9); }

.app-schedule { display: flex; flex-direction: column; gap: .4rem; }
.app-appt {
  display: flex; align-items: center; gap: .5rem;
  font-size: .58rem; color: rgba(255,255,255,.7);
}
.appt-color { width: 3px; height: 20px; border-radius: 99px; flex-shrink: 0; }
.c1 { background: var(--teal); }
.c2 { background: var(--lime); }
.c3 { background: var(--arc1); }

.app-mini-kpi { display: flex; gap: .5rem; }
.kpi {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: .5rem;
  text-align: center;
}
.kpi span { display: block; font-size: .5rem; color: rgba(255,255,255,.5); margin-bottom: .1rem; }
.kpi strong { font-size: .85rem; font-weight: 700; color: #fff; }

/* Floating pills */
.float-pill {
  position: absolute;
  background: white;
  border-radius: 99px;
  padding: .5rem 1rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .4rem;
  white-space: nowrap;
  border: 1px solid var(--border);
}
.float-pill i { color: var(--teal); }
.p1 { top: 10%; left: -40%; animation: floatPill1 4s ease-in-out infinite; }
.p2 { top: 45%; right: -30%; animation: floatPill1 4s ease-in-out infinite .8s; }
.p3 { bottom: 15%; left: -35%; animation: floatPill1 4s ease-in-out infinite 1.6s; }
@keyframes floatPill1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: var(--teal);
  font-size: .75rem; font-weight: 500;
  opacity: .7;
  z-index: 1;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--teal));
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ══════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════ */
.stats-section {
  padding: 5rem 0;
  background: white;
  position: relative;
}
.stats-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--lime), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transition: transform .4s ease;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(41,171,184,.3); }
.stat-card:hover::before { transform: scaleX(1); }
.stat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(41,171,184,.12), rgba(200,217,43,.08));
  border: 1px solid rgba(41,171,184,.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
  color: var(--teal);
}
.stat-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-text, .stat-text-val {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .4rem;
}
.dl-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: .5rem;
}
.stat-label {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  margin-bottom: .2rem;
}
.stat-sub { font-size: .78rem; color: var(--text-soft); }

/* ══════════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  padding: 1.2rem 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--arc1) 50%, var(--lime) 100%);
  position: relative;
}
.marquee-track {
  display: flex; align-items: center; gap: 2rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-rev .marquee-track { animation-direction: reverse; }
.marquee-wrap span {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.marquee-wrap .sep { color: rgba(255,255,255,.4); font-size: .7rem; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════
   FEATURES / BENTO
══════════════════════════════════════════════════════ */
.features-section {
  padding: 7rem 0;
  background: white;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-tag {
  display: inline-flex; align-items: center;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  color: var(--teal);
  background: rgba(41,171,184,.1);
  border: 1px solid rgba(41,171,184,.2);
  padding: .3rem .9rem;
  border-radius: 99px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-tag.light {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

/* Bento grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1.5rem;
}
.bc-wide { grid-column: span 2; }

.bento-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.bento-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(41,171,184,.04), rgba(200,217,43,.02));
  opacity: 0;
  transition: opacity .3s;
}
.bento-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-lg); border-color: rgba(41,171,184,.25); }
.bento-card:hover::after { opacity: 1; }

.bc-accent {
  background: linear-gradient(135deg, rgba(41,171,184,.1) 0%, rgba(200,217,43,.06) 100%);
  border-color: rgba(41,171,184,.25);
}

.bento-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 16px rgba(41,171,184,.3);
}
.bento-num {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(41,171,184,.08);
  line-height: 1;
  transition: color .3s;
}
.bento-card:hover .bento-num { color: rgba(41,171,184,.15); }
.bento-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .6rem;
}
.bento-desc { font-size: .88rem; color: var(--text-soft); line-height: 1.6; margin-bottom: 1rem; }
.bento-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.bento-tags span {
  font-size: .72rem;
  font-weight: 600;
  color: var(--teal);
  background: rgba(41,171,184,.1);
  border: 1px solid rgba(41,171,184,.2);
  padding: .2rem .7rem;
  border-radius: 99px;
}
.bento-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  background: var(--grad);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .8rem;
  border-radius: 99px;
  margin-top: .8rem;
}

/* Feature card visuals */
.bento-visual { margin-top: 1rem; opacity: .8; }
.bento-visual svg { width: 100%; height: 60px; }

/* Message bubbles */
.msg-preview { margin-top: .8rem; display: flex; flex-direction: column; gap: .4rem; }
.msg-bubble {
  padding: .45rem .8rem;
  border-radius: 16px;
  font-size: .72rem;
  font-weight: 500;
  max-width: 90%;
}
.msg-bubble.sent { background: var(--grad); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.msg-bubble.recv { background: rgba(41,171,184,.1); color: var(--teal-dark); border: 1px solid rgba(41,171,184,.15); border-bottom-left-radius: 4px; }

/* Calendar mini */
.cal-mini { margin-top: .8rem; display: flex; flex-direction: column; gap: .3rem; }
.cal-slot {
  background: rgba(41,171,184,.06);
  border: 1px solid rgba(41,171,184,.1);
  border-radius: 8px;
  padding: .4rem .7rem;
  font-size: .72rem;
  color: var(--text-soft);
  font-weight: 500;
  transition: background .2s, border-color .2s;
}
.cal-slot.active { background: rgba(41,171,184,.15); border-color: rgba(41,171,184,.3); color: var(--teal-dark); font-weight: 600; }

/* Dashboard bars */
.dash-bars {
  display: flex; align-items: flex-end; gap: .5rem;
  height: 60px;
  margin-top: 1rem;
}
.dash-bar {
  flex: 1;
  height: var(--h);
  background: var(--grad);
  border-radius: 6px 6px 0 0;
  position: relative;
  transition: height .4s ease;
  opacity: .8;
}
.dash-bar span {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  font-size: .6rem; color: var(--text-soft);
}

/* Alert demo */
.alert-demo { margin-top: .8rem; display: flex; flex-direction: column; gap: .4rem; }
.alert-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .72rem;
  background: rgba(255,150,50,.1);
  border: 1px solid rgba(255,150,50,.2);
  border-radius: 8px;
  padding: .4rem .7rem;
  color: #c84b00;
}
.alert-item i { color: #e67e00; }
.alert-item.ok { background: rgba(41,171,184,.08); border-color: rgba(41,171,184,.2); color: var(--teal-dark); }
.alert-item.ok i { color: var(--arc1); }

/* ══════════════════════════════════════════════════════
   AUDIENCE / POUR QUI
══════════════════════════════════════════════════════ */
.audience-section {
  padding: 7rem 0;
  background: var(--grad-bg);
  position: relative;
  overflow: hidden;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.aud-card {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.aud-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.aud-featured {
  border-color: rgba(41,171,184,.35);
  background: white;
  box-shadow: 0 8px 40px rgba(41,171,184,.15);
}
.aud-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .9rem;
  border-radius: 99px;
  white-space: nowrap;
}
.aud-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(41,171,184,.12), rgba(200,217,43,.08));
  border: 1px solid rgba(41,171,184,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--teal);
  margin-bottom: 1rem;
}
.aud-featured .aud-icon { background: var(--grad); border: none; color: #fff; }
.aud-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .6rem;
}
.aud-card p { font-size: .85rem; color: var(--text-soft); line-height: 1.6; margin-bottom: 1rem; }
.aud-list { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.5rem; }
.aud-list li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem;
  color: var(--text-soft);
}
.aud-list li i { color: var(--arc1); font-size: .7rem; }
.aud-cta a {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--teal);
  transition: gap .2s;
}
.aud-cta a:hover { gap: .7rem; }
.aud-cta.featured a {
  background: var(--grad);
  color: #fff;
  padding: .6rem 1.4rem;
  border-radius: 99px;
  box-shadow: 0 4px 16px rgba(41,171,184,.3);
}

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.testi-section {
  padding: 7rem 0;
  background: linear-gradient(160deg, #c5eaed 0%, #daf3f5 30%, #edfafa 60%, #f6fdfd 100%);
  position: relative;
  overflow: hidden;
}
.testi-watermark {
  position: absolute;
  right: -10%; bottom: -5%;
  width: 500px;
  opacity: .05;
  pointer-events: none;
}
.testi-watermark img { width: 100%; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tc-featured {
  border-color: rgba(41,171,184,.3);
  box-shadow: 0 8px 32px rgba(41,171,184,.12);
  position: relative;
}
.tc-featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.testi-stars { color: var(--lime); font-size: 1rem; margin-bottom: 1rem; letter-spacing: .1em; }
.testi-quote {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; font-weight: 700; color: var(--dark); }
.testi-author span { display: block; font-size: .78rem; color: var(--text-soft); }

/* ══════════════════════════════════════════════════════
   DOWNLOAD
══════════════════════════════════════════════════════ */
.download-section {
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 40%, var(--arc1) 100%);
  position: relative;
  overflow: hidden;
}
.download-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.dl-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  opacity: .06;
  pointer-events: none;
}
.dl-watermark img { width: 100%; filter: brightness(0) invert(1); }
.dl-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.dl-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.2rem;
}
.dl-sub { font-size: 1rem; color: rgba(255,255,255,.8); line-height: 1.65; margin-bottom: 2rem; }
.dl-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.dl-btn {
  display: flex; align-items: center; gap: .8rem;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 14px;
  padding: .8rem 1.5rem;
  color: #fff;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(10px);
}
.dl-btn:hover { background: rgba(255,255,255,.22); transform: translateY(-3px); }
.dl-btn i { font-size: 1.6rem; }
.dl-btn small { display: block; font-size: .68rem; opacity: .75; }
.dl-btn strong { display: block; font-size: .95rem; font-weight: 700; }

.dl-qr { display: flex; align-items: center; gap: 1rem; }
.qr-box { width: 70px; height: 70px; border-radius: 12px; overflow: hidden; background: white; padding: 4px; flex-shrink: 0; }
.qr-box svg { width: 100%; height: 100%; }
.dl-qr span { font-size: .82rem; color: rgba(255,255,255,.75); }

/* Download visual */
.dl-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.dl-phone { position: relative; z-index: 1; }
.dl-rings {
  position: absolute; inset: -40px;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.dl-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  animation: ringPulse 4s ease-in-out infinite;
}
.r1 { width: 320px; height: 320px; }
.r2 { width: 420px; height: 420px; animation-delay: 1s; }
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: .5; }
}

/* ══════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════ */
.contact-section {
  padding: 7rem 0;
  background: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.8rem;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(41,171,184,.12), rgba(200,217,43,.08));
  border: 1px solid rgba(41,171,184,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--teal);
  flex-shrink: 0;
}
.contact-item strong { display: block; font-weight: 700; font-size: .9rem; color: var(--dark); margin-bottom: .2rem; }
.contact-item span, .contact-item a { font-size: .88rem; color: var(--text-soft); line-height: 1.5; }
.contact-item a:hover { color: var(--teal); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--text-soft); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .75rem 1rem;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(41,171,184,.12);
  background: white;
}
.form-submit {
  background: var(--grad);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: .9rem 2rem;
  border-radius: 99px;
  display: inline-flex; align-items: center; gap: .6rem;
  box-shadow: 0 6px 24px rgba(41,171,184,.3);
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
}
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(41,171,184,.45); }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: linear-gradient(160deg, #0d1f24 0%, #0f2530 40%, #092830 100%);
  color: rgba(255,255,255,.75);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
}
.footer-watermark {
  position: absolute;
  bottom: -5%; right: -5%;
  width: 400px;
  opacity: .04;
  pointer-events: none;
}
.footer-watermark img { width: 100%; filter: brightness(0) invert(1); }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative; z-index: 1;
}
.footer-logo-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 3px rgba(41,171,184,.4);
  margin-bottom: 1rem;
  overflow: hidden;
}
.footer-logo { width: 48px; height: 48px; object-fit: contain; }
.footer-desc { font-size: .85rem; line-height: 1.65; margin-bottom: 1.5rem; color: rgba(255,255,255,.6); }
.footer-socials { display: flex; gap: .7rem; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.footer-socials a:hover { background: var(--teal); border-color: var(--teal); color: #fff; transform: translateY(-3px); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.2rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--lime); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  position: relative; z-index: 1;
}
.footer-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.fbadge {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .72rem;
  font-weight: 600;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: .25rem .7rem;
  border-radius: 99px;
  color: rgba(255,255,255,.6);
}
.fbadge i { color: var(--teal); font-size: .65rem; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bc-wide { grid-column: span 2; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .nav-left, .nav-right { display: none; }
  .hamburger { display: flex; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .logo-circle { margin: 0 auto; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { order: -1; }
  .phone-mockup { animation: none; }
  .p1, .p2, .p3 { display: none; }
  .dl-inner { grid-template-columns: 1fr; text-align: center; }
  .dl-buttons, .dl-qr { justify-content: center; }
  .dl-visual { display: none; }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero { padding: 8rem 0 4rem; }
  .hero-title { font-size: 2rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2.2rem; }
  .bento-grid { grid-template-columns: 1fr; }
  .bc-wide { grid-column: span 1; }
  .audience-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .vivatech-banner { height: 40px; }
  .navbar { top: 40px; }
  .scroll-hint { display: none; }
  .mob-link { font-size: 1.6rem; }
}
