:root {
  --navy:   #1A1A2E;
  --navy2:  #2D2D4A;
  --coral:  #E8637A;
  --gold:   #D4A843;
  --cream:  #FAFAF8;
  --gray50: #F9FAFB;
  --gray100:#F3F4F6;
  --gray400:#9CA3AF;
  --gray600:#4B5563;
  --gray900:#111827;
  --white:  #FFFFFF;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--gray900);
  overflow-x: hidden;
}

/* ── Utilitaires ─────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(135deg, var(--coral), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section { padding: 96px 0; }
.section-dark { background: var(--navy); }
.section-coral { background: linear-gradient(135deg, var(--navy) 0%, #2D1A3E 100%); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin: 12px 0;
  line-height: 1.2;
}
.section-header p { color: var(--gray600); font-size: 17px; line-height: 1.7; }

.section-dark .section-header h2,
.section-dark .section-header p { color: var(--white); }
.section-dark .section-header p { color: rgba(255,255,255,.6); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,99,122,.12);
  border: 1px solid rgba(232,99,122,.3);
  color: var(--coral);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-badge {
  display: inline-block;
  background: rgba(232,99,122,.1);
  color: var(--coral);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.badge-light {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}

/* ── Navbar ──────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all .3s;
}
.navbar.scrolled {
  background: rgba(26,26,46,.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px;
  background: rgba(232,99,122,.15);
  border: 1.5px solid rgba(232,99,122,.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--coral);
  font-weight: 700;
}
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 15px;
  color: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.btn-nav {
  background: var(--coral) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600 !important;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 70% 50%, rgba(232,99,122,.08) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(212,168,67,.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin: 16px 0 20px;
}
.hero-sub {
  color: rgba(255,255,255,.6);
  font-size: 17px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: var(--white);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(232,99,122,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,99,122,.5); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,.15);
  transition: all .2s;
}
.btn-secondary:hover { background: rgba(255,255,255,.12); }
.hero-stats {
  display: flex;
  gap: 0;
  align-items: center;
}
.stat { text-align: left; padding: 0 24px 0 0; }
.stat:first-child { padding-left: 0; }
.stat-value {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--coral);
}
.stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
  margin: 0 24px 0 0;
}

/* Phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-mockup {
  width: 260px;
  height: 520px;
  background: #0F0F1E;
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,.12);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 20px;
  background: #0F0F1E;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}
.phone-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 42px;
}
.app-preview {
  padding: 48px 14px 14px;
  background: #FAFAF8;
  height: 100%;
}
.app-header { margin-bottom: 10px; }
.app-greeting { font-size: 10px; color: #9CA3AF; }
.app-location { font-size: 11px; font-weight: 600; color: #1A1A2E; display: flex; align-items: center; gap: 3px; }
.dot-coral { width: 7px; height: 7px; background: #E8637A; border-radius: 50%; display: inline-block; }
.app-banner {
  background: #1A1A2E;
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.banner-tag {
  background: #E8637A;
  color: white;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 6px;
}
.banner-title { color: white; font-size: 11px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.banner-cta {
  background: #E8637A;
  color: white;
  font-size: 8px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
}
.app-section-title { font-size: 10px; font-weight: 700; color: #1A1A2E; margin-bottom: 8px; }
.app-card {
  background: white;
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 6px;
  display: flex;
  gap: 8px;
  align-items: center;
  border: 1px solid #F3F4F6;
}
.app-card-img {
  width: 36px; height: 36px;
  background: #1A1A2E;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8637A;
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  font-family: Georgia, serif;
  flex-shrink: 0;
}
.app-card-name { font-size: 9px; font-weight: 700; color: #1A1A2E; }
.app-card-meta { font-size: 8px; color: #9CA3AF; }
.app-card-price { font-size: 8px; font-weight: 700; color: #E8637A; }

.float-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  border: 1px solid rgba(0,0,0,.06);
  min-width: 200px;
}
.float-card-1 { top: 40px; right: -20px; }
.float-card-2 { bottom: 60px; left: -30px; }
.float-icon { font-size: 24px; }
.float-title { font-size: 13px; font-weight: 600; color: var(--gray900); }
.float-sub { font-size: 11px; color: var(--gray400); }

/* ── Steps ───────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  background: var(--gray50);
  border: 1px solid var(--gray100);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.step-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 800;
  color: var(--gray100);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}
.step-icon { font-size: 36px; margin-bottom: 16px; }
.step-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.step-card p { color: var(--gray600); line-height: 1.7; font-size: 15px; }

/* ── Rewards ─────────────────────────────────────── */
.rewards-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.rewards-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin: 12px 0 16px;
  line-height: 1.2;
}
.rewards-sub { color: rgba(255,255,255,.6); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.rewards-features { display: flex; flex-direction: column; gap: 14px; }
.reward-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.85);
  font-size: 15px;
}
.reward-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.levels-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 28px;
}
.levels-title { font-weight: 600; color: var(--white); margin-bottom: 20px; font-size: 15px; }
.level-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 6px;
}
.level-row.active-level {
  background: rgba(212,168,67,.15);
  border: 1px solid rgba(212,168,67,.3);
}
.level-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.level-name { flex: 1; color: var(--white); font-weight: 500; font-size: 14px; }
.level-range { color: rgba(255,255,255,.4); font-size: 12px; }
.levels-progress { margin-top: 20px; }
.progress-label { display: flex; justify-content: space-between; margin-bottom: 8px; }
.progress-label span { color: rgba(255,255,255,.5); font-size: 12px; }
.progress-pts { color: var(--gold) !important; font-weight: 600 !important; }
.progress-bar { height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--coral), var(--gold)); border-radius: 3px; }
.progress-hint { color: rgba(255,255,255,.35); font-size: 11px; margin-top: 6px; }

/* ── Benefits ────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.benefit-card {
  background: var(--gray50);
  border: 1px solid var(--gray100);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all .2s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit-icon { font-size: 32px; margin-bottom: 14px; }
.benefit-card h3 { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.benefit-card p { color: var(--gray600); font-size: 14px; line-height: 1.7; }

/* ── Pricing ─────────────────────────────────────── */
.pricing-title {
  text-align: center;
  margin-bottom: 40px;
}
.pricing-title h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-title p { color: var(--gray600); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--gray50);
  border: 1px solid var(--gray100);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
}
.pricing-card.pricing-featured {
  background: var(--navy);
  border-color: var(--coral);
  transform: scale(1.03);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
}
.pricing-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--gray600);
}
.pricing-featured .pricing-name { color: rgba(255,255,255,.7); }
.pricing-price {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--gray900);
  margin-bottom: 24px;
}
.pricing-featured .pricing-price { color: var(--white); }
.pricing-price span { font-size: 14px; font-weight: 400; color: var(--gray400); }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li { padding: 6px 0; font-size: 14px; color: var(--gray600); }
.pricing-featured .pricing-features li { color: rgba(255,255,255,.75); }
.btn-pricing {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  background: var(--gray100);
  color: var(--gray900);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all .2s;
}
.btn-pricing:hover { background: var(--gray900); color: white; }
.btn-pricing-featured {
  background: var(--coral) !important;
  color: white !important;
}

/* ── Form partenaire ─────────────────────────────── */
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.form-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin: 12px 0 16px;
}
.form-content p { color: rgba(255,255,255,.6); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
.form-promises { display: flex; flex-direction: column; gap: 10px; }
.promise { color: rgba(255,255,255,.8); font-size: 15px; }
.partner-form {
  background: white;
  border-radius: 24px;
  padding: 36px;
}
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray600);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray100);
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: var(--gray50);
  color: var(--gray900);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  background: white;
}
.form-group textarea { resize: none; }
.btn-form {
  width: 100%;
  padding: 15px;
  background: var(--coral);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(232,99,122,.35);
}
.btn-form:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,99,122,.45); }
.btn-form:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.form-success {
  display: none;
  margin-top: 16px;
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  color: #16A34A;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.form-success.show { display: block; }

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  align-items: start;
}
.footer-brand p { color: rgba(255,255,255,.45); font-size: 14px; line-height: 1.7; margin-top: 12px; }
.footer-apps { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.app-badge {
  display: inline-block;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 8px;
}
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
  margin-bottom: 16px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.footer-col a:hover { color: rgba(255,255,255,.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom span { color: rgba(255,255,255,.3); font-size: 13px; }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: rgba(255,255,255,.3); text-decoration: none; font-size: 13px; }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ── Animations AOS ──────────────────────────────── */
[data-aos] {
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
}
[data-aos="fade-up"]    { transform: translateY(32px); }
[data-aos="fade-right"] { transform: translateX(-32px); }
[data-aos="fade-left"]  { transform: translateX(32px); }
[data-aos="zoom-in"]    { transform: scale(.9); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 100px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .phone-mockup { width: 200px; height: 400px; }
  .float-card-1 { top: 10px; right: -10px; min-width: 160px; font-size: 12px; padding: 8px 12px; }
  .float-card-2 { bottom: 10px; left: -10px; min-width: 160px; font-size: 12px; padding: 8px 12px; }
  .steps-grid { grid-template-columns: 1fr; }
  .rewards-inner { grid-template-columns: 1fr; gap: 40px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.pricing-featured { transform: none; }
  .form-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--navy);
    padding: 80px 24px 32px;
    gap: 20px;
  }
  .nav-links.open { display: flex; }
  .burger { display: flex; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
}

/* ── Footer bottom row ───────────────────────────── */
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Pricing note ─────────────────────────────────── */
.pricing-note {
  text-align: center;
  margin-top: 32px;
  color: var(--gray600);
  font-size: 14px;
  background: var(--gray50);
  border: 1px solid var(--gray100);
  border-radius: 12px;
  padding: 14px 24px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer responsive override ─────────────────── */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr !important;
  }
  .footer-brand {
    grid-column: span 2;
  }
}
@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr !important;
  }
  .footer-brand {
    grid-column: span 1;
  }
}
