@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #06060b;
  --bg2: #0d0d16;
  --bg3: #161625;
  --card: rgba(255,255,255,0.03);
  --card-hover: rgba(255,255,255,0.06);
  --card-border: rgba(255,255,255,0.07);
  --card-border-hover: rgba(255,255,255,0.14);
  --accent: #7c6cf0;
  --accent2: #a78bfa;
  --accent-glow: rgba(124,108,240,0.25);
  --green: #10b981;
  --green2: #34d399;
  --green-glow: rgba(16,185,129,0.2);
  --gold: #f59e0b;
  --text: #f1f1f6;
  --text2: #9494b0;
  --text3: #5a5a72;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.5);
  --shadow-md: 0 12px 32px rgba(0,0,0,0.35);
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── ANIMATED BACKGROUND ── */
.bg-glow {
  display: none;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

/* ── HEADER ── */
header {
  padding: 16px 0;
  border-bottom: 1px solid var(--card-border);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,6,11,0.75);
  transition: background 0.3s;
}

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

.logo {
  font-size: 1.5rem; font-weight: 900; letter-spacing: -0.5px;
  color: var(--accent2);
}

nav { display: flex; gap: 32px; align-items: center; }
nav a {
  color: var(--text2); text-decoration: none; font-size: 0.85rem; font-weight: 500;
  transition: color var(--transition); position: relative;
}
nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--accent); transition: width var(--transition); border-radius: 2px;
}
nav a:hover { color: var(--text); }
nav a:hover::after { width: 100%; }

.header-badge {
  background: var(--green);
  color: #000; font-size: 0.72rem; font-weight: 700;
  padding: 6px 16px; border-radius: 50px;
  animation: pulse-badge 2.5s ease-in-out infinite;
  letter-spacing: 0.3px;
}
@keyframes pulse-badge {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(16,185,129,0); }
}

/* ── HERO ── */
.hero { padding: 100px 0 50px; text-align: center; }

.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(124,108,240,0.08); border: 1px solid rgba(124,108,240,0.15);
  padding: 10px 22px; border-radius: 50px; font-size: 0.82rem; color: var(--accent2);
  margin-bottom: 32px; font-weight: 500;
  backdrop-filter: blur(10px);
}
.hero-label .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  animation: blink 1.5s infinite; box-shadow: 0 0 8px var(--green-glow);
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
  font-weight: 900; line-height: 1.12; letter-spacing: -1.5px;
  max-width: 880px; margin: 0 auto 28px;
  color: #fff;
}
.hero h1 .price-highlight {
  color: var(--green2);
  position: relative;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text2); max-width: 680px; margin: 0 auto 44px; line-height: 1.8;
  font-weight: 400;
}
.hero-sub strong { color: var(--green2); font-weight: 600; }

/* ── STATS BAR ── */
.stats-bar {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  padding: 32px 0; margin-bottom: 20px;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 2rem; font-weight: 900; letter-spacing: -1px;
  color: var(--accent2);
}
.stat-label { font-size: 0.78rem; color: var(--text3); font-weight: 500; margin-top: 4px; }

/* ── FORM SECTION ── */
.form-section { padding: 0 0 80px; }
.form-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.video-placeholder-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--bg2);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
}
.video-placeholder-container:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-4px);
}
.video-placeholder-container::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(124,108,240,0.03);
}
.video-play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px var(--accent-glow);
  transition: transform var(--transition);
  z-index: 1;
}
.video-placeholder-container:hover .video-play-btn {
  transform: scale(1.1);
}
.video-play-btn svg { width: 24px; height: 24px; fill: #fff; margin-left: 4px; }
.video-placeholder-text {
  font-size: 1.05rem; font-weight: 600; color: var(--text); z-index: 1;
}

.form-card {
  background: var(--bg2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(124,108,240,0.05);
}
.steps-header { display: flex; border-bottom: 1px solid var(--card-border); }
.step-tab {
  flex: 1; padding: 18px; display: flex; align-items: center; gap: 12px;
  font-size: 0.85rem; color: var(--text3); transition: all var(--transition);
}
.step-tab.active { color: var(--text); background: rgba(124,108,240,0.06); }
.step-num {
  width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  background: var(--bg3); border: 1px solid var(--card-border);
  transition: all var(--transition); flex-shrink: 0;
}
.step-tab.active .step-num {
  background: var(--accent);
  border-color: transparent; color: #fff;
  box-shadow: 0 4px 12px var(--accent-glow);
}
.step-arrow { color: var(--text3); font-size: 1rem; display: flex; align-items: center; padding: 0 4px; }

.form-body { padding: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.78rem; color: var(--text2); font-weight: 600; letter-spacing: 0.3px; }
.form-group input {
  padding: 14px 18px; border-radius: var(--radius-sm);
  border: 1px solid var(--card-border); background: rgba(6,6,11,0.6);
  color: var(--text); font-size: 0.95rem; font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-group input:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
  background: rgba(124,108,240,0.03);
}
.form-group input::placeholder { color: var(--text3); }

.btn-primary {
  width: 100%; margin-top: 24px; padding: 18px;
  background: var(--accent);
  color: #fff; border: none; border-radius: var(--radius-sm);
  font-size: 0.95rem; font-weight: 700; font-family: inherit;
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow var(--transition), background 0.25s;
  letter-spacing: 0.2px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow);
  background: #6d5ce0;
}
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

.form-trust {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 16px; font-size: 0.75rem; color: var(--text3); font-weight: 500;
}
.form-trust svg { width: 14px; height: 14px; fill: var(--green); }

/* ── SECTION COMMONS ── */
.section-label {
  text-align: center; font-size: 0.75rem; color: var(--accent2); font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 14px;
}
.section-title {
  text-align: center; font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800; margin-bottom: 56px; letter-spacing: -0.8px;
  line-height: 1.2;
}

/* ── BENEFITS ── */
.benefits { padding: 80px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.benefit-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 32px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
  backdrop-filter: blur(8px);
}
.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent);
  opacity: 0; transition: opacity var(--transition);
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-md);
}
.benefit-card:hover::before { opacity: 1; }
.benefit-icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px; position: relative; z-index: 1;
  background: rgba(124,108,240,0.1);
  border: 1px solid rgba(124,108,240,0.1);
}
.benefit-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1; }
.benefit-card p { font-size: 0.88rem; color: var(--text2); line-height: 1.7; position: relative; z-index: 1; }

.btn-price {
  display: block; max-width: 420px; margin: 48px auto 0; padding: 20px;
  background: var(--green);
  color: #000; border: none; border-radius: var(--radius-sm);
  font-size: 1.1rem; font-weight: 800; font-family: inherit;
  cursor: pointer; transition: transform 0.25s, box-shadow var(--transition), background 0.25s;
  text-align: center; letter-spacing: 0.2px;
}
.btn-price:hover { transform: translateY(-3px); box-shadow: 0 12px 40px var(--green-glow); }
.btn-price .old-price { text-decoration: line-through; opacity: 0.5; margin-right: 10px; }

/* ── HOW IT WORKS ── */
.how-it-works { padding: 80px 0; }
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; counter-reset: step;
}
.step-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 36px 28px; text-align: center;
  position: relative; counter-increment: step;
  transition: all var(--transition);
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--card-border-hover); }
.step-card::before {
  content: counter(step); display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--accent);
  font-weight: 800; font-size: 1.1rem; color: #fff;
  box-shadow: 0 6px 20px var(--accent-glow);
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 0.88rem; color: var(--text2); line-height: 1.7; }

/* ── EXEMPLES & AVIS (CAROUSEL) ── */
.examples-reviews { padding: 80px 0; overflow: hidden; }
.carousel-container {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 32px;
  /* hide scrollbar but allow scroll */
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}
.carousel-container::-webkit-scrollbar {
  display: none;
}
.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 0 16px; /* give some edge padding */
}
.carousel-card {
  width: 340px;
  background: var(--bg2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.carousel-card:hover { border-color: var(--card-border-hover); box-shadow: var(--shadow-md); }
.carousel-img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: var(--bg3);
  border-bottom: 1px solid var(--card-border);
}
.carousel-body {
  padding: 24px;
}
.carousel-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.carousel-review {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
}
.carousel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--card-border);
  padding-top: 16px;
}
.carousel-author {
  font-size: 0.9rem;
  font-weight: 700;
}
.carousel-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
}

/* ── WHY 37€ ── */
.why-section { padding: 80px 0; }
.why-card {
  background: rgba(124,108,240,0.04);
  border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 52px; max-width: 800px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 3px;
  background: var(--accent);
  border-radius: var(--radius) var(--radius) 0 0;
}
.why-card h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 24px; }
.why-card p { color: var(--text2); margin-bottom: 16px; line-height: 1.85; }
.why-card ul { list-style: none; margin-top: 24px; }
.why-card li {
  padding: 10px 0; color: var(--text2); display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem;
}
.why-card li::before {
  content: '✓'; color: var(--green2); font-weight: 800;
  background: rgba(16,185,129,0.1); width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; flex-shrink: 0; font-size: 0.8rem;
}

/* ── FAQ ── */
.faq { padding: 80px 0; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--card-border-hover); }
.faq-question {
  width: 100%; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; color: var(--text); font-family: inherit;
  font-size: 0.95rem; font-weight: 600; cursor: pointer; text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent2); }
.faq-icon {
  font-size: 1.2rem; color: var(--text3); transition: transform var(--transition);
  flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent2); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 24px 20px; font-size: 0.88rem; color: var(--text2); line-height: 1.8;
}

/* ── PARTNERS ── */
.partners { padding: 80px 0; }
.partners-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; align-items: center;
}
.partner-item {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius-sm); padding: 22px 40px;
  font-size: 1.15rem; font-weight: 700; color: var(--text2);
  display: flex; align-items: center; gap: 10px;
  transition: all var(--transition);
}
.partner-item:hover {
  border-color: var(--accent); color: var(--text);
  box-shadow: 0 4px 20px var(--accent-glow);
  transform: translateY(-2px);
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 100px 0 80px; text-align: center;
  position: relative;
}
.final-cta::before {
  display: none;
}
.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900;
  letter-spacing: -1px; margin-bottom: 20px; position: relative;
}
.final-cta p {
  color: var(--text2); font-size: 1.05rem; max-width: 600px;
  margin: 0 auto 36px; position: relative; line-height: 1.7;
}
.final-cta .btn-price { position: relative; }

/* ── FOOTER ── */
footer {
  padding: 48px 0; border-top: 1px solid var(--card-border);
  text-align: center; color: var(--text3); font-size: 0.8rem;
}
footer a { color: var(--text3); text-decoration: none; transition: color var(--transition); }
footer a:hover { color: var(--accent2); }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; flex-wrap: wrap; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE (MOBILE OPTIMIZATIONS) ── */
@media (max-width: 992px) {
  .form-split { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .hero { padding: 40px 0 20px; }
  .hero-label { font-size: 0.75rem; padding: 8px 16px; margin-bottom: 24px; }
  .hero h1 { letter-spacing: -0.5px; margin-bottom: 20px; font-size: 1.8rem; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 30px; padding: 0 10px; }
  
  nav { display: none; }
  .header-inner { justify-content: space-between; }
  .header-badge { padding: 6px 12px; font-size: 0.65rem; }
  
  /* Stats 2x2 grid on mobile */
  .stats-bar { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    padding: 20px 0; 
  }
  .stat-number { font-size: 1.5rem; }
  
  /* Form layout */
  .form-grid { grid-template-columns: 1fr; gap: 12px; }
  .form-group input { padding: 14px; font-size: 1rem; } /* Better touch target */
  .btn-primary { padding: 16px; font-size: 1rem; }
  
  /* Steps header compact */
  .steps-header { flex-direction: row; }
  .step-tab { padding: 12px 10px; flex-direction: column; text-align: center; gap: 8px; justify-content: center; }
  .step-tab div { font-size: 0.75rem; }
  .step-tab div small { display: none; } /* Hide subtext on mobile */
  .step-arrow { display: none; }
  
  /* Sections spacing */
  .benefits, .how-it-works, .examples-reviews, .why-section, .partners, .faq, .final-cta { padding: 50px 0; }
  .section-title { margin-bottom: 32px; font-size: 1.6rem; }
  
  .carousel-card { width: 280px; } /* Slightly smaller cards on mobile to show hint of next card */
  .benefits-grid { gap: 16px; }
  
  /* Partners grid */
  .partners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .partner-item { padding: 12px; font-size: 0.95rem; justify-content: center; }
  
  .btn-price { width: 100%; font-size: 1.05rem; padding: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .logo { font-size: 1.3rem; }
  .hero h1 { font-size: 1.6rem; }
  
  .benefit-card, .step-card, .carousel-body { padding: 20px; }
  .why-card { padding: 24px 16px; }
  .form-body { padding: 20px 16px; }
  
  .video-play-btn { width: 48px; height: 48px; }
  .video-play-btn svg { width: 18px; height: 18px; }
  .video-placeholder-text { font-size: 0.9rem; }
  
  .faq-question { padding: 16px; font-size: 0.9rem; }
  .faq-answer-inner { padding: 0 16px 16px; font-size: 0.85rem; }
}

/* ── STRIPE STEP 2 ── */
.step2-recap {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(124,108,240,0.08);
  border: 1px solid rgba(124,108,240,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 18px;
}
.step2-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.step2-name { font-weight: 600; font-size: 15px; color: var(--text); }
.step2-email { font-size: 13px; color: var(--text2); }

.step2-offer {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-bottom: 18px;
}
.step2-offer-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
}
.step2-offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.step2-offer-list li {
  font-size: 13.5px;
  color: var(--text2);
}
.step2-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--card-border);
}
.step2-old-price {
  text-decoration: line-through;
  color: var(--text3);
  font-size: 15px;
}
.step2-new-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--green2);
}
.step2-badge {
  background: rgba(16,185,129,0.15);
  color: var(--green2);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 700;
}

.btn-stripe {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-bottom: 10px;
}
.btn-back {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text3);
  font-size: 13px;
  cursor: pointer;
  padding: 8px;
  text-align: center;
  transition: color 0.2s;
}
.btn-back:hover { color: var(--text2); }
