/* =========================================================
   BESEEN — DARK PREMIUM STYLESHEET
   ========================================================= */

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand */
  --blue:         #2563EB;
  --blue-hover:   #1D4ED8;
  --blue-dim:     rgba(37, 99, 235, 0.15);
  --blue-mid:     rgba(37, 99, 235, 0.25);
  --blue-glow:    0 0 0 1px rgba(37, 99, 235, 0.55), 0 4px 24px rgba(37, 99, 235, 0.4);
  --white:        #FFFFFF;
  --gold:         #D4AF37;
  --red:          #EF4444;
  --green:        #22C55E;

  /* Dark palette */
  --bg-page:      #0A0E1A;
  --bg-alt:       #0D1117;
  --bg-card:      #111827;
  --bg-card-2:    #1a2236;
  --border:       rgba(255,255,255,0.07);
  --border-md:    rgba(255,255,255,0.12);

  /* Text */
  --text:         #F1F5F9;
  --text-sec:     #94A3B8;
  --text-muted:   #4B5563;

  /* Fonts */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Radii */
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.4), 0 4px 12px rgba(0,0,0,0.3);
  --shadow-md:    0 2px 8px rgba(0,0,0,0.5), 0 8px 24px rgba(0,0,0,0.4);
  --shadow-lg:    0 4px 12px rgba(0,0,0,0.6), 0 16px 48px rgba(0,0,0,0.5);
  --shadow-hover: 0 8px 24px rgba(0,0,0,0.7), 0 24px 56px rgba(0,0,0,0.5);
  --shadow-blue:  0 4px 20px rgba(37, 99, 235, 0.5);

  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --transition:   0.28s var(--ease);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }
svg { max-width: 100%; }

.typewriter-wrapper svg,
#typewriter-text svg { display: inline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
}

/* ==================== LAYOUT ==================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition),
              border-color var(--transition),
              color var(--transition),
              box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn-lg {
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 11px;
}

.btn-full {
  width: 100%;
  margin-top: auto;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue-dim);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  font-weight: 700;
}

.btn-white:hover {
  background: #E0EAFF;
  border-color: #E0EAFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}

/* ==================== SCROLL ANIMATIONS ==================== */
.animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease),
              transform 0.65s var(--ease);
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-anim {
  opacity: 0;
  animation: heroFadeUp 0.75s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==================== SECTION HEADER ==================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text);
}

.section-header p {
  font-size: 18px;
  color: var(--text-sec);
  font-weight: 400;
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: background var(--transition),
              padding var(--transition),
              box-shadow var(--transition),
              backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 1px 16px rgba(0,0,0,0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 1;
}

.footer-logo { margin-bottom: 14px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links li a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-sec);
  padding: 6px 13px;
  border-radius: 7px;
  transition: color var(--transition), background var(--transition);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
  transform-origin: left;
}

.nav-links li a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav-links li a.nav-active {
  color: var(--white);
}

.nav-links li a.nav-active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 16px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
  border-radius: 8px;
  transition: background var(--transition);
  flex-shrink: 0;
}

.nav-toggle:hover { background: rgba(255,255,255,0.07); }

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: var(--bg-page);
}

#constellation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* 2-column inner layout */
.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 48px;
  align-items: center;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 24px 24px;
  position: relative;
  z-index: 1;
}

/* Slides stacked in same grid cell */
.hero-slides { display: grid; }

.hero-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-slide.exiting {
  opacity: 0;
  transform: translateX(-30px);
}

/* Badge pill */
.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #93C5FD;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.28);
  border-radius: 999px;
  padding: 5px 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(38px, 5vw, 74px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: var(--white);
  white-space: normal;
}

.seen-word {
  display: inline-block;
  font-style: italic;
  background: linear-gradient(135deg, #60A5FA 0%, #818CF8 55%, #C084FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.seen-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
}

.hero-subtitle {
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--text-sec);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 520px;
  font-weight: 400;
}

.br-desktop { display: none; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Hero stats row */
.hero-stats {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-md);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 0;
  width: fit-content;
}

.hero-stat { padding: 0 28px; text-align: center; }
.hero-stat-sep { width: 1px; height: 36px; background: var(--border-md); flex-shrink: 0; }

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--text-sec);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==================== CAROUSEL CONTROLS ==================== */
.hero-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 24px 44px;
  position: relative;
  z-index: 2;
}

.hero-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-md);
  border-radius: 50%;
  color: var(--text-sec);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.hero-arrow:hover {
  background: rgba(37, 99, 235, 0.2);
  border-color: var(--blue);
  color: var(--white);
}

.hero-dots { display: flex; align-items: center; gap: 10px; }

.hero-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
}

.hero-dot::after {
  content: '';
  position: absolute;
  inset: -14px -12px;
}

.hero-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--blue);
}

.hero-dot.active::before {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  height: 2px;
  width: 0;
  background: #60A5FA;
  border-radius: 2px;
  animation: dotFill 6s linear forwards;
}

@keyframes dotFill { to { width: 100%; } }

/* ==================== ORBITAL (ATOM STYLE) ==================== */
.hero-orbital {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.orbital-system {
  position: relative;
  width: 520px;
  height: 520px;
}

.orbital-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.45);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 4;
  animation: centerPulse 3.5s ease-in-out infinite;
}

.orbital-center span {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes centerPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(37,99,235,0.15), 0 0 50px rgba(37,99,235,0.05); }
  50%       { box-shadow: 0 0 40px rgba(37,99,235,0.4),  0 0 80px rgba(37,99,235,0.15); }
}

/* Tilted atom rings */
.atom-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  pointer-events: none;
}

.atom-ring-1 {
  width: 380px; height: 380px;
  margin: -190px 0 0 -190px;
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  animation: atomRing1 18s linear infinite;
}

.atom-ring-2 {
  width: 310px; height: 310px;
  margin: -155px 0 0 -155px;
  border: 1px solid rgba(37, 99, 235, 0.4);
  animation: atomRing2 13s linear infinite;
}

.atom-ring-3 {
  width: 240px; height: 240px;
  margin: -120px 0 0 -120px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  animation: atomRing3 22s linear infinite;
}

@keyframes atomRing1 {
  from { transform: perspective(600px) rotateX(72deg) rotateZ(0deg); }
  to   { transform: perspective(600px) rotateX(72deg) rotateZ(360deg); }
}
@keyframes atomRing2 {
  from { transform: perspective(600px) rotateX(68deg) rotateZ(60deg); }
  to   { transform: perspective(600px) rotateX(68deg) rotateZ(420deg); }
}
@keyframes atomRing3 {
  from { transform: perspective(600px) rotateX(74deg) rotateZ(120deg); }
  to   { transform: perspective(600px) rotateX(74deg) rotateZ(480deg); }
}

/* Floating service pills */
.float-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(13, 17, 23, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.04);
  z-index: 5;
  animation: floatBob var(--fd, 3.5s) ease-in-out infinite;
  animation-delay: var(--fdelay, 0s);
  transition: border-color 0.25s, box-shadow 0.25s, color 0.25s;
}

.float-pill:hover {
  border-color: rgba(37, 99, 235, 0.6);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 20px rgba(37,99,235,0.3);
  color: #fff;
}

@keyframes floatBob {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* Pill positions within 520×520 system */
.fp-1 { top: 55px;   right: 22px;  }
.fp-2 { top: 195px;  left: 10px;   }
.fp-3 { bottom: 65px; left: 35px;  }
.fp-4 { top: 22px;   left: 155px;  }
.fp-5 { bottom: 88px; right: 18px; }
.fp-6 { top: 328px;  right: 10px;  }

@media (prefers-reduced-motion: reduce) {
  .atom-ring, .float-pill { animation: none; }
}


/* ==================== URGENCY SECTION ==================== */
.urgency {
  padding: 110px 0;
  background: var(--bg-alt);
}

.urgency-header {
  text-align: center;
  margin-bottom: 72px;
}

.urgency-header h2 {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.15;
}

.urgency-header h2 br { display: block; }

.urgency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Broken site mockup */
.broken-browser {
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(239, 68, 68, 0.15),
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 6px 16px rgba(0, 0, 0, 0.4);
}

.broken-url {
  display: flex;
  align-items: center;
  gap: 8px;
}

.broken-spinner {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255,255,255,0.15);
  border-top-color: #EF4444;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  flex-shrink: 0;
}

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

.broken-content {
  background: #0C0C0C;
  padding: 24px 20px 20px;
}

.broken-error-block {
  text-align: center;
  padding: 16px 0 20px;
}

.broken-err-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.broken-err-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #F1F5F9;
  margin-bottom: 6px;
}

.broken-err-code {
  font-size: 11px;
  color: #EF4444;
  font-family: monospace;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.broken-load-wrap {
  margin-bottom: 20px;
}

.broken-load-bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
  position: relative;
}

.broken-load-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, #EF4444, #F97316);
  border-radius: 3px;
  animation: stuckLoad 4s ease-out infinite;
}

@keyframes stuckLoad {
  0%   { width: 0%; opacity: 1; }
  50%  { width: 62%; opacity: 1; }
  75%  { width: 64%; opacity: 0.7; }
  90%  { width: 64%; opacity: 0.4; }
  100% { width: 64%; opacity: 0; }
}

.broken-load-label {
  font-size: 10px;
  color: #4B5563;
  letter-spacing: 0.02em;
}

.broken-skeletons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.broken-skel {
  border-radius: 6px;
  background: linear-gradient(90deg, #1a1a1a 25%, #222 50%, #1a1a1a 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

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

.broken-skel-wide  { height: 32px; }
.broken-skel-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.broken-skel-card  { height: 52px; border-radius: 6px; }
.broken-skel-thin  { height: 12px; }
.broken-skel-short { width: 60%; }

.broken-caption {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* Counters */
.urgency-counters {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.counter-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: border-color var(--transition);
}

.counter-item:hover {
  border-color: var(--border-md);
}

.counter-item-accent {
  border-color: rgba(37, 99, 235, 0.3);
}

.counter-item-accent:hover {
  border-color: rgba(37, 99, 235, 0.5);
}

.counter-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.counter-item-accent .counter-value {
  color: #60A5FA;
}

.counter-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.counter-desc {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.5;
}

.urgency-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 8px;
}

/* ==================== PAIN POINTS ==================== */
.painpoints {
  padding: 110px 0;
  background: var(--bg-alt);
}

.painpoints-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pain-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pain-icon {
  font-size: 26px;
  line-height: 1;
}

.pain-quote {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  font-style: italic;
}

.pain-desc {
  font-size: 13.5px;
  color: var(--text-sec);
  line-height: 1.6;
}

.painpoints-cta {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(129, 140, 248, 0.06) 100%);
  border: 1px solid rgba(37, 99, 235, 0.28);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.painpoints-cta-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.55;
  max-width: 600px;
}

/* ==================== COMPARE ==================== */
.compare {
  padding: 110px 0;
  background: var(--bg-page);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
}

.compare-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
}

.compare-before { border-top-color: var(--red); }
.compare-after  { border-top-color: var(--green); }

.compare-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.compare-before h3 { color: var(--red); }
.compare-after h3  { color: var(--green); }

.compare-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-sec);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.compare-card ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.list-icon {
  flex-shrink: 0;
  font-size: 15px;
  margin-top: 1px;
}

.compare-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.divider-line {
  width: 1px;
  height: 70px;
  background: var(--border-md);
}

.divider-arrow {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  opacity: 0.7;
}

/* ==================== PRICING ==================== */
.pricing {
  padding: 110px 0;
  background: var(--bg-alt);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition),
              box-shadow var(--transition),
              border-color var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-md);
}

.pricing-popular {
  border-color: var(--blue);
  background: #0f1929;
  transform: translateY(-10px);
  box-shadow: var(--blue-glow), var(--shadow-lg);
}

.pricing-popular:hover {
  transform: translateY(-16px);
  box-shadow: var(--blue-glow), var(--shadow-hover);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px rgba(37,99,235,0.5);
}

.pricing-icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.pricing-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--white);
}

.pricing-price {
  margin: 12px 0 28px;
}

.price {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-plus {
  font-size: 28px;
  vertical-align: super;
}

.pricing-features {
  flex: 1;
  margin-bottom: 28px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.pricing-popular .pricing-features {
  border-top-color: rgba(37, 99, 235, 0.3);
}

.pricing-features li {
  display: flex;
  align-items: baseline;
  gap: 9px;
  padding: 9px 0;
  font-size: 14.5px;
  color: var(--text-sec);
  border-bottom: 1px solid var(--border);
  line-height: 1.45;
}

.pricing-popular .pricing-features li {
  border-bottom-color: rgba(37, 99, 235, 0.15);
  color: #CBD5E1;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '→';
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ==================== CASE STUDY ==================== */
.casestudy {
  padding: 110px 0;
  background: #060911;
  color: var(--white);
}

.casestudy-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.casestudy-tag {
  display: inline-block;
  background: rgba(37, 99, 235, 0.2);
  color: #93C5FD;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
  border: 1px solid rgba(37, 99, 235, 0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.casestudy-info h2 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--white);
}

.casestudy-demo {
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.casestudy-location {
  color: #94A3B8;
  font-size: 15px;
  margin-bottom: 22px;
}

.casestudy-desc {
  font-size: 17px;
  color: #CBD5E1;
  line-height: 1.75;
  margin-bottom: 36px;
}

.casestudy-results {
  display: flex;
  gap: 36px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.result-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.result-value {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1;
}

.result-label {
  font-size: 12px;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.casestudy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: rgba(255,255,255,0.06);
  color: #CBD5E1;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.09);
}

/* Browser Mockup */
.browser-mockup {
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 30px 60px rgba(0,0,0,0.6),
    0 6px 16px rgba(0,0,0,0.4);
}

.browser-bar {
  background: #1E1E1E;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.browser-dots {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red    { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green  { background: #28CA41; }

.browser-url {
  flex: 1;
  background: #2C2C2C;
  border-radius: 6px;
  padding: 5px 12px;
  color: #888;
  font-size: 12px;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

.browser-content { background: #0A0A0A; }

.mock-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(212,175,55,0.18);
}

.mock-logo {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.1em;
}

.mock-cart { font-size: 17px; }

.mock-hero-section {
  padding: 28px 20px 24px;
  background: linear-gradient(140deg, #0D0D0D 0%, #1a1408 100%);
}

.mock-subtitle {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.85;
}

.mock-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.mock-cta {
  display: inline-block;
  background: var(--gold);
  color: #0A0A0A;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.mock-products {
  padding: 16px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mock-product {
  background: #161616;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.12);
}

.mock-product-img {
  font-size: 26px;
  text-align: center;
  padding: 12px 10px 8px;
  background: #1a1a1a;
}

.mock-product-info {
  padding: 7px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mock-product-name { font-size: 11px; color: #CCC; font-weight: 500; }
.mock-price { font-size: 12px; color: var(--gold); font-weight: 700; }

.mock-footer-bar {
  display: flex;
  gap: 10px;
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
}

.mock-badge { font-size: 10px; color: #6B7280; letter-spacing: 0.02em; }

/* ==================== CTA FINAL ==================== */
.cta-final {
  padding: 130px 0;
  background: var(--bg-page);
  border-top: 1px solid rgba(37, 99, 235, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-final::after {
  content: '';
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 19px;
  color: var(--text-sec);
  margin-bottom: 44px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ==================== CONTACT FORM ==================== */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 2px solid var(--border-md);
  background: var(--bg-card);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  background: var(--bg-card-2);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form .btn {
  align-self: center;
  margin-top: 6px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sec);
  letter-spacing: 0.01em;
}

/* ==================== FOOTER ==================== */
.footer {
  background: #060911;
  color: #94A3B8;
  border-top: 1px solid var(--border);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding: 72px 24px 56px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 240px;
  color: #64748B;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul a,
.footer-col ul li {
  font-size: 15px;
  color: #64748B;
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--white); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); }

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 14px;
  color: #374151;
}

.footer-legal-link { color: #374151; }
.footer-legal-link:hover { color: var(--blue); }

/* ==================== RESPONSIVE ==================== */
@media (min-width: 900px) {
  .br-desktop { display: inline; }
}

@media (max-width: 1024px) {
  .casestudy-container { gap: 52px; }
  .pricing-grid { gap: 18px; }
}

@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 440px; gap: 36px; }
  .orbital-system { width: 420px; height: 420px; }
  .atom-ring-1 { width: 308px; height: 308px; margin: -154px 0 0 -154px; }
  .atom-ring-2 { width: 251px; height: 251px; margin: -126px 0 0 -126px; }
  .atom-ring-3 { width: 194px; height: 194px; margin: -97px  0 0 -97px;  }
  .fp-1 { top: 44px;   right: 18px;  }
  .fp-2 { top: 158px;  left: 8px;    }
  .fp-3 { bottom: 53px; left: 28px;  }
  .fp-4 { top: 18px;   left: 125px;  }
  .fp-5 { bottom: 71px; right: 15px; }
  .fp-6 { top: 265px;  right: 8px;   }
}

@media (max-width: 900px) {
  .painpoints, .compare, .process-section, .pricing,
  .testimonials-section, .casestudy, .faq-section { border-radius: 0; box-shadow: none; }

  .painpoints-grid { grid-template-columns: repeat(2, 1fr); }

  .pain-extra { display: none; }
  .painpoints.expanded .pain-extra { display: flex; }

  .pain-toggle-wrap {
    display: flex;
    justify-content: center;
    margin: 8px 0 32px;
  }

  .pain-voir-plus,
  .pain-voir-moins {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    background: transparent;
    border: 1px solid var(--border-md);
    border-radius: 10px;
    color: var(--text-sec);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }

  .pain-voir-plus:hover,
  .pain-voir-moins:hover {
    border-color: rgba(37, 99, 235, 0.5);
    color: var(--text);
    background: rgba(37, 99, 235, 0.06);
  }

  .pain-voir-moins { display: none; }
  .painpoints.expanded .pain-voir-plus { display: none; }
  .painpoints.expanded .pain-voir-moins { display: inline-flex; }

  .painpoints-cta {
    flex-direction: column;
    padding: 28px 24px;
    text-align: center;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-connector { display: none; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .urgency-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .compare-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .compare-divider { display: none; }

  .casestudy-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .casestudy-mockup { order: -1; }
}

@media (max-width: 768px) {
  .mobile-sticky-cta { display: block; }

  /* Prevent footer/last-section from hiding behind sticky CTA bar */
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }

  /* Remove stacking border-radius on mobile — it creates visible card outlines */
  .painpoints, .compare, .process-section, .pricing,
  .testimonials-section, .casestudy, .faq-section { border-radius: 0; box-shadow: none; }

  /* Missing section padding reductions */
  .painpoints  { padding: 72px 0; }
  .faq-section { padding: 72px 0; }
  .cta-final   { padding: 80px 0; }

  /* iOS: prevent auto-zoom on input focus (requires font-size ≥ 16px) */
  .contact-form input,
  .contact-form textarea { font-size: 16px; }

  /* Section subtitle: slightly tighter on small screens */
  .section-header p { font-size: 16px; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg-page);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 998;
    border: none;
  }

  .nav-links.open { display: flex; }

  .nav-links li a {
    font-size: 24px;
    font-family: var(--font-display);
    font-weight: 700;
    padding: 14px 28px;
    color: var(--white);
  }

  .nav-links li a:hover {
    background: rgba(255,255,255,0.07);
    color: var(--blue);
  }

  .nav-cta { display: none; }

  .nav-toggle {
    display: flex;
    z-index: 999;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 20px 20px;
    gap: 32px;
  }

  .hero-orbital { height: 280px; }
  .orbital-system { width: 280px; height: 280px; margin: 0 auto; }
  .atom-ring-1 { width: 205px; height: 205px; margin: -103px 0 0 -103px; }
  .atom-ring-2 { width: 168px; height: 168px; margin: -84px  0 0 -84px;  }
  .atom-ring-3 { width: 130px; height: 130px; margin: -65px  0 0 -65px;  }
  .orbital-center { width: 72px; height: 72px; border-radius: 18px; }
  .float-pill { font-size: 10px; padding: 5px 11px; gap: 4px; }
  .fp-1 { top: 28px;   right: 8px;   }
  .fp-2 { top: 105px;  left: 2px;    }
  .fp-3 { bottom: 30px; left: 12px;  }
  .fp-4 { top: 8px;    left: 80px;   }
  .fp-5 { display: none; }
  .fp-6 { display: none; }

  .hero-slide .hero-title    { text-align: center; }
  .hero-slide .hero-subtitle { text-align: center; max-width: 100%; }
  .hero-badge                { display: block; text-align: center; }

  .hero-stats {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
  }

  .hero-stat { padding: 0 20px; }
  .hero-stat-value { font-size: 22px; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .urgency { padding: 72px 0; }

  .urgency-actions {
    flex-direction: column;
  }

  .urgency-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .compare { padding: 72px 0; }

  .compare-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing { padding: 72px 0; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-popular {
    transform: none;
    box-shadow: var(--blue-glow), var(--shadow-md);
  }

  .pricing-popular:hover { transform: translateY(-6px); }

  .process-section { padding: 72px 0; }
  .testimonials-section { padding: 72px 0; }
  .casestudy { padding: 72px 0; }
  .casestudy-results { gap: 24px; }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 56px 24px 40px;
  }

  .footer-brand { grid-column: 1 / -1; }

  /* Mobile nav overlay — Commencer CTA item */
  .nav-links .nav-cta-m {
    display: flex;
    justify-content: center;
    margin-top: 8px;
  }

  .nav-links .nav-cta-m a {
    display: block;
    background: var(--blue);
    color: var(--white);
    font-size: 18px;
    font-family: var(--font-display);
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 10px;
    min-width: 240px;
    text-align: center;
    transition: background var(--transition);
  }

  .nav-links .nav-cta-m a:hover {
    background: var(--blue-hover);
    color: var(--white);
  }
}

@media (max-width: 480px) {
  .painpoints, .compare, .process-section, .pricing,
  .testimonials-section, .casestudy, .faq-section { border-radius: 0; box-shadow: none; }

  .painpoints-grid { grid-template-columns: 1fr; }

  .hero-scroll-hint { display: none; }

  .hero-orbital { display: none; }

  .hero-title {
    font-size: clamp(30px, 9vw, 42px);
    letter-spacing: -0.01em;
  }

  .typewriter-wrapper { display: inline; white-space: nowrap; }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    width: 100%;
  }

  .hero-stat-sep {
    width: 80px;
    height: 1px;
  }

  .section-header { margin-bottom: 40px; }

  .compare-card { padding: 28px 22px; }

  .counter-value { font-size: 32px; }

  .casestudy-results {
    gap: 16px;
    flex-wrap: wrap;
  }

  .footer-container { grid-template-columns: 1fr; }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .form-row { grid-template-columns: 1fr; }

  /* Tighter section padding on phones */
  .urgency, .painpoints, .compare, .pricing,
  .process-section, .testimonials-section,
  .casestudy, .faq-section { padding: 56px 0; }

  .cta-final { padding: 64px 0; }

  .hero-inner { padding-top: 20px; }
}

/* ==================== GRADIENT TEXT ==================== */
.gradient-text {
  background: linear-gradient(135deg, #60A5FA 0%, #818CF8 55%, #C084FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==================== SECTION STACKING ==================== */
.urgency              { position: relative; z-index: 6; }
.painpoints           { position: relative; z-index: 5; }
.compare              { position: relative; z-index: 4; }
.process-section      { position: relative; z-index: 4; }
.pricing              { position: relative; z-index: 3; }
.testimonials-section { position: relative; z-index: 2; }
.casestudy            { position: relative; z-index: 1; }
.faq-section          { position: relative; z-index: 0; }

@media (min-width: 901px) {
  .pain-toggle-wrap { display: none; }

  .painpoints           { border-radius: 48px 48px 0 0; box-shadow: 0 -24px 60px rgba(0,0,0,0.5); }
  .compare              { border-radius: 48px 48px 0 0; box-shadow: 0 -24px 60px rgba(0,0,0,0.55); }
  .process-section      { border-radius: 48px 48px 0 0; box-shadow: 0 -24px 60px rgba(0,0,0,0.45); }
  .pricing              { border-radius: 48px 48px 0 0; box-shadow: 0 -24px 60px rgba(0,0,0,0.45); }
  .testimonials-section { border-radius: 48px 48px 0 0; box-shadow: 0 -24px 60px rgba(0,0,0,0.4); }
  .casestudy            { border-radius: 48px 48px 0 0; box-shadow: 0 -24px 60px rgba(0,0,0,0.5); }
  .faq-section          { border-radius: 48px 48px 0 0; box-shadow: 0 -24px 60px rgba(0,0,0,0.4); }
}

/* ==================== SPOTLIGHT CARDS (pricing) ==================== */
.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 50%),
    rgba(37, 99, 235, 0.12), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card > * { position: relative; z-index: 1; }

/* ==================== PROCESS SECTION ==================== */
.process-section {
  padding: 110px 0;
  background: var(--bg-page);
}

.process-grid {
  display: grid;
  align-items: start;
  gap: 32px;
}

@media (min-width: 901px) {
  .process-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
  }
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  position: relative;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.process-step:hover {
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.process-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 999px;
  padding: 3px 14px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.process-icon {
  font-size: 38px;
  margin: 6px 0 16px;
}

.process-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
}

.process-connector {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  padding-top: 56px;
  color: rgba(37, 99, 235, 0.4);
  font-size: 22px;
  font-weight: 700;
}

@media (min-width: 901px) {
  .process-connector { display: flex; }
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
  padding: 110px 0;
  background: var(--bg-alt);
}

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

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-md);
  transform: translateY(-4px);
}

.testi-stars {
  color: #FBBF24;
  font-size: 13px;
  letter-spacing: 3px;
}

.testi-text {
  font-size: 15px;
  color: #CBD5E1;
  line-height: 1.72;
  flex: 1;
  font-style: italic;
}

.testi-text::before { content: '\201C'; }
.testi-text::after  { content: '\201D'; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #93C5FD;
  flex-shrink: 0;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.testi-commerce {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ==================== SCROLL INDICATOR ==================== */
.hero-scroll-hint {
  position: absolute;
  bottom: 112px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 2;
  animation: scrollBounce 2.4s ease-in-out infinite;
}

.hero-scroll-hint span {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-sec);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 0.35; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.6; }
}

/* ==================== SKIP LINK ==================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 20px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ==================== FOCUS VISIBLE ==================== */
:focus-visible {
  outline: 2px solid #60A5FA;
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #60A5FA;
  outline-offset: 3px;
}

/* ==================== CONTRAST FIXES ==================== */
.footer-bottom-inner { color: #6B7280; }
.footer-legal-link   { color: #6B7280; }
.broken-load-label   { color: #6B7280; }

/* ==================== MOBILE STICKY CTA ==================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-md);
}
.mobile-sticky-cta .btn { width: 100%; justify-content: center; }

/* Desktop: hide mobile-only nav CTA item */
.nav-cta-m { display: none; }

/* ==================== FAQ SECTION ==================== */
.faq-section {
  padding: 110px 0;
  background: var(--bg-page);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  overflow: hidden;
}

.faq-item.open { border-color: rgba(37, 99, 235, 0.35); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  gap: 12px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
}

.faq-question::after {
  content: '+';
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 300;
  color: var(--blue);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}

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

/* Grid trick — transition native CSS, parfaitement fluide */
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s var(--ease);
}

.faq-item.open .faq-body {
  grid-template-rows: 1fr;
}

.faq-answer {
  overflow: hidden;
  min-height: 0;
  padding: 0 22px 0;
  font-size: 14.5px;
  color: var(--text-sec);
  line-height: 1.7;
  border-top: 0px solid var(--border);
  transition: padding 0.32s var(--ease), border-top-width 0.32s;
}

.faq-item.open .faq-answer {
  padding: 14px 22px 18px;
  border-top-width: 1px;
}

.form-reassurance {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.01em;
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .animate {
    opacity: 1;
    transform: none;
  }

  .hero-anim {
    opacity: 1;
  }

  .seen-letter {
    opacity: 1;
    transform: none;
  }

  .hero-slide {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
