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

:root {
  --bg: #F5F0E8;
  --bg-card: #FFFFFF;
  --midnight: #0D0A1A;
  --yellow: #F5E14B;
  --orange: #FF6B35;
  --magenta: #D946EF;
  --teal: #06B6D4;
  --white: #FFFFFF;
  --text: #0D0A1A;
  --text-muted: rgba(13,10,26,0.55);
  --font-display: 'Unbounded', cursive;
  --font-body: 'Nunito', sans-serif;
}

html { font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--bg);
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-bg-dots {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(13,10,26,0.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hero-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--midnight);
}

.hero-counter {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(13,10,26,0.4);
}

.hero-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 40px 0 80px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-body { grid-template-columns: 1fr 1fr; gap: 60px; padding: 60px 0 100px; }
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(13,10,26,0.5);
  margin-bottom: 20px;
}

.star { color: var(--orange); }

.badge-nouveau {
  background: var(--yellow);
  border: 2.5px solid var(--midnight);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  transform: rotate(-2deg);
  box-shadow: 2px 2px 0 var(--midnight);
  display: inline-block;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--midnight);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.hl-teal {
  background: var(--teal);
  border: 3px solid var(--midnight);
  border-radius: 14px;
  padding: 2px 10px;
  transform: rotate(-1.5deg);
  display: inline-block;
  box-shadow: 4px 4px 0 var(--midnight);
}

.hl-magenta {
  background: var(--magenta);
  color: var(--white);
  border: 3px solid var(--midnight);
  border-radius: 14px;
  padding: 2px 10px;
  transform: rotate(1.5deg);
  display: inline-block;
  box-shadow: 4px 4px 0 var(--midnight);
  margin-top: 8px;
}

.hero-stat-pill {
  background: var(--orange);
  border: 3px solid var(--midnight);
  border-radius: 999px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 4px 4px 0 var(--midnight);
  transform: rotate(-2deg);
  margin-bottom: 24px;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--midnight);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(13,10,26,0.6);
}

.hero-sub {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
  color: rgba(13,10,26,0.65);
  line-height: 1.5;
  max-width: 420px;
}

.wa-text {
  text-decoration: underline wavy #25D366;
  text-decoration-thickness: 2.5px;
  text-underline-offset: 6px;
}

/* ===== PHONE VISUAL ===== */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.phone-wrapper {
  position: relative;
  width: 260px;
  height: 480px;
}

.phone {
  width: 220px;
  height: 420px;
  background: var(--midnight);
  border: 3px solid var(--midnight);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  box-shadow: 10px 10px 0 var(--midnight);
  transform: rotate(2deg);
  margin: 0 auto;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 18px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  z-index: 10;
}

.phone-screen {
  height: 100%;
  background: #1a2a3a;
  padding: 38px 16px 16px;
  display: flex;
  flex-direction: column;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.phone-brand {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
}

.brand-zap { color: var(--orange); }

.phone-page {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}

.phone-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.phone-retro-tag {
  background: var(--yellow);
  color: var(--midnight);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  border: 2px solid var(--white);
  transform: rotate(-2deg);
}

.phone-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--white);
  line-height: 1.3;
  text-transform: uppercase;
}

.phone-names {
  background: var(--magenta);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 8px;
  border: 2px solid var(--white);
  transform: rotate(-1.5deg);
  display: inline-block;
}

.phone-photo-wrap {
  position: relative;
}

.phone-photo {
  width: 140px;
  height: 140px;
  border: 3px solid var(--white);
  border-radius: 14px;
  overflow: hidden;
  transform: rotate(1deg);
}

.phone-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phone-caption {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  font-weight: 600;
}

/* Floating stat cards */
.stat-card {
  position: absolute;
  background: var(--white);
  border: 3px solid var(--midnight);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 5px 5px 0 var(--midnight);
}

.stat-card--most-active {
  top: -20px;
  left: -80px;
  transform: rotate(-6deg);
}

.stat-card--emoji {
  top: 60px;
  right: -70px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: rotate(10deg);
  background: var(--orange);
  border-color: var(--midnight);
}

.stat-card--love {
  bottom: 100px;
  left: -90px;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: rotate(-5deg);
}

.stat-card--total {
  bottom: -10px;
  right: -60px;
  transform: rotate(5deg);
  background: var(--yellow);
}

.stat-card-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(13,10,26,0.5);
}

.stat-card-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--midnight);
  margin-top: 2px;
}

.emoji-big { font-size: 1.8rem; }
.emoji-small { font-size: 1.4rem; }
.love-text {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(13,10,26,0.5);
}
.love-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--magenta);
}

/* ===== SECTION SHARED ===== */
.section-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(13,10,26,0.4);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--midnight);
  max-width: 700px;
}

/* ===== HOW ===== */
.how { background: var(--midnight); color: var(--white); padding: 100px 0; }
.how-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.how .section-tag { color: rgba(255,255,255,0.4); }
.how .section-tag .star { color: var(--yellow); }
.how .section-heading { color: var(--white); }

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 60px;
}
@media (min-width: 700px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.step {
  border: 3px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s;
}
.step:hover { border-color: var(--yellow); }

.step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  color: rgba(255,255,255,0.1);
  line-height: 1;
}

.step-icon {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  border: 2.5px solid var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--midnight);
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.step p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ===== FEATURES ===== */
.features { background: var(--bg); padding: 100px 0; }
.features-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 60px;
}
@media (min-width: 600px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature {
  background: var(--white);
  border: 3px solid var(--midnight);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 5px 5px 0 var(--midnight);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.15s;
}
.feature:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--midnight); }

.feat-highlight { background: var(--yellow); }
.feat-highlight2 { background: #C0F0FF; }
.feat-accent { background: #FFF3E0; }
.feat-accent2 { background: #F3E8FF; }

.feat-emoji { font-size: 2rem; }

.feature h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--midnight);
}

.feature p {
  font-size: 0.9rem;
  color: rgba(13,10,26,0.6);
  line-height: 1.5;
}

/* ===== VIRAL ===== */
.viral { background: var(--white); padding: 100px 0; }
.viral-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.viral-main { text-align: center; margin-bottom: 60px; }
.viral-kicker {
  display: inline-block;
  background: var(--magenta);
  color: var(--white);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.viral-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  color: var(--midnight);
  line-height: 1.1;
}
.viral-sub {
  font-size: 1.1rem;
  color: rgba(13,10,26,0.6);
  margin-top: 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.viral-cards { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .viral-cards { grid-template-columns: repeat(2, 1fr); } }

.viral-card {
  border: 3px solid var(--midnight);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 6px 6px 0 var(--midnight);
}
.vc-teal { background: #E0F7FA; }
.vc-magenta { background: #FCE4FF; }

.vc-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 2.5px solid var(--midnight);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.viral-card h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--midnight);
  margin-bottom: 10px;
}

.viral-card p {
  font-size: 0.95rem;
  color: rgba(13,10,26,0.65);
  line-height: 1.5;
}

/* ===== CLOSING ===== */
.closing { background: var(--bg); padding: 120px 0; }
.closing-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; text-align: center; }

.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(13,10,26,0.5);
  margin-bottom: 32px;
}

.closing-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--midnight);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1.1rem;
  color: rgba(13,10,26,0.6);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.closing-stat {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--midnight);
  border: 3px solid var(--midnight);
  border-radius: 999px;
  padding: 14px 28px;
  box-shadow: 6px 6px 0 var(--yellow);
}

.cs-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--yellow);
  letter-spacing: -0.02em;
}

.cs-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ===== FOOTER ===== */
.footer { background: var(--midnight); padding: 60px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; text-align: center; }
.footer-brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}
