/* ============================================
   LUCKY LEAD — Site marketing
   Identité visuelle : or (#F59E0B), vert trèfle (#10B981), bleu nuit (#0F172A)
   ============================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0F172A;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: #B45309; text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 20px; }

/* ============= NAV ============= */
.ll-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
}
.ll-nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.ll-nav-brand { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 18px; color: #0F172A; text-decoration: none; }
.ll-nav-brand-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 50%, #B45309 100%);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.ll-nav-links { display: flex; gap: 28px; align-items: center; }
.ll-nav-links a { color: #475569; font-weight: 500; font-size: 14px; text-decoration: none; }
.ll-nav-links a:hover { color: #F59E0B; }
.ll-nav-cta { display: flex; gap: 10px; align-items: center; }
.ll-mobile-toggle { display: none; background: none; border: 0; font-size: 24px; cursor: pointer; padding: 4px; }

@media (max-width: 900px) {
  .ll-nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; gap: 16px; border-bottom: 1px solid #e2e8f0; }
  .ll-nav-links.open { display: flex; }
  .ll-mobile-toggle { display: block; }
  .ll-nav-cta .btn { padding: 8px 14px; font-size: 13px; }
}

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: #F59E0B; color: #fff;
  border: 0; border-radius: 8px;
  font-size: 15px; font-weight: 500;
  text-decoration: none; cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.btn:hover { background: #B45309; text-decoration: none; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(245,158,11,0.25); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sec { background: #fff; color: #0F172A; border: 1px solid #cbd5e1; }
.btn-sec:hover { background: #f8fafc; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.btn-accent { background: #10B981; }
.btn-accent:hover { background: #047857; box-shadow: 0 4px 12px rgba(16,185,129,0.25); }
.btn-dark { background: #0F172A; }
.btn-dark:hover { background: #1e293b; }

/* ============= HERO ============= */
.hero {
  background: linear-gradient(135deg, #0F172A 0%, #1e293b 100%);
  color: #fff;
  padding: 80px 0 100px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero h1 {
  font-size: 56px; line-height: 1.1; font-weight: 600;
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero h1 .gradient { background: linear-gradient(135deg, #FCD34D, #F59E0B); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.lead { font-size: 19px; line-height: 1.6; color: #cbd5e1; margin-bottom: 32px; max-width: 640px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust { margin-top: 28px; display: flex; gap: 24px; flex-wrap: wrap; align-items: center; color: #94a3b8; font-size: 13px; }
.hero-trust-item { display: flex; align-items: center; gap: 6px; }
.hero-trust-item::before { content: "✓"; color: #10B981; font-weight: 600; }

@media (max-width: 700px) {
  .hero { padding: 50px 0 70px; }
  .hero h1 { font-size: 36px; }
  .hero p.lead { font-size: 16px; }
}

/* ============= SECTIONS ============= */
.section { padding: 80px 0; }
.section-alt { background: #f8fafc; }
.section-dark { background: #0F172A; color: #fff; }
.section-h { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-h-overline { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: #F59E0B; font-weight: 600; margin-bottom: 12px; }
.section-h h2 { font-size: 38px; line-height: 1.2; font-weight: 600; margin-bottom: 16px; letter-spacing: -0.01em; }
.section-h p { font-size: 17px; color: #475569; line-height: 1.6; }
.section-dark .section-h h2 { color: #fff; }
.section-dark .section-h p { color: #cbd5e1; }

@media (max-width: 700px) {
  .section { padding: 50px 0; }
  .section-h h2 { font-size: 28px; }
}

/* ============= FEATURES ============= */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

.feature {
  background: #fff; padding: 28px;
  border-radius: 14px; border: 1px solid #e2e8f0;
  transition: all 0.2s;
}
.feature:hover { border-color: #F59E0B; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.feature-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #FCD34D, #F59E0B);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.feature-icon.green { background: linear-gradient(135deg, #6ee7b7, #10B981); }
.feature-icon.purple { background: linear-gradient(135deg, #c4b5fd, #7c3aed); }
.feature-icon.dark { background: linear-gradient(135deg, #475569, #0F172A); }
.feature h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.feature p { color: #64748b; font-size: 14px; line-height: 1.6; }

/* ============= STATS ============= */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item { text-align: center; padding: 20px; }
.stat-num { font-size: 48px; font-weight: 600; background: linear-gradient(135deg, #FCD34D, #F59E0B); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.section-dark .stat-num { background: linear-gradient(135deg, #FCD34D, #F59E0B); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-lbl { color: #64748b; font-size: 14px; margin-top: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.section-dark .stat-lbl { color: #cbd5e1; }

/* ============= STEPS ============= */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  position: relative;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: center; position: relative; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #F59E0B, #B45309);
  color: #fff; font-size: 22px; font-weight: 600;
  border-radius: 50%;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(245,158,11,0.25);
}
.step h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.step p { color: #64748b; font-size: 14px; }

/* ============= PRICING ============= */
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 1000px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: #fff; padding: 32px 24px;
  border-radius: 14px; border: 1px solid #e2e8f0;
  position: relative; transition: all 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.pricing-card.featured { border: 2px solid #F59E0B; box-shadow: 0 16px 40px rgba(245,158,11,0.15); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #F59E0B; color: #fff;
  font-size: 12px; font-weight: 600; padding: 6px 16px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.pricing-tier { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: #64748b; font-weight: 600; }
.pricing-price { font-size: 42px; font-weight: 600; margin: 16px 0 4px; }
.pricing-price .currency { font-size: 22px; font-weight: 500; vertical-align: top; }
.pricing-price .period { font-size: 14px; color: #64748b; font-weight: 400; }
.pricing-yearly { color: #10B981; font-size: 13px; margin-bottom: 24px; font-weight: 500; }
.pricing-features { list-style: none; margin: 24px 0; }
.pricing-features li { padding: 8px 0; font-size: 14px; color: #475569; display: flex; align-items: flex-start; gap: 8px; }
.pricing-features li::before { content: "✓"; color: #10B981; font-weight: 600; flex-shrink: 0; }
.pricing-features li.no::before { content: "−"; color: #cbd5e1; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ============= TESTIMONIALS ============= */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial {
  background: #fff; padding: 28px;
  border-radius: 14px; border: 1px solid #e2e8f0;
}
.testimonial-stars { color: #F59E0B; margin-bottom: 14px; font-size: 18px; }
.testimonial-text { color: #334155; font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FCD34D, #F59E0B);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; font-size: 16px;
}
.testimonial-author-info { flex: 1; }
.testimonial-author-name { font-weight: 500; font-size: 14px; }
.testimonial-author-role { font-size: 12px; color: #64748b; }

/* ============= FAQ ============= */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff; padding: 0;
  border-radius: 12px; border: 1px solid #e2e8f0;
  margin-bottom: 12px; overflow: hidden;
}
.faq-q {
  padding: 18px 24px; font-weight: 500; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 15px;
}
.faq-q::after { content: "+"; font-size: 24px; color: #F59E0B; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  color: #475569; font-size: 14px; line-height: 1.7;
}
.faq-item.open .faq-a { padding: 0 24px 20px; max-height: 500px; }

/* ============= CTA SECTION ============= */
.cta-section {
  background: linear-gradient(135deg, #0F172A, #1e293b);
  padding: 80px 0; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: "🍀";
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 400px; opacity: 0.03;
}
.cta-section h2 { font-size: 38px; font-weight: 600; margin-bottom: 16px; position: relative; }
.cta-section p { font-size: 17px; color: #cbd5e1; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; }

/* ============= FOOTER ============= */
.footer {
  background: #0F172A; color: #cbd5e1;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 500; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { display: block; color: #94a3b8; font-size: 14px; padding: 4px 0; text-decoration: none; }
.footer-col a:hover { color: #F59E0B; text-decoration: none; }
.footer-brand { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.footer-tagline { color: #94a3b8; font-size: 14px; line-height: 1.6; max-width: 300px; }
.footer-bottom {
  border-top: 1px solid #1e293b; padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  color: #64748b; font-size: 13px;
}

/* ============= UTILITIES ============= */
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.gradient-text { background: linear-gradient(135deg, #F59E0B, #B45309); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.highlight-card {
  background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(16,185,129,0.05));
  border: 1px solid #F59E0B; padding: 24px;
  border-radius: 14px; margin: 30px 0;
}
.alert-success {
  background: #DCFCE7; color: #166534; padding: 14px 18px; border-left: 3px solid #10B981; border-radius: 8px;
  margin: 20px 0;
}

/* ============= BLOG ============= */
.blog-meta { color: #64748b; font-size: 13px; margin-bottom: 16px; }
.blog-content { max-width: 720px; margin: 0 auto; padding: 60px 20px; line-height: 1.8; }
.blog-content h1 { font-size: 42px; line-height: 1.2; margin-bottom: 16px; font-weight: 600; }
.blog-content h2 { font-size: 28px; margin: 40px 0 16px; font-weight: 600; }
.blog-content h3 { font-size: 21px; margin: 30px 0 12px; font-weight: 600; }
.blog-content p { margin-bottom: 18px; color: #334155; }
.blog-content ul, .blog-content ol { margin: 18px 0 18px 24px; }
.blog-content li { margin-bottom: 10px; }
.blog-content blockquote { border-left: 3px solid #F59E0B; padding: 12px 20px; margin: 24px 0; font-style: italic; color: #475569; background: #fef9c3; border-radius: 4px; }
.blog-content code { background: #f1f5f9; padding: 2px 6px; border-radius: 4px; font-size: 14px; color: #B45309; }
