@import url('https://fonts.cdnfonts.com/css/bebas-neue');
@import url('https://fonts.cdnfonts.com/css/barlow');

:root {
  /* Brand Theme: Premium Purple (Replacing harsh blue) */
  --bleu: #7C3AED;
  --bleu-dark: #5B21B6;
  --bleu-glow: rgba(124, 58, 237, 0.35);
  --bleu-mid: #8B5CF6;
  --bleu-light: #A78BFA;
  --bleu-pale: #C4B5FD;
  --cyan: #00D4FF;
  --cyan-glow: rgba(0, 212, 255, 0.25);
  --blanc: #FFFFFF;
  --noir: #080616;
  --surface: #0F0C24;
  --surface2: #171336;
  --surface3: #1F1A48;
  --surface4: #28215C;
  --border: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(124, 58, 237, 0.4);
  --text-primary: #F2F0FF;
  --text-secondary: #9EAFDF;
  --text-muted: #5D6B9E;
  --green: #00E676;
  --green-glow: rgba(0, 230, 118, 0.2);
  --gold: #FFD14A;
  --rouge: #FF3B5C;
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Bebas Neue', 'Impact', 'Arial Black', sans-serif;
  --font-body: 'Barlow', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--noir);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* ─── SCROLLBAR ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--noir); }
::-webkit-scrollbar-thumb { background: var(--bleu); border-radius: 3px; }

/* ─── UTILITIES ──────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.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;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bleu-light);
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bleu-light);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--blanc);
  margin-bottom: 16px;
}

.section-title span { color: var(--bleu-light); }
.section-title .cyan { color: var(--cyan); }

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.7;
}

/* ─── BUTTONS ──────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--bleu), var(--bleu-dark));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.15));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--bleu-glow);
}

.btn-primary:hover::after { opacity: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.2);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--bleu-light);
}

/* ─── NAVBAR ──────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.35s;
  background: transparent;
}

#navbar.scrolled {
  padding: 8px 0;
  background: rgba(6, 10, 24, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 55px;
  transition: height 0.3s;
}

#navbar.scrolled .nav-logo img { height: 45px; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bleu-light);
  transition: width 0.3s;
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blanc);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav-cta .btn-primary {
  font-size: 13px;
  padding: 12px 24px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--blanc);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: rgba(6, 10, 24, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--bleu-light); }

/* ─── HERO ──────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hero-image.webp') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(124, 58, 237, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
    linear-gradient(to bottom, transparent 60%, var(--noir) 100%);
  z-index: 1;
}

.hero-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 2px,
    rgba(124, 58, 237, 0.015) 2px,
    rgba(124, 58, 237, 0.015) 4px
  );
  pointer-events: none;
  z-index: 2;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, var(--noir) 100%);
  z-index: 2;
}

.hero-glow-blue {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--bleu-glow) 0%, transparent 70%);
  top: -100px; right: -100px;
  z-index: 1;
  animation: floatGlow 8s ease-in-out infinite;
}

.hero-glow-cyan {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
  bottom: 10%; left: -50px;
  z-index: 1;
  animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
  animation: fadeInDown 0.6s ease-out;
}

.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 100px);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--blanc);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title .bleu { color: var(--bleu-light); }
.hero-title .cyan { color: var(--cyan); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 36px;
  animation: fadeInUp 1s ease-out;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 1.2s ease-out;
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease-out;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--blanc);
  display: block;
  line-height: 1;
}

.stat-num span { color: var(--bleu-light); }

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* ─── DEVICES STRIP ──────────────────────────────── */
.devices-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.devices-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.device-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.device-icon {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 10px;
  font-size: 18px;
  color: var(--bleu-light);
}

/* ─── FEATURES / QUALITY ──────────────────────── */
.quality-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.quality-section__glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.06;
  pointer-events: none;
}

.quality-section__glow--tl {
  top: -150px; left: -100px;
  background: var(--bleu);
}

.quality-section__glow--tr {
  top: -50px; right: -100px;
  background: var(--cyan);
}

.quality-header {
  text-align: center;
  margin-bottom: 64px;
}

.quality-header__badge {
  margin: 0 auto 20px;
}

.quality-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  color: var(--blanc);
  margin-bottom: 16px;
}

.quality-title__line { display: block; }
.quality-title__accent { color: var(--bleu-light); display: block; }

.quality-lede {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.quality-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.quality-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.1);
}

.quality-card__index {
  position: absolute;
  top: 14px; right: 18px;
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}

.quality-card__icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 24px;
  margin-bottom: 20px;
}

.quality-card--blue .quality-card__icon {
  background: rgba(124, 58, 237, 0.12);
  color: var(--bleu-light);
}

.quality-card--cyan .quality-card__icon {
  background: rgba(0, 212, 255, 0.12);
  color: var(--cyan);
}

.quality-card--green .quality-card__icon {
  background: rgba(0, 230, 118, 0.12);
  color: var(--green);
}

.quality-card--gold .quality-card__icon {
  background: rgba(255, 209, 74, 0.12);
  color: var(--gold);
}

.quality-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 10px;
}

.quality-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.quality-card__foot { display: flex; gap: 8px; align-items: center; }

.quality-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.quality-pill--blue { background: rgba(124, 58, 237, 0.15); color: var(--bleu-light); }
.quality-pill--cyan { background: rgba(0, 212, 255, 0.15); color: var(--cyan); }
.quality-pill--green { background: rgba(0, 230, 118, 0.15); color: var(--green); }
.quality-pill--gold { background: rgba(255, 209, 74, 0.15); color: var(--gold); }

.quality-pill--inline { font-size: 13px; }
.quality-pill__icon { font-size: 12px; }

/* Quality infobar */
.quality-infobar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.quality-infobar__cell {
  background: var(--surface2);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.quality-infobar__icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 12px;
  font-size: 20px;
  color: var(--bleu-light);
}

.quality-infobar__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 4px;
}

.quality-infobar__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ─── WHY US / ADVANTAGES ──────────────────────── */
.why-section {
  padding: 100px 0;
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--bleu-light), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.08);
}

.why-card:hover::before { opacity: 1; }

.why-card__icon {
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 16px;
  font-size: 28px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--bleu-light);
  border: 1px solid rgba(124, 58, 237, 0.15);
}

.why-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 10px;
}

.why-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── HOW IT WORKS ──────────────────────────────── */
.steps-section {
  padding: 100px 0;
  position: relative;
  background: var(--surface);
}

.steps-header {
  text-align: center;
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--bleu), var(--cyan), var(--bleu), transparent);
  opacity: 0.3;
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-card__num {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bleu), var(--bleu-dark));
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  box-shadow: 0 8px 30px var(--bleu-glow);
  position: relative;
}

.step-card__num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(124, 58, 237, 0.3);
  animation: pulseRing 3s ease-in-out infinite;
}

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0; }
}

.step-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 8px;
}

.step-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── PRICING ──────────────────────────────────── */
#pricing {
  padding: 100px 0;
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.1);
}

.pricing-card.popular {
  border-color: var(--bleu);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.08) 0%, var(--surface2) 40%);
  transform: scale(1.03);
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 20px 60px var(--bleu-glow);
}

.popular-badge {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--bleu), var(--bleu-dark));
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  padding: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan-icon-fa {
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 26px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--bleu-light);
  border: 1px solid rgba(124, 58, 237, 0.15);
  margin-bottom: 20px;
}

.plan-icon-fa--popular {
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.3);
}

.pricing-card.popular .plan-icon-fa {
  margin-top: 26px;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--blanc);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 6px;
}

.price-num {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  color: var(--blanc);
}

.price-num.bleu { color: var(--bleu-light); }

.price-unit {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.price-annual {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.check {
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
}

.check-yes {
  background: rgba(0, 230, 118, 0.12);
  color: var(--green);
  font-size: 11px;
}

.plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.cta-filled {
  background: linear-gradient(135deg, var(--bleu), var(--bleu-dark));
  color: #fff;
  border: none;
}

.cta-filled:hover {
  box-shadow: 0 12px 40px var(--bleu-glow);
  transform: translateY(-2px);
}

.cta-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(255,255,255,0.15);
}

.cta-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--bleu-light);
}

/* Pricing trust */
.pricing-trust {
  margin-top: 48px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.pricing-trust__hero {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}

.pricing-trust__hero-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.pricing-trust__shield-glyph {
  font-size: 36px;
  color: var(--bleu-light);
}

.pricing-trust__bolt-glyph {
  position: absolute;
  font-size: 14px;
  color: var(--gold);
  bottom: 4px; right: 0;
}

.pricing-trust__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 4px;
}

.pricing-trust__lede {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-trust__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.pricing-trust__features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-trust__feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pricing-trust__feat-icon {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 10px;
  font-size: 18px;
  color: var(--bleu-light);
  flex-shrink: 0;
}

.pricing-trust__feat-text { display: flex; flex-direction: column; gap: 2px; }

.pricing-trust__feat-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--blanc);
}

.pricing-trust__feat-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── TESTIMONIALS ──────────────────────────────── */
#testimonials {
  padding: 100px 0;
  background: var(--surface);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.2);
}

.stars { margin-bottom: 16px; }
.star { color: var(--gold); font-size: 16px; }

.testimonial-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  gap: 14px;
  align-items: center;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--blanc);
}

.author-info {
  font-size: 12px;
  color: var(--text-muted);
}

.verified {
  font-size: 11px;
  color: var(--bleu-light);
  font-weight: 600;
  margin-top: 2px;
}

.verified i { font-size: 12px; }

/* ─── FAQ ──────────────────────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.faq-contact {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 32px;
}

.faq-contact h4 {
  font-size: 16px;
  color: var(--blanc);
  margin-bottom: 8px;
}

.faq-contact p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
}

.faq-item:hover,
.faq-item.open {
  border-color: rgba(124, 58, 237, 0.3);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blanc);
  user-select: none;
}

.faq-chevron {
  font-size: 14px;
  color: var(--text-muted);
  transition: transform 0.3s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--bleu-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ─── CTA SECTION ──────────────────────────────── */
#cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  color: var(--blanc);
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-note {
  font-size: 13px;
  color: var(--text-muted);
}

.cta-note i { color: var(--bleu-light); }

/* ─── FOOTER ──────────────────────────────────── */
#footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 16px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-btn {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s;
}

.social-btn:hover {
  background: rgba(124, 58, 237, 0.15);
  color: var(--bleu-light);
  border-color: rgba(124, 58, 237, 0.3);
}

.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.footer-col ul { list-style: none; }

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--bleu-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--bleu-light); }

.footer-stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--bleu), var(--cyan), var(--bleu));
}

/* ─── PAYMENT STRIP ──────────────────────────────── */
.payment-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 0 12px;
  flex-wrap: wrap;
}

.payment-strip img {
  height: 28px;
  opacity: 0.8;
  transition: opacity 0.3s, filter 0.3s;
  filter: grayscale(20%);
}

.payment-strip img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.payment-strip span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── PAGE INTRO (tarifs + contact) ──────────────── */
.pricing-page-intro {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}

.pricing-page-intro__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 30%, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
}

.pricing-page-intro__glow {
  position: absolute;
  width: 400px; height: 400px;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--bleu-glow) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

.pricing-page-intro__shine {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--bleu-light), transparent);
}

.pricing-page-intro__inner {
  position: relative;
  z-index: 1;
}

.pricing-page-intro__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  color: var(--blanc);
  margin-bottom: 16px;
}

.pricing-page-intro__title .bleu { color: var(--bleu-light); }

.pricing-page-intro__lead {
  margin: 0 auto 28px;
  text-align: center;
}

.pricing-page-intro__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── CONTACT ──────────────────────────────────── */
.contact-section { padding: 0 0 100px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.contact-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 8px;
}

.contact-card__intro {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-field { display: flex; flex-direction: column; gap: 6px; }

.contact-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-label span { color: var(--bleu-light); }

.contact-input,
.contact-textarea,
.contact-select {
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
}

.contact-input:focus,
.contact-textarea:focus,
.contact-select:focus {
  border-color: var(--bleu);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: var(--text-muted);
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-select-wrap {
  position: relative;
}

.contact-select {
  appearance: none;
  cursor: pointer;
}

.contact-select__chev {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 14px;
  pointer-events: none;
}

.contact-hint {
  font-size: 12px;
  color: var(--text-muted);
}

.contact-hint span { color: var(--bleu-light); }

.contact-submit {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 18px;
}

/* Contact aside */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-aside__block {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.contact-aside__block--accent {
  border-color: rgba(124, 58, 237, 0.3);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.08) 0%, var(--surface2) 80%);
}

.contact-aside__icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.12);
  border-radius: 14px;
  font-size: 22px;
  color: var(--bleu-light);
  margin-bottom: 16px;
}

.contact-aside__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 8px;
}

.contact-aside__subtitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-aside__subtitle i {
  color: var(--bleu-light);
}

.contact-aside__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-aside__text a {
  color: var(--bleu-light);
  text-decoration: none;
}

.contact-aside__text a:hover { text-decoration: underline; }

/* ─── CATEGORIES MARQUEE ──────────────────────── */
.cat-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  margin-top: 48px;
}

.cat-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cat-card {
  flex-shrink: 0;
  width: 260px;
  height: 260px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  cursor: default;
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.cat-icon {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 2px solid;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  font-size: 20px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.cat-content {
  position: relative;
  z-index: 1;
  margin-left: 14px;
}

.cat-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.cat-count {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

/* ─── SCROLL REVEAL ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── FLOATING ORBS ──────────────────────────────── */
.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.06;
}

.orb1 {
  width: 500px; height: 500px;
  background: var(--bleu);
  top: -100px; left: -100px;
}

.orb2 {
  width: 400px; height: 400px;
  background: var(--cyan);
  bottom: 10%; right: -80px;
}

/* ─── PAGE MAIN ──────────────────────────────────── */
.page-main {
  min-height: 60vh;
}

/* ─── COMPARISON TABLE ──────────────────────────── */
.comparison-section {
  padding: 80px 0;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface2);
  font-size: 14px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.comparison-table thead th {
  background: var(--surface3);
  font-weight: 700;
  color: var(--blanc);
  font-size: 15px;
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
}

.comparison-table tbody td {
  color: var(--text-secondary);
}

.comparison-table .check-icon {
  color: var(--green);
  font-size: 18px;
}

.comparison-table .popular-col {
  background: rgba(124, 58, 237, 0.05);
}

.comparison-table .popular-col-head {
  background: rgba(124, 58, 237, 0.12);
  color: var(--bleu-light);
}

/* ─── GUARANTEE BANNER ──────────────────────────── */
.guarantee-banner {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(0, 212, 255, 0.05));
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 60px;
}

.guarantee-icon {
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.12);
  border-radius: 16px;
  font-size: 28px;
  color: var(--bleu-light);
  flex-shrink: 0;
}

.guarantee-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 6px;
}

.guarantee-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-infobar { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-8px); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .pricing-trust__features { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 13px; }
  .guarantee-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .quality-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .devices-inner { gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-title { font-size: clamp(40px, 10vw, 72px); }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .pricing-page-intro__actions { flex-direction: column; align-items: center; }
}
