/* =========================================
   MACHINE.IO — Landing Page Styles
   ========================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --beige: #F5F0E8;
  --beige-dark: #EDE7D8;
  --blue-dark: #0D2B55;
  --blue-mid: #1A4A8A;
  --blue-accent: #4A90D9;
  --blue-light: #EEF4FF;
  --text: #1A1A2E;
  --text-muted: #5A6A7E;
  --white: #FFFFFF;
  --red: #EF4444;
  --orange: #F97316;
  --green: #22C55E;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(13, 43, 85, 0.08);
  --shadow-md: 0 8px 32px rgba(13, 43, 85, 0.12);
  --shadow-lg: 0 20px 60px rgba(13, 43, 85, 0.16);
  --transition: 0.25s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--beige);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72 0.18' numOctaves='4' seed='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.78 0 0 0 0 0.72 0 0 0 0 0.60 0 0 0 0.07 0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

/* --- Fade-in animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(13, 43, 85, 0.3);
}
.btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 43, 85, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid var(--blue-dark);
}
.btn-outline:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--beige-dark);
}
.btn-ghost:hover:not(:disabled) {
  border-color: var(--blue-accent);
  color: var(--blue-accent);
}
.btn-ghost:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-light {
  background: var(--beige);
  color: var(--blue-dark);
  font-weight: 700;
}
.btn-light:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-xl { padding: 18px 40px; font-size: 1.1rem; font-weight: 700; }

/* ==================
   NAVBAR
================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 14px 0;
}
.navbar.scrolled {
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue-dark);
  letter-spacing: -0.5px;
}
.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
}
.logo-dot { color: var(--blue-accent); }
.logo-dot-light { color: var(--blue-accent); }

.nav-cta { padding: 10px 22px; font-size: 0.9rem; }

/* ==================
   SOCIAL PROOF BAR
================== */
.proof-bar {
  background: var(--blue-dark);
  color: var(--white);
  padding: 12px 0;
  overflow: hidden;
  margin-top: 66px;
}
.proof-track {
  display: flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.proof-track span {
  font-size: 0.875rem;
  white-space: nowrap;
  color: rgba(255,255,255,0.8);
}
.proof-track strong { color: var(--white); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==================
   HERO
================== */
.hero {
  padding: 72px 0 96px;
  position: relative;
  overflow: hidden;
}

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

.hero-brand {
  margin-bottom: 20px;
}
.hero-logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue-accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(74, 144, 217, 0.25);
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1px;
  color: var(--blue-dark);
  margin-bottom: 20px;
}
.highlight {
  color: var(--blue-accent);
  position: relative;
}
.highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background: var(--blue-accent);
  border-radius: 2px;
  opacity: 0.35;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Hero visual: video + floating card */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-video-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--blue-dark);
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.float-card {
  position: relative;
  margin-top: -32px;
  margin-right: 16px;
  margin-left: 16px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(13, 43, 85, 0.06);
  z-index: 2;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot.green {
  background: var(--green);
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}

.lead-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius-md);
  margin-bottom: 6px;
  transition: background var(--transition);
}
.lead-item:hover { background: var(--beige); }
.lead-item:last-child { margin-bottom: 0; }

.lead-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lead-avatar.blue { background: var(--blue-dark); }
.lead-avatar.purple { background: #7C3AED; }

.lead-name { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.lead-detail { font-size: 0.73rem; color: var(--text-muted); margin-top: 1px; }

.lead-badge {
  margin-left: auto;
  background: rgba(34, 197, 94, 0.1);
  color: #16A34A;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-card-footer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--beige-dark);
  font-size: 0.78rem;
  color: #16A34A;
  font-weight: 600;
}

/* Hero background shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; z-index: -1; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74, 144, 217, 0.3) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 43, 85, 0.08) 0%, transparent 70%);
  bottom: -50px;
  left: 10%;
}

/* ==================
   SECTION LABELS / TITLES
================== */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--blue-accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.22;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  color: var(--blue-accent);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ==================
   PAIN POINTS
================== */
.pain-points {
  background: var(--white);
}
.pain-points .section-title,
.pain-points .section-subtitle,
.pain-points .section-label {
  text-align: center;
}
.pain-points .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

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

.pain-card {
  background: var(--beige);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(13, 43, 85, 0.06);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.pain-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
}

.pain-number {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue-accent);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pain-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==================
   LEAD² SECTION
================== */
.lead2 {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.lead2-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.lead2-header .section-title sup {
  font-size: 0.55em;
  vertical-align: super;
  color: var(--blue-accent);
}

.lead2-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 14px;
  line-height: 1.5;
}

.lead2-intro {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* 3-step flow */
.lead2-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0 16px;
  align-items: center;
  margin-bottom: 56px;
}

.lead2-step {
  background: var(--beige);
  border: 1px solid rgba(13, 43, 85, 0.06);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.lead2-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.lead2-step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
}

.lead2-step-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--blue-accent);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lead2-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.lead2-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.lead2-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.5;
}
.lead2-flow-arrow svg { width: 40px; height: 24px; }

/* Key method elements */
.lead2-elements {
  background: var(--beige);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 40px;
}

.lead2-elements-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--blue-accent);
  margin-bottom: 18px;
}

.lead2-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}

.lead2-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.lead2-list li svg { flex-shrink: 0; }

/* Value proposition */
.lead2-value {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--blue-dark);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  margin-bottom: 40px;
}

.lead2-value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(74, 144, 217, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.lead2-value-icon svg path,
.lead2-value-icon svg rect,
.lead2-value-icon svg circle {
  stroke: rgba(255,255,255,0.8);
  fill: rgba(255,255,255,0.1);
}
.lead2-value-icon svg circle[fill="#4A90D9"] { fill: rgba(255,255,255,0.8); stroke: none; }

.lead2-value-text {
  flex: 1;
}

.lead2-value-headline {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.lead2-value-text p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 8px;
}
.lead2-value-text p:last-child { margin-bottom: 0; }

/* Reassurance grid */
.lead2-reassurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}

.reassurance-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: var(--beige);
  border: 1px solid rgba(13, 43, 85, 0.06);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.reassurance-item svg { flex-shrink: 0; margin-top: 1px; }
.reassurance-item span {
  font-size: 0.855rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.45;
}

/* CTA */
.lead2-cta {
  text-align: center;
}

/* ==================
   METHODE
================== */
.methode {
  background-color: var(--beige);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72 0.18' numOctaves='4' seed='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.78 0 0 0 0 0.72 0 0 0 0 0.60 0 0 0 0.07 0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.methode-left {
  position: sticky;
  top: 100px;
}
.methode-left .section-subtitle {
  margin-bottom: 36px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 26px;
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  border: 1px solid rgba(13, 43, 85, 0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}
.step:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
}

.step-number {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--blue-accent);
  letter-spacing: 1px;
  flex-shrink: 0;
  margin-top: 4px;
  width: 26px;
}

.step-content {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 7px;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==================
   VIDEO PROOF SECTION
================== */
.video-proof {
  background: var(--white);
}

.vp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.vp-text .section-subtitle {
  margin-bottom: 36px;
}

.vp-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.vp-stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.vp-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.vp-video-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--blue-dark);
}
.vp-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vp-video-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

/* ==================
   TESTIMONIALS
================== */
.testimonials {
  background: var(--beige);
}
.testimonials .section-title,
.testimonials .section-label {
  text-align: center;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(13, 43, 85, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testi-stars {
  color: #F59E0B;
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-card > p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-avatar.blue { background: var(--blue-dark); }
.testi-avatar.purple { background: #7C3AED; }

.testi-name { font-size: 0.875rem; font-weight: 700; color: var(--text); }
.testi-role { font-size: 0.77rem; color: var(--text-muted); margin-top: 2px; }

.testi-result {
  margin-left: auto;
  background: rgba(13, 43, 85, 0.08);
  color: var(--blue-dark);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ==================
   QUESTIONNAIRE
================== */
.quiz-section {
  background: linear-gradient(160deg, var(--blue-light) 0%, var(--beige) 55%);
}

.quiz-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.quiz-header {
  text-align: center;
  margin-bottom: 40px;
}
.quiz-header .section-subtitle { margin: 0 auto; }

.quiz-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(13, 43, 85, 0.06);
}

/* Progress */
.quiz-progress-wrap {
  height: 5px;
  background: var(--beige-dark);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}
.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-accent), var(--blue-dark));
  border-radius: 3px;
  width: 16.66%;
  transition: width 0.4s ease;
}
.quiz-progress-label {
  text-align: right;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Steps */
.quiz-steps { position: relative; }

.quiz-step {
  display: none;
  animation: fadeSlide 0.32s ease forwards;
}
.quiz-step.active { display: block; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: translateX(0); }
}

.quiz-question {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.quiz-hint {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.quiz-option {
  display: block;
  cursor: pointer;
}
.quiz-option input { display: none; }

.option-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 12px;
  border: 2px solid var(--beige-dark);
  border-radius: var(--radius-md);
  background: var(--beige);
  text-align: center;
  transition: all var(--transition);
  min-height: 90px;
}
.option-box:hover {
  border-color: var(--blue-accent);
  background: var(--blue-light);
}

.option-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.option-icon svg { width: 28px; height: 28px; }

.option-label {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

/* Checked state */
.quiz-option input:checked + .option-box {
  border-color: var(--blue-dark);
  background: var(--blue-light);
  box-shadow: 0 0 0 4px rgba(13, 43, 85, 0.07);
}
.quiz-option input:checked + .option-box .option-label {
  color: var(--blue-dark);
  font-weight: 700;
}

/* Nav */
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--beige-dark);
}

/* Result */
.quiz-result {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(13, 43, 85, 0.06);
}

/* ==================
   DECORATIVE BUBBLES
================== */
.deco-bubble {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Hero bubbles (inside .hero-shapes which is already z-index:-1) */
.hero-bubble-1 {
  width: 88px;
  height: 88px;
  top: 18%;
  right: 4%;
  opacity: 0.1;
  transform: rotate(15deg);
}
.hero-bubble-2 {
  width: 52px;
  height: 52px;
  bottom: 12%;
  left: 6%;
  opacity: 0.07;
  transform: rotate(-10deg);
}

/* LEAD² section bubbles */
.lead2-bubble-1 {
  width: 110px;
  height: 110px;
  top: -20px;
  right: -20px;
  opacity: 0.06;
  transform: rotate(20deg);
}
.lead2-bubble-2 {
  width: 68px;
  height: 68px;
  bottom: 40px;
  left: -10px;
  opacity: 0.05;
  transform: rotate(-15deg);
}

/* CTA banner bubble */
.cta-bubble-1 {
  width: 120px;
  height: 120px;
  top: -30px;
  right: 10%;
  opacity: 0.06;
  transform: rotate(10deg);
  filter: brightness(3);
}

/* Footer bubble */
.footer-bubble-1 {
  width: 96px;
  height: 96px;
  bottom: 20px;
  right: -16px;
  opacity: 0.05;
  transform: rotate(-5deg);
  filter: brightness(3);
}

/* ==================
   RESULT PROFILE PHOTO
================== */
.result-profile {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.result-profile-img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}

/* ==================
   FOOTER PROFILE
================== */
.footer-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-profile-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.12);
}
.footer-profile-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.footer-profile-desc {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.5;
  max-width: 200px;
}

.result-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.result-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: rgba(34, 197, 94, 0.12);
  color: #16A34A;
}
.result-badge.warning {
  background: rgba(249, 115, 22, 0.1);
  color: #C05A00;
}

.quiz-result h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.quiz-result p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.72;
}

.result-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px !important;
  margin-bottom: 0 !important;
}

/* ==================
   CTA BANNER
================== */
.cta-banner {
  background: var(--blue-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-banner h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 8px;
}

.cta-banner p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}

/* ==================
   FOOTER
================== */
.footer {
  background: #08192E;
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 44px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 220px;
}
.footer-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  object-fit: cover;
  opacity: 0.9;
  margin-bottom: 6px;
}
.footer-brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.55;
  margin-top: 2px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--blue-accent);
  margin-bottom: 4px;
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-contact-link:hover { color: var(--white); }
.footer-contact-link svg { flex-shrink: 0; opacity: 0.7; }

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 28px;
}
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.32);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

.footer-copy {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.22);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
}

/* ==================
   CONTACT STEP
================== */
.quiz-contact-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.contact-input {
  padding: 14px 16px;
  border: 2px solid var(--beige-dark);
  border-radius: var(--radius-md);
  background: var(--beige);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  width: 100%;
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.contact-input:focus {
  border-color: var(--blue-accent);
  background: var(--blue-light);
  box-shadow: 0 0 0 4px rgba(74, 144, 217, 0.1);
}
.contact-input::placeholder {
  color: #A0ADBF;
}
.contact-input.error {
  border-color: var(--red);
  background: #FFF5F5;
}

/* ==================
   RESPONSIVE
================== */
@media (max-width: 960px) {
  .lead2-flow {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
  .lead2-flow-arrow {
    transform: rotate(90deg);
  }
  .lead2-list { grid-template-columns: 1fr; }
  .lead2-reassurance { grid-template-columns: repeat(2, 1fr); }
  .lead2-value { flex-direction: column; gap: 16px; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .methode-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .methode-left { position: static; }
  .cards-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .vp-inner { grid-template-columns: 1fr; gap: 48px; }
  .vp-video { max-width: 480px; margin: 0 auto; width: 100%; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .quiz-box { padding: 28px 20px; }
  .quiz-result { padding: 40px 20px; }
  .quiz-options { grid-template-columns: 1fr; }
  .lead2-reassurance { grid-template-columns: 1fr; }
  .lead2-elements { padding: 24px 20px; }
  .lead2-value { padding: 28px 24px; }
  .hero-title { font-size: 2rem; }
  .nav-cta { display: none; }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .footer-main { flex-direction: column; gap: 32px; }
  .footer-legal { padding-top: 0; }
  .cta-inner { flex-direction: column; text-align: center; align-items: center; }
  .vp-stats { gap: 20px; }
}
