/* PikScan Expenses · Site corporate */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #ffffff;
  --bg-2: #f4f6f9;
  --surface: #ffffff;
  --surface-solid: #ffffff;
  --text: #111827;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --brand: #168a96;
  --brand-2: #2dbdce;
  --brand-violet: #0f6d7a;
  --brand-glow: rgba(22, 138, 150, 0.15);
  --accent: #0f766e;
  --accent-2: #0d9488;
  --gold: #b45309;
  --gold-2: #d97706;
  --gold-dark: #92400e;
  --gold-glow: rgba(180, 83, 9, 0.12);
  --gradient-gold: linear-gradient(135deg, #fde047 0%, #f59e0b 50%, #ea580c 100%);
  --gradient-gold-soft: linear-gradient(160deg, #fffbeb 0%, #fef3c7 100%);
  --gradient-fire: linear-gradient(135deg, #fb923c, #ef4444, #fb923c);
  --gradient-brand: linear-gradient(145deg, #0f6d7a 0%, #1a9db5 48%, #2dbdce 100%);
  --gradient-hero: linear-gradient(180deg, #f8fafc 0%, #ffffff 55%);
  --gradient-text: none;
  --gradient-accent: linear-gradient(135deg, #f59e0b, #f97316);
  --gradient-mesh: none;
  --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.05);
  --shadow-md: 0 4px 24px rgba(17, 24, 39, 0.08);
  --shadow-glow: 0 12px 40px -16px var(--brand-glow);
  --shadow-product: 0 24px 48px -24px rgba(17, 24, 39, 0.18);
  --radius: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.25rem;
  --header-h: 4.25rem;
  --container: 72rem;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --glass: #ffffff;
  --glass-border: var(--border);
}

html.dark {
  --bg: #0b0f14;
  --bg-2: #111827;
  --surface: #111827;
  --surface-solid: #111827;
  --text: #f3f4f6;
  --text-muted: #9ca3af;
  --border: #1f2937;
  --brand-glow: rgba(22, 138, 150, 0.25);
  --gold-glow: rgba(245, 158, 11, 0.15);
  --gradient-gold-soft: linear-gradient(160deg, #1a1508 0%, #0f0d06 100%);
  --gradient-hero: linear-gradient(180deg, #0b0f14 0%, #111827 100%);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-product: 0 24px 48px -24px rgba(0, 0, 0, 0.45);
  --glass: #111827;
  --glass-border: var(--border);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before { display: none; }

html.dark body::before { display: none; }

main { position: relative; z-index: 1; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  position: relative;
  z-index: 1;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Header · transparent sur hero */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: background 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.site-header.is-scrolled {
  border-bottom-color: transparent;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  height: var(--header-h);
  padding-top: 0;
}

.site-header.is-scrolled .container {
  background: transparent;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding-inline: clamp(1rem, 4vw, 2rem);
  box-shadow: none;
  max-width: var(--container);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.logo__img,
.logo__mark {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0.5rem;
}

.logo__mark {
  display: block;
  background: url('../assets/logo-d.png') center / contain no-repeat;
}

html.dark .logo__mark {
  background-image: url('../assets/logo-w.png');
}

.logo__text {
  line-height: 1;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

html.dark .logo__text {
  font-weight: 900;
  letter-spacing: -0.03em;
}

.logo--footer .logo__img,
.logo--footer .logo__mark {
  width: 2rem;
  height: 2rem;
}

.nav-desktop {
  display: none;
  gap: 1.5rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0;
  border-radius: 0;
  color: var(--text-muted);
}

.nav-desktop a:hover {
  color: var(--brand);
  background: transparent;
}

.header-actions { display: flex; align-items: center; gap: 0.5rem; }

.lang-switch { display: flex; align-items: center; gap: 0.25rem; }

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background-color: var(--surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24' stroke='%238e8e93' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1rem;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  max-width: 9.5rem;
}

.lang-select:hover,
.lang-select:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 18%, transparent);
}

html.dark .lang-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24' stroke='%238e8e93' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

.btn-store .store-icon {
  flex-shrink: 0;
  display: block;
}

.lang-link {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.2s;
}
.lang-link:hover { border-color: var(--brand); color: var(--brand); }
.lang-link.is-active {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
}
.lang-link.is-active:hover { color: #fff; }

.nav-mobile__lang {
  display: flex;
  gap: 0.4rem;
  padding-top: 0.5rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 640px) {
  .lang-select { max-width: 7.5rem; font-size: 0.75rem; padding-right: 1.75rem; }
}

.theme-toggle, .menu-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover, .menu-toggle:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.theme-toggle .icon-sun { display: none; }
html.dark .theme-toggle .icon-moon { display: none; }
html.dark .theme-toggle .icon-sun { display: block; }

.menu-toggle { display: grid; position: relative; }
.menu-toggle__icon--close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon--open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon--close { display: block; }
.menu-toggle[aria-expanded="true"] {
  border-color: var(--brand);
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 10%, var(--surface));
}

.header-actions .btn-order { display: none; }

/* Mobile header: keep bar clean (logo + theme + hamburger) */
@media (max-width: 767px) {
  .lang-select--desktop { display: none; }

  .site-header .container {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding-inline: 1rem;
  }

  .header-actions {
    margin-left: auto;
    justify-content: flex-end;
  }

  .logo__text { font-size: 1.05rem; }
  .logo__mark { width: 2.15rem; height: 2.15rem; }

  /* Pages contenu : header opaque */
  body.page-sub .site-header,
  body.page-manual .site-header,
  body.page-legal .site-header {
    background: var(--surface-solid);
    border-bottom-color: var(--border);
  }

  /* Landing hero : pas de bande blanche — header transparent, pilule seule */
  body.landing-v4:not(.page-sub) .site-header {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.landing-v4:not(.page-sub) .site-header.is-scrolled,
  body.landing-v4:not(.page-sub) .site-header.is-menu-open {
    background: transparent;
    border-bottom-color: transparent;
  }

  body.landing-v4 .site-header .container {
    width: calc(100% - 1.5rem);
    max-width: var(--container);
    margin-inline: auto;
    padding: 0.35rem 0.4rem 0.35rem 0.85rem;
    border-radius: 999px;
    background: #ffffff !important;
    border: 1px solid rgba(12, 18, 34, 0.08) !important;
    box-shadow: 0 8px 28px -16px rgba(12, 18, 34, 0.22) !important;
  }

  body.landing-v4 .site-header.is-menu-open .container {
    border-radius: 1.25rem;
    background: #ffffff !important;
  }
}

body.site-pro .site-header.is-scrolled,
body.landing-v4 .site-header.is-scrolled,
body.site-pro .site-header.is-menu-open,
body.landing-v4 .site-header.is-menu-open {
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

.nav-mobile {
  display: flex;
  position: fixed !important;
  inset: var(--header-h) 0 0 0;
  z-index: 1000;
  padding: 0;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.5rem);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}

/* Au-dessus du contenu (body.landing-v4 > * { z-index: 1 }) */
body.landing-v4 > .nav-mobile,
body.site-pro > .nav-mobile,
.nav-mobile.is-open {
  z-index: 1000 !important;
}

body.landing-v4 > .site-header,
body.site-pro > .site-header,
body.landing-v4.site-pro > .site-header,
body.landing-v4 .site-header,
body.site-pro .site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1001 !important;
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.landing-v4 .site-header .container,
body.site-pro .site-header .container {
  border-radius: 999px !important;
  background: #ffffff !important;
  border: 1px solid rgba(12, 18, 34, 0.08) !important;
  box-shadow: 0 8px 28px -16px rgba(12, 18, 34, 0.22) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html.dark body.landing-v4 .site-header .container,
html.dark body.site-pro .site-header .container {
  background: #111827 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 28px -16px rgba(0, 0, 0, 0.45) !important;
}

.nav-mobile.is-open {
  top: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-mobile__panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
  padding: calc(var(--header-h) + 1rem) 1.25rem calc(1.5rem + env(safe-area-inset-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile.is-open .nav-mobile__panel {
  padding-top: calc(var(--header-h) + 1.25rem);
}

.nav-mobile__links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-mobile__link {
  display: flex;
  align-items: center;
  min-height: 3.15rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  background: transparent;
  border: none;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}

.nav-mobile__link:hover,
.nav-mobile__link:focus-visible {
  background: color-mix(in srgb, var(--brand) 8%, var(--bg-2));
  color: var(--brand);
  outline: none;
  text-decoration: none;
}

.nav-mobile__link[aria-current="page"] {
  background: color-mix(in srgb, var(--brand) 12%, var(--bg-2));
  color: var(--brand);
}

.nav-mobile__footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
}

.nav-mobile__lang-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lang-select--mobile {
  display: block;
  width: 100%;
  max-width: none;
  min-height: 3rem;
  font-size: 1rem;
  padding: 0.75rem 2.25rem 0.75rem 1rem;
  border-radius: 0.9rem;
}

.nav-mobile__cta {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.25rem;
  padding: 0.95rem 1.25rem;
  font-size: 1rem;
  border-radius: 0.95rem;
  text-decoration: none;
}

.nav-mobile__cta .store-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-order {
  background: var(--gradient-brand);
  color: #fff;
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 999px;
  box-shadow: 0 4px 20px -6px var(--brand-glow);
}
.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px -6px var(--brand-glow);
  filter: brightness(1.05);
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .header-actions .btn-order { display: inline-flex; }
  .nav-mobile { display: none !important; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-glow {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 8px 32px -8px var(--brand-glow), inset 0 1px 0 rgba(255,255,255,0.2);
  font-family: var(--font-display);
  font-weight: 700;
}
.btn-glow:hover {
  box-shadow: 0 16px 48px -12px var(--brand-glow), inset 0 1px 0 rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

.btn-glass {
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid var(--glass-border);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.btn-glass:hover {
  border-color: color-mix(in srgb, var(--brand) 40%, var(--border));
  background: var(--surface-solid);
  transform: translateY(-2px);
}

.btn-brand {
  background: var(--gradient-brand);
  color: #fff;
  width: 100%;
  box-shadow: 0 8px 28px -8px var(--brand-glow);
}
.btn-brand:hover { transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 100%;
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }

.btn-sm { padding: 0.7rem 1.25rem; font-size: 0.875rem; }

.header-actions .btn-order.btn-sm {
  padding: 0.7rem 1.35rem;
  font-size: 0.9rem;
  min-height: 2.65rem;
}

/* Hero · split layout moderne */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto 1.25rem;
  padding: 0.4rem 0.875rem 0.4rem 0.625rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.hero__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #06b6d4);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: badge-pulse 2.5s ease infinite;
}

@media (min-width: 1100px) {
  .hero {
    text-align: left;
    padding-bottom: 5rem;
  }

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

  .hero__content {
    margin-inline: 0;
    max-width: none;
    text-align: left;
  }

  .hero__badge { margin-inline: 0; }

  .hero__subtitle { margin-inline: 0; max-width: 32rem; }

  .hero__actions { justify-content: flex-start; }

  .hero__stage {
    margin-top: 0;
    min-height: clamp(440px, 52vh, 580px);
  }

  .scroll-hint { display: none; }
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.hero__content {
  max-width: 52rem;
  margin-inline: auto;
  animation: fade-up 0.9s var(--ease) both;
}

.hero__rating {
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__rating strong { color: var(--brand); font-weight: 700; }

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7.5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--text);
}

.hero__accent {
  font-style: normal;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__tagline {
  margin: 1rem 0 0;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-muted);
}

.hero__subtitle {
  margin: 1.25rem auto 0;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-muted);
  max-width: 36rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
  margin-top: 2rem;
}

.hero__trial {
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.hero__product {
  position: relative;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: flex;
  justify-content: center;
  perspective: 1400px;
}

.hero__product .phone {
  width: min(320px, 82vw);
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(var(--shadow-product));
}

.hero__product-glow {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, 70vw);
  height: 4rem;
  background: var(--gradient-brand);
  opacity: 0.25;
  filter: blur(48px);
  border-radius: 50%;
  pointer-events: none;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3.5rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero__stat strong {
  display: block;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.hero__stat span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fade-up 1.2s var(--ease) 0.6s both;
}

.scroll-hint__line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(180deg, var(--brand), transparent);
  animation: scroll-pulse 2s ease infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Highlights numérotés · style Crafto 01 02 03 */
.highlights {
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-bottom: 1px solid var(--border);
}

.highlights__grid {
  display: grid;
  gap: 0;
}

@media (min-width: 768px) {
  .highlights__grid { grid-template-columns: repeat(3, 1fr); }
}

.highlight-card {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

@media (min-width: 768px) {
  .highlight-card {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
  .highlight-card:last-child { border-right: none; }
}

.highlight-card:hover { background: var(--bg-2); }

.highlight-card__num {
  display: block;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--border);
  margin-bottom: 1.25rem;
}

.highlight-card p {
  margin: 0;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 16rem;
}

.highlight-card strong {
  font-weight: 800;
  color: var(--brand);
}

/* Showcase alterné + tabs */
.showcase-block {
  display: grid;
  gap: 3rem;
  align-items: center;
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 992px) {
  .showcase-block {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .showcase-block--reverse .showcase-block__visual { order: 2; }
  .showcase-block--reverse .showcase-block__text { order: 1; }
}

.showcase-block__label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
}

.showcase-block__title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.showcase-block__text {
  margin: 1rem 0 0;
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 28rem;
}

.showcase-block__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
  border-radius: var(--radius-2xl);
  background: var(--bg-2);
  border: 1px solid var(--border);
  overflow: hidden;
}

.showcase-block__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.08), transparent 65%);
}

.showcase-visual-card {
  position: relative;
  z-index: 1;
  width: min(240px, 70%);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  text-align: left;
}

.showcase-visual-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: var(--gradient-brand);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.showcase-visual-card h4 {
  margin: 0 0 0.375rem;
  font-size: 1rem;
  font-weight: 700;
}

.showcase-visual-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.showcase-tabs {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: var(--bg-2);
}

.showcase-tabs__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.showcase-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.showcase-tabs__btn {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-solid);
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.showcase-tabs__btn:hover { border-color: var(--brand); color: var(--text); }

.showcase-tabs__btn.is-active {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}

.showcase-tabs__panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  animation: fade-up 0.5s var(--ease) both;
}

.showcase-tabs__panel.is-active { display: grid; }

@media (min-width: 992px) {
  .showcase-tabs__panel.is-active { grid-template-columns: 1fr 1fr; }
}

.showcase-tabs__panel h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.showcase-tabs__panel p {
  margin: 1rem 0 0;
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.showcase-tabs__mock {
  display: flex;
  justify-content: center;
}

.showcase-tabs__mock .phone { width: min(260px, 100%); }

/* Témoignages */
.reviews-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}

.review-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--brand) 20%, var(--border));
}

.review-card__stars {
  color: var(--accent);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.review-card blockquote {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.review-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.review-card__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

.review-card__role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Marquee */
.marquee {
  background: var(--text);
  overflow: hidden;
  padding: 1rem 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee__track:hover { animation-play-state: paused; }

.marquee__group {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}

.marquee__item svg { width: 1rem; height: 1rem; color: var(--brand-2); flex-shrink: 0; }

/* Phone */
.phone { position: relative; width: min(290px, 88vw); }

.phone__frame {
  position: relative;
  border-radius: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
  padding: 0.625rem;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 48px 96px -24px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.phone__ring {
  position: absolute;
  inset: -24px;
  border-radius: 3.5rem;
  background: var(--gradient-brand);
  opacity: 0.4;
  filter: blur(48px);
  animation: pulse-glow 4s ease infinite;
}

.phone__notch {
  position: absolute;
  top: 0.875rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5.5rem;
  height: 1.375rem;
  border-radius: 999px;
  background: #000;
  z-index: 2;
}

.phone__screen {
  border-radius: 2.25rem;
  overflow: hidden;
  background: #020617;
}

.phone__screen--shot {
  aspect-ratio: 390 / 844;
  background: #000;
  line-height: 0;
}

.phone__screen--shot img,
.phone__screen--shot video,
.phone__screenshot {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
}

.phone--screenshot .phone__frame {
  padding: 0.5rem;
}

.phone--screenshot .phone__notch {
  top: 0.75rem;
  width: 5rem;
  height: 1.25rem;
  opacity: 0.85;
}

.phone__status {
  display: flex;
  justify-content: space-between;
  padding: 0.625rem 1.25rem 0.25rem;
  font-size: 0.625rem;
  color: rgba(255,255,255,0.45);
}

.phone__app { padding: 0.25rem 1rem 1.25rem; }

.phone__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.875rem;
}

.phone__header span:first-child { color: #fff; font-weight: 800; font-size: 0.9375rem; }

.phone__offline {
  font-size: 0.5625rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phone__scan-box {
  background: linear-gradient(145deg, rgba(30,41,59,0.9), rgba(15,23,42,0.9));
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 1rem;
  padding: 0.875rem;
  margin-bottom: 0.75rem;
}

.phone__scan-label {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

.phone__scan-title {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.phone__scan-area {
  margin-top: 0.625rem;
  height: 5.5rem;
  border-radius: 0.75rem;
  border: 2px dashed rgba(6, 182, 212, 0.35);
  background: rgba(6, 182, 212, 0.05);
  display: grid;
  place-items: center;
  color: #22d3ee;
  position: relative;
  overflow: hidden;
}

.phone__scan-area::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #22d3ee, transparent);
  animation: scan-line 2.5s ease-in-out infinite;
}

@keyframes scan-line {
  0%, 100% { top: 15%; opacity: 0; }
  10%, 90% { opacity: 1; }
  50% { top: 85%; }
}

.phone__tags { display: flex; gap: 0.375rem; margin-bottom: 0.625rem; }

.phone__tag {
  font-size: 0.5625rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #334155;
  color: #94a3b8;
}

.phone__tag--hot {
  background: var(--gradient-brand);
  color: #fff;
}

.phone__contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.625rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0.375rem;
}

.phone__avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 0.625rem;
  background: var(--gradient-brand);
  display: grid;
  place-items: center;
  font-size: 0.6875rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.phone__contact-name { font-size: 0.75rem; font-weight: 700; color: #fff; }
.phone__contact-co { font-size: 0.625rem; color: #64748b; }

/* Sections */
.section { padding: clamp(5rem, 12vw, 8rem) 0; position: relative; z-index: 1; }

.section--alt {
  background: var(--bg-2);
  position: relative;
}

.section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  opacity: 0.5;
  pointer-events: none;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.875rem;
  padding: 0.35rem 0.875rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 18%, transparent);
}

.section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section__subtitle {
  margin: 1rem auto 0;
  max-width: 38rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.section__head { text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 1; }

/* Compare cards */
.compare-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) { .compare-grid { grid-template-columns: 1fr 1fr; } }

.glass-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.glass-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.glass-card--win {
  border-color: rgba(0, 102, 255, 0.25);
  background: linear-gradient(145deg, rgba(0, 102, 255, 0.06), var(--surface));
  box-shadow: var(--shadow-glow);
}

.card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  font-size: 1.0625rem;
}

.card__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  font-size: 0.875rem;
}

.card__icon--bad { background: rgba(239, 68, 68, 0.12); color: #ef4444; }
.card__icon--good { background: rgba(0, 172, 242, 0.12); color: var(--brand); }

.check-list { list-style: none; margin: 0; padding: 0; }

.check-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.check-list li::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.1rem;
  background-size: 0.625rem;
  background-repeat: no-repeat;
  background-position: center;
}

.check-list--bad li::before {
  background-color: rgba(239, 68, 68, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ef4444' stroke-width='3'%3E%3Cpath stroke-linecap='round' d='M6 18L18 6M6 6l12 12'/%3E%3C/svg%3E");
}

.check-list--good li::before {
  background-color: rgba(0, 102, 255, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230066ff' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
}

/* Features grid · bento glass */
.features-bento {
  display: grid;
  gap: 1rem;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}

@media (min-width: 640px) { .features-bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .features-bento { grid-template-columns: repeat(3, 1fr); gap: 1.125rem; } }

.feature-card {
  background: var(--surface-solid);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: none;
  transition: border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: color-mix(in srgb, var(--brand) 35%, var(--border));
}

.feature-card::before { display: none; }

.feature-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background: var(--bg-2);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

.feature-card:hover .feature-card__icon {
  background: var(--bg-2);
  color: var(--brand);
  transform: none;
  border-color: var(--border);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.feature-card p { margin: 0; font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* Steps */
.steps-row {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) { .steps-row { grid-template-columns: repeat(3, 1fr); } }

.step-card {
  text-align: left;
  padding: 1.5rem;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}

.step-card__illus,
.pinned__panel-illus,
.features-spotlight,
.pinned__visual,
.pinned__illus-stage { display: none !important; }

/* Chaîne de valeur corporate */
.value-chain {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface-solid);
}

.value-chain__row {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid var(--border);
}

.value-chain__row:last-child { border-bottom: none; }

@media (min-width: 900px) {
  .value-chain__row {
    grid-template-columns: 280px 1fr;
    gap: 3rem;
  }

  .value-chain__row--reverse {
    grid-template-columns: 1fr 280px;
  }

  .value-chain__row--reverse .value-chain__media { order: 2; }
  .value-chain__row--reverse .value-chain__body { order: 1; }
}

.value-chain__media {
  padding: 1rem;
  background: var(--bg-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.value-chain__media .site-illus { width: 100%; height: auto; }

.value-chain__label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.value-chain__body h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.value-chain__body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 40rem;
}

.site-illus {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.pinned__panel-illus .site-illus {
  max-width: 220px;
  margin-inline: auto;
}

html.dark .site-illus {
  filter: brightness(0.88) saturate(0.95);
}

.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.625rem;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 8%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--border));
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.step-card h3 { margin: 0 0 0.5rem; font-size: 1.0625rem; }
.step-card p { margin: 0; font-size: 0.875rem; color: var(--text-muted); }

/* Pricing premium */
.pricing-grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 992px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: center; }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: none;
  transition: border-color 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card--featured {
  background: linear-gradient(160deg, color-mix(in srgb, var(--gold) 8%, var(--surface-solid)), var(--surface-solid));
  border-color: color-mix(in srgb, var(--gold) 35%, var(--border));
  box-shadow: var(--shadow-glow), var(--shadow-md);
  border: none;
  padding: 2px;
  transform: scale(1);
}

@media (min-width: 992px) {
  .pricing-card--featured { transform: scale(1.04); }
}

.pricing-card--featured .pricing-card__inner {
  background: var(--gradient-gold-soft);
  border-radius: calc(var(--radius-2xl) - 2px);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--gold) 25%, transparent);
}

.pricing-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-fire);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}

.pricing-card h3 { margin: 0; font-size: 1.125rem; font-weight: 700; }

.pricing-card--featured h3,
.pricing-card--featured .pricing-card__amount { color: var(--gold-dark); }

.pricing-card--featured .pricing-card__period { color: var(--text-muted); }

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: 1rem;
}

.pricing-card__amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-card__period { font-size: 0.9375rem; color: var(--text-muted); }

.pricing-card__equiv {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-2);
}

.pricing-card--featured .pricing-card__equiv { color: #b45309; }

.pricing-card__launch {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.12);
  color: var(--gold-dark);
}

.pricing-card__features {
  list-style: none;
  margin: 1.75rem 0;
  padding: 0;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-card--featured .pricing-card__features li { color: var(--text-muted); }

.pricing-card__features svg { width: 1.125rem; height: 1.125rem; color: var(--brand); flex-shrink: 0; }
.pricing-card--featured .pricing-card__features svg { color: #e8870e; }

.pricing-card--featured .btn-glow {
  background: var(--gradient-fire);
  color: #fff;
  box-shadow: 0 8px 28px -8px rgba(255, 107, 53, 0.45);
}

.pricing-card--featured .btn-glow:hover {
  box-shadow: 0 12px 36px -8px rgba(255, 107, 53, 0.55);
}

.pricing-grid .pricing-card:nth-child(2) {
  border-color: rgba(255, 152, 0, 0.28);
}

.pricing-grid .pricing-card:nth-child(2) h3 {
  color: var(--gold-dark);
}

.pricing-grid .pricing-card:nth-child(2) .btn-brand {
  background: var(--gradient-gold);
  color: #1a1208;
  box-shadow: 0 8px 28px -8px var(--gold-glow);
}

html.dark .pricing-card--featured h3,
html.dark .pricing-card--featured .pricing-card__amount {
  color: #f5c842;
}

html.dark .pricing-card--featured .pricing-card__equiv,
html.dark .pricing-card--featured .pricing-card__launch,
html.dark .hero__trial {
  color: #fbbf24;
}

html.dark .pricing-grid .pricing-card:nth-child(2) h3 {
  color: #f5c842;
}

.pricing-roi {
  margin-top: 2.5rem;
  text-align: center;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(13,148,136,0.08));
  border: 1px solid var(--border);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.pricing-roi strong { color: var(--text); }

/* FAQ */
.faq-list { max-width: 44rem; margin: 3rem auto 0; }

.faq-item {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(8px);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.faq-item summary:hover { color: var(--brand); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brand);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  padding-right: 2.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* CTA banner */
.cta-banner {
  margin: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem);
  padding: clamp(4rem, 10vw, 6rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--gradient-brand);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  box-shadow: 0 32px 64px -24px var(--brand-glow);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(255,255,255,0.15), transparent 50%),
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(255,255,255,0.1), transparent 50%);
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin-inline: auto;
}

.cta-banner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.cta-banner p {
  margin: 1.25rem auto 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.0625rem;
}

.cta-banner .btn-glow {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.cta-banner .btn-glow:hover {
  background: var(--bg);
  color: var(--text);
  transform: translateY(-3px);
}
.cta-banner .btn-glass {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(8px);
}
.cta-banner .btn-glass:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
  margin-top: 2rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-2) 80%, var(--bg));
  padding: 3.5rem 0 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-tagline { margin: 0.375rem 0 0; font-size: 0.875rem; color: var(--text-muted); }

.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.footer-nav a { font-size: 0.875rem; font-weight: 600; color: var(--text-muted); transition: color 0.2s; }
.footer-nav a:hover { color: var(--brand); }

.footer-stores { display: flex; gap: 0.625rem; }

.footer-stores a {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  transition: all 0.2s;
}

.footer-stores a:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

.footer-legal {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.footer-trademark {
  margin: 0.375rem 0 0;
  font-size: 0.6875rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* Legal pages */
.page-legal { padding: calc(var(--header-h) + 3rem) 0 5rem; }
.page-legal h1 { margin: 0 0 0.5rem; font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 800; letter-spacing: -0.035em; }
.page-legal .meta { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0; }
.page-legal section { margin-bottom: 2.25rem; }
.page-legal h2 { font-size: 1.125rem; font-weight: 700; margin: 0 0 0.625rem; color: var(--text); }
.page-legal h3 { font-size: 0.9375rem; font-weight: 700; margin: 1rem 0 0.375rem; color: var(--text); }
.page-legal p { color: var(--text-muted); margin: 0 0 0.75rem; line-height: 1.7; }
.page-legal p:last-child { margin-bottom: 0; }
.page-legal ul, .page-legal ol { margin: 0.5rem 0 0.75rem; padding-left: 1.25rem; color: var(--text-muted); line-height: 1.75; }
.page-legal li { margin-bottom: 0.375rem; }
.page-legal li strong { color: var(--text); font-weight: 600; }
.page-legal a:not(.btn) { color: var(--brand); font-weight: 600; }
.page-legal a:not(.btn):hover { text-decoration: underline; }

.page-legal__lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 1rem 0 2rem;
  max-width: 42rem;
}

.page-legal__trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.page-legal__trust-item {
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-2);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.4;
}

.page-legal__trust-item span {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.page-legal__cta {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--gradient-brand);
  color: #fff;
  text-align: center;
}

.page-legal__cta h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.page-legal__cta p {
  margin: 0 auto 1.25rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9375rem;
}

.page-legal__cta .btn-glow {
  background: #fff;
  color: var(--text);
  box-shadow: none;
}

.page-legal__cta .btn-glow:hover {
  background: var(--bg-2);
  color: var(--text);
}

.page-support__grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .page-support__grid { grid-template-columns: 1fr 1fr; }
}

.page-support__card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--surface-solid);
  box-shadow: var(--shadow-sm);
}

.page-support__card h2 {
  margin: 0 0 0.375rem;
  font-size: 1.0625rem;
  font-weight: 700;
}

.page-support__card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.page-support__card .support-sla {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--brand);
  font-weight: 600;
}

.page-support__faq {
  margin-top: 2.5rem;
}

.page-support__faq > h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 2rem;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   ANIMATIONS HTML5 AVANCÉES
   ============================================ */

/* Barre de progression de défilement */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--gradient-brand);
  z-index: 300;
  will-change: transform;
  box-shadow: 0 0 12px var(--brand-glow);
}

/* Aurora animée dans le hero */
@keyframes aurora-1 {
  0%, 100% { transform: translate(-10%, -10%) scale(1); }
  33% { transform: translate(15%, 5%) scale(1.15); }
  66% { transform: translate(-5%, 15%) scale(0.95); }
}
@keyframes aurora-2 {
  0%, 100% { transform: translate(10%, 10%) scale(1.05); }
  50% { transform: translate(-15%, -8%) scale(1.2); }
}

.hero__mesh::before,
.hero__mesh::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  will-change: transform;
}
.hero__mesh::before {
  width: 42rem;
  height: 42rem;
  top: -14rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.45), transparent 65%);
  animation: aurora-1 18s var(--ease) infinite;
}
.hero__mesh::after {
  width: 36rem;
  height: 36rem;
  top: -8rem;
  right: -8rem;
  left: auto;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.4), transparent 65%);
  animation: aurora-2 22s var(--ease) infinite;
}
html.dark .hero__mesh::before { opacity: 0.4; }
html.dark .hero__mesh::after { opacity: 0.35; }

/* Couche de particules */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Titre dégradé animé */
@keyframes gradient-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero__accent {
  background: linear-gradient(90deg, #2dbdce, #168a96, #2dbdce, #168a96, #2dbdce);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-flow 6s linear infinite;
}

/* Apparition par mots du titre hero */
@keyframes word-rise {
  from { opacity: 0; transform: translateY(0.5em) rotate(2deg); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0) rotate(0); filter: blur(0); }
}
.hero h1 .word {
  display: inline-block;
  opacity: 0;
  animation: word-rise 0.75s var(--ease) forwards;
}
.hero h1 .hero__accent.word {
  animation: word-rise 0.75s var(--ease) forwards, gradient-flow 6s linear 0.8s infinite;
}

/* Variantes de reveal directionnelles + stagger */
.reveal--left { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal--scale { transform: scale(0.92); }
.reveal--left.is-visible,
.reveal--right.is-visible { transform: translateX(0); }
.reveal--scale.is-visible { transform: scale(1); }

[data-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
[data-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].is-visible > *:nth-child(2) { transition-delay: 0.15s; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: 0.25s; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: 0.35s; }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: 0.45s; }
[data-stagger].is-visible > *:nth-child(6) { transition-delay: 0.55s; }

/* Boutons : effet de balayage lumineux */
.btn-glow, .btn-order, .btn-brand {
  position: relative;
  overflow: hidden;
}
.btn-glow::after, .btn-order::after, .btn-brand::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}
.btn-glow:hover::after, .btn-order:hover::after, .btn-brand:hover::after {
  left: 130%;
}

/* Boutons magnétiques (JS) */
.btn[data-magnetic] {
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  will-change: transform;
}

/* Cartes à inclinaison 3D + lueur suiveuse */
[data-tilt] {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition: transform 0.3s var(--ease);
  will-change: transform;
}
[data-tilt]::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0,102,255,0.18), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
[data-tilt]:hover::after { opacity: 1; }

/* Soulignement animé nav */
.nav-desktop a {
  position: relative;
}
.nav-desktop a::after { display: none; }

/* Téléphone hero : entrée 3D + lévitation */
@keyframes phone-enter {
  from { opacity: 0; transform: translateY(60px) rotateX(18deg) scale(0.9); }
  to { opacity: 1; transform: translateY(0) rotateX(0) scale(1); }
}
.hero__product .phone {
  animation: phone-enter 1s var(--ease) 0.3s both, float 6s ease-in-out 1.3s infinite;
}

/* Pulsation de la pastille hors-ligne */
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(52,211,153,0); }
}
.phone__offline { animation: badge-pulse 2.5s ease infinite; }

/* Bordure animée carte recommandée */
@keyframes border-rotate {
  to { transform: rotate(360deg); }
}
.pricing-card--featured { position: relative; }
.pricing-card--featured::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent 0deg, #ffd75e 60deg, #ff6b35 120deg, transparent 180deg, transparent 360deg);
  z-index: -1;
  opacity: 0.9;
}

/* Compteurs : effet de pop à l'arrivée */
@keyframes count-pop {
  0% { transform: scale(0.8); opacity: 0; }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
.hero__stat.is-counting strong { animation: count-pop 0.6s var(--ease) both; }

/* Highlight cards : numéro qui se colore au survol */
.highlight-card__num {
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}
.highlight-card:hover .highlight-card__num {
  color: var(--brand);
  transform: translateX(6px);
}

/* Feature icon : rebond léger au survol */
@keyframes icon-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.feature-card:hover .feature-card__icon { animation: icon-bounce 0.6s var(--ease); }

/* Étoiles d'avis : apparition séquencée */
@keyframes star-in {
  from { opacity: 0; transform: scale(0) rotate(-30deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}
.review-card.is-visible .review-card__stars { animation: star-in 0.5s var(--ease) both; }

/* Lien de retour flèche animée */
.back-link svg { transition: transform 0.25s var(--ease); }
.back-link:hover svg { transform: translateX(-4px); }

/* ============================================
   STRUCTURE & ANIMATIONS STYLE CRAFTO
   ============================================ */

/* --- Hero : produit avec labels flottants --- */
.hero__stage {
  position: relative;
  margin-top: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(380px, 55vh, 560px);
}

.hero__stage .phone {
  position: relative;
  z-index: 2;
  width: min(300px, 76vw);
  filter: drop-shadow(var(--shadow-product));
}

/* Badge circulaire rotatif */
.spin-badge {
  position: absolute;
  z-index: 3;
  top: 8%;
  right: 8%;
  width: 7.5rem;
  height: 7.5rem;
  display: grid;
  place-items: center;
}

.spin-badge__text {
  position: absolute;
  inset: 0;
  animation: spin-slow 14s linear infinite;
}

@keyframes spin-slow { to { transform: rotate(360deg); } }

.spin-badge__text text {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  fill: var(--text);
  text-transform: uppercase;
}

.spin-badge__core {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px -8px var(--brand-glow);
}

/* Labels flottants type Crafto */
.spec-label {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  font-size: 0.6875rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  animation: label-in 0.7s var(--ease) forwards, label-float 5s ease-in-out infinite;
}

.spec-label::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: 0 0 8px var(--brand-glow);
}

@media (max-width: 1099px) {
  .spec-label { display: none; }
  .spin-badge { display: none; }
}

@keyframes label-in {
  from { opacity: 0; transform: translateY(10px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes label-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.spec-label:nth-of-type(1) { top: 6%; left: 2%; animation-delay: 0.5s, 1.2s; }
.spec-label:nth-of-type(2) { top: 24%; left: -3%; animation-delay: 0.7s, 1.6s; }
.spec-label:nth-of-type(3) { top: 48%; left: 0%; animation-delay: 0.9s, 1.1s; }
.spec-label:nth-of-type(4) { bottom: 16%; left: 4%; animation-delay: 1.1s, 1.9s; }
.spec-label:nth-of-type(5) { top: 14%; right: 1%; animation-delay: 0.6s, 1.4s; }
.spec-label:nth-of-type(6) { top: 38%; right: -3%; animation-delay: 0.8s, 1.0s; }
.spec-label:nth-of-type(7) { bottom: 26%; right: 1%; animation-delay: 1.0s, 1.7s; }
.spec-label:nth-of-type(8) { bottom: 6%; right: 6%; animation-delay: 1.2s, 1.3s; }

@media (max-width: 768px) {
  .spec-label:nth-of-type(2),
  .spec-label:nth-of-type(6),
  .spec-label:nth-of-type(7) { display: none; }
  .spec-label { font-size: 0.6875rem; padding: 0.4rem 0.7rem; }
  .spin-badge { width: 5.5rem; height: 5.5rem; top: 2%; right: 2%; }
}

/* --- Highlights avec grand numéro filigrane --- */
.statement {
  position: relative;
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  overflow: hidden;
}

.statement__watermark {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  font-size: clamp(10rem, 30vw, 24rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--border);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.statement__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  max-width: 44rem;
}

.statement__item {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.statement__num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand);
  flex-shrink: 0;
}

.statement__text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.statement__text strong { color: var(--brand); font-weight: 800; }

/* --- Section épinglée (pinned scroll) --- */
.pinned__head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
}

.pinned__eyebrow {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}

.pinned__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 992px) {
  .pinned__grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .pinned__visual {
    position: sticky;
    top: var(--header-h);
    height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.pinned__visual .phone { width: min(280px, 70vw); filter: drop-shadow(var(--shadow-product)); }

.pinned__panel.is-active .pinned__panel-eyebrow { color: var(--brand); }

.pinned__panel {
  padding: clamp(2rem, 6vw, 4rem) 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .pinned__panel {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: none;
    background: transparent;
    backdrop-filter: none;
    padding: clamp(2rem, 6vw, 4rem) 0;
    margin-bottom: 0;
    border-radius: 0;
  }
}

.pinned__panel-eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pinned__panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.pinned__panel p {
  margin: 1rem 0 0;
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 30rem;
}

/* --- Grand marquee texte (outline/filled) --- */
.bigmarquee {
  padding: clamp(3rem, 7vw, 5rem) 0;
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-2) 50%, transparent);
}

.bigmarquee__word--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px color-mix(in srgb, var(--text) 35%, transparent);
}

.bigmarquee__dot {
  width: clamp(0.5rem, 1.2vw, 0.875rem);
  height: clamp(0.5rem, 1.2vw, 0.875rem);
  border-radius: 50%;
  background: var(--gradient-brand);
  flex-shrink: 0;
  box-shadow: 0 0 16px var(--brand-glow);
}

.bigmarquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.bigmarquee__group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
}

.bigmarquee__word {
  font-size: clamp(2.5rem, 9vw, 6rem);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  white-space: nowrap;
}

/* --- Composition éclatée --- */
.composition__stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(360px, 50vh, 540px);
  margin-top: 2rem;
}

.composition__stage .phone { width: min(280px, 70vw); position: relative; z-index: 2; filter: drop-shadow(var(--shadow-product)); }

.comp-pin {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 700;
}

.comp-pin__dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  border: 2px solid var(--brand);
  background: var(--surface-solid);
  position: relative;
}

.comp-pin__dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--brand);
  opacity: 0.4;
  animation: pulse-glow 2.5s ease infinite;
}

.comp-pin span {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.comp-pin--l1 { top: 10%; left: 4%; }
.comp-pin--l2 { top: 40%; left: -2%; }
.comp-pin--l3 { bottom: 14%; left: 6%; }
.comp-pin--r1 { top: 16%; right: 3%; flex-direction: row-reverse; }
.comp-pin--r2 { top: 46%; right: -2%; flex-direction: row-reverse; }
.comp-pin--r3 { bottom: 10%; right: 5%; flex-direction: row-reverse; }

@media (max-width: 768px) {
  .comp-pin { font-size: 0.6875rem; }
  .comp-pin--l2, .comp-pin--r2 { display: none; }
}

/* --- Carrousel d'avis --- */
.reviews-carousel {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.reviews-carousel__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee 45s linear infinite;
  will-change: transform;
}

.reviews-carousel:hover .reviews-carousel__track { animation-play-state: paused; }

.reviews-carousel .review-card {
  width: min(22rem, 80vw);
  flex-shrink: 0;
}

/* Mobile / tactile : défilement natif au doigt (l'animation CSS est peu fiable sur iOS) */
@media (max-width: 767px), (hover: none) and (pointer: coarse) {
  .reviews-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: clamp(1rem, 4vw, 2rem);
    touch-action: pan-x;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: none;
  }

  .reviews-carousel::-webkit-scrollbar { display: none; }

  .reviews-carousel__track {
    animation: none !important;
    transform: none !important;
    padding-inline: clamp(1rem, 4vw, 2rem);
    padding-bottom: 0.25rem;
  }

  .reviews-carousel .review-card {
    scroll-snap-align: center;
  }
}

.reviews-more {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reviews-more strong { color: var(--brand); }

/* --- Bande contact --- */
.contact-band {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border-block: 1px solid var(--border);
}

.contact-band__grid {
  display: grid;
  gap: 2.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .contact-band__grid { grid-template-columns: 1fr 1fr; text-align: left; }
}

.contact-band h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.contact-band__items { display: grid; gap: 1.5rem; align-content: center; }

.contact-band__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-band__value {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.contact-band__value a:hover { color: var(--brand); }

/* --- Nuanciers (couleurs/offres) --- */
.swatches {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0;
}

.swatch {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: transform 0.2s var(--ease), border-color 0.2s;
}

.swatch:hover { transform: scale(1.1); }
.swatch.is-active { border-color: var(--brand); transform: scale(1.15); }

/* --- Adaptations tactiles (pas de survol sur mobile) --- */
@media (hover: none) {
  /* Balayage lumineux automatique des CTA */
  .btn-glow::after,
  .btn-order::after,
  .btn-brand::after {
    animation: shine-sweep 4.5s ease-in-out infinite;
  }

  /* Retour visuel au toucher */
  .btn:active { transform: scale(0.96); }
  .feature-card:active,
  .review-card:active,
  .glass-card:active { background: var(--bg-2); }
  .highlight-card:active .highlight-card__num,
  .statement__item:active .statement__num { color: var(--brand); }

  /* L'icône fonctionnalité s'anime à l'apparition au lieu du survol */
  .features-bento.is-visible .feature-card__icon {
    background: var(--gradient-brand);
    color: #fff;
  }
}

@keyframes shine-sweep {
  0% { left: -120%; }
  18% { left: 130%; }
  100% { left: 130%; }
}

@media (prefers-reduced-motion: reduce) {
  .spin-badge__text,
  .spec-label,
  .comp-pin__dot::after { animation: none !important; }
  .spec-label { opacity: 1 !important; }
  .reviews-carousel__track,
  .bigmarquee__track { animation: none !important; }

  .reviews-carousel {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: clamp(1rem, 4vw, 2rem);
    touch-action: pan-x;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: none;
  }

  .reviews-carousel::-webkit-scrollbar { display: none; }

  .reviews-carousel__track {
    transform: none !important;
    padding-inline: clamp(1rem, 4vw, 2rem);
  }

  .reviews-carousel .review-card { scroll-snap-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress,
  .hero__mesh::before,
  .hero__mesh::after,
  .hero__particles { display: none; }
  .hero h1 .word,
  .hero__product .phone,
  .hero__accent { animation: none !important; opacity: 1 !important; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* User guide v2 · timeline layout */
.page-guide {
  padding: 0 0 5rem;
  background: var(--bg);
}

.page-guide .container--guide {
  max-width: 68rem;
}

.page-guide .back-link {
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
}

.guide-progress {
  position: sticky;
  top: var(--header-h);
  z-index: 60;
  height: 3px;
  background: var(--border);
}

.guide-progress__bar {
  height: 100%;
  width: 0%;
  background: var(--gradient-brand);
  transition: width 0.15s linear;
}

.gv2-hero {
  padding: calc(var(--header-h) + 2rem) 0 2.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--gradient-hero);
}

.gv2-hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .gv2-hero__grid {
    grid-template-columns: 1fr min(38%, 16rem);
  }
}

.gv2-hero__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}

.gv2-hero h1 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text);
}

.gv2-hero__lead {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 34rem;
}

.gv2-phases {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem 0.5rem;
  margin-top: 1.5rem;
}

.gv2-phase {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4375rem 0.75rem;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}

.gv2-phase strong {
  color: var(--brand);
  font-weight: 800;
}

.gv2-phase-arrow {
  color: var(--text-muted);
  font-size: 0.875rem;
  opacity: 0.5;
}

.gv2-hero__shot {
  margin: 0;
  justify-self: center;
}

.gv2-hero__shot img {
  display: block;
  width: min(100%, 14rem);
  height: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.3);
}

.gv2-nav {
  position: sticky;
  top: calc(var(--header-h) + 3px);
  z-index: 55;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.gv2-nav__track {
  display: flex;
  gap: 0.375rem;
  padding: 0.625rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.gv2-nav__track::-webkit-scrollbar { display: none; }

.gv2-nav__link {
  flex-shrink: 0;
  padding: 0.4375rem 0.875rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.gv2-nav__link:hover,
.gv2-nav__link.is-active {
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 10%, var(--bg));
  border-color: color-mix(in srgb, var(--brand) 25%, transparent);
}

.gv2-jump {
  padding: 2.5rem 0 1rem;
}

.gv2-jump__title {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.gv2-jump__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
}

@media (max-width: 720px) {
  .gv2-jump__grid { grid-template-columns: repeat(2, 1fr); }
}

.gv2-jump-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.625rem;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.gv2-jump-card:hover {
  border-color: color-mix(in srgb, var(--brand) 35%, var(--border));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.2);
}

.gv2-jump-card img {
  width: 100%;
  height: 5.5rem;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.gv2-jump-card__num {
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 0.04em;
}

.gv2-jump-card__label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.gv2-timeline {
  position: relative;
  padding: 1rem 0 2rem;
}

.gv2-timeline::before {
  content: "";
  position: absolute;
  left: 1.125rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand), color-mix(in srgb, var(--brand) 20%, var(--border)));
  border-radius: 2px;
}

@media (min-width: 768px) {
  .gv2-timeline::before { left: 1.375rem; }
}

.gv2-step {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .gv2-step { padding-left: 3.5rem; }
}

.gv2-step::before {
  content: "";
  position: absolute;
  left: 0.6875rem;
  top: 0.375rem;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 18%, var(--bg));
  z-index: 1;
}

.gv2-step__head {
  margin-bottom: 1.25rem;
}

.gv2-step__phase {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}

.gv2-step__num {
  display: block;
  margin-top: 0.375rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: color-mix(in srgb, var(--text) 12%, transparent);
}

.gv2-step__head h2 {
  margin: 0.375rem 0 0;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
}

.gv2-step__head p {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 40rem;
}

.gv2-step__panel {
  display: grid;
  gap: 1.5rem;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background: var(--bg-2);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .gv2-step__panel {
    grid-template-columns: 1fr min(42%, 14rem);
    align-items: start;
    padding: 1.5rem;
  }

  .gv2-step__panel--reverse .gv2-actions { order: 2; }
  .gv2-step__panel--reverse .gv2-shot { order: 1; }
}

.gv2-actions {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  counter-reset: gv2-action;
}

.gv2-actions li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
  counter-increment: gv2-action;
}

.gv2-actions li::before {
  content: counter(gv2-action);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.375rem;
  height: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
}

.gv2-actions li strong {
  color: var(--text);
  font-weight: 700;
}

.gv2-actions code {
  font-size: 0.8125rem;
  padding: 0.125rem 0.375rem;
  border-radius: 0.375rem;
  background: color-mix(in srgb, var(--brand) 10%, var(--bg));
  color: var(--brand);
  font-weight: 600;
  font-family: ui-monospace, monospace;
}

.gv2-shot {
  margin: 0;
  justify-self: center;
}

.gv2-shot img {
  display: block;
  width: min(100%, 13rem);
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px -16px rgba(0, 0, 0, 0.25);
}

.gv2-cta {
  margin: 2rem 0 1.5rem;
  border-radius: var(--radius-2xl);
  background: var(--gradient-brand);
  overflow: hidden;
}

.gv2-cta__inner {
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  color: #fff;
}

.gv2-cta h2 {
  margin: 0;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.gv2-cta p {
  margin: 0.625rem 0 0;
  font-size: 0.9375rem;
  opacity: 0.9;
}

.gv2-cta .btn-glow {
  margin-top: 1.25rem;
  background: #fff;
  color: var(--brand);
}

.gv2-cta .btn-glow:hover {
  background: rgba(255, 255, 255, 0.92);
}

.guide-footer-links {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.guide-footer-links a {
  color: var(--brand);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .gv2-jump-card { transition: none; }
}
