/* Reset basique */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-main: #FAD5CD;
  --bg-hero: #FAD5CD;
  --bg-section: #FFE7E0;
  --bg-card: #FFFFFF;

  --accent-rose: #FCB3B7;
  --accent-vert: #D6E5DC;
  --accent-menthe: #AEE1DD;
  --accent-btn: #AEE1DD;

  --text-main: #4A3B3B;
  --text-muted: #7A6A6A;
  --border-soft: rgba(0, 0, 0, 0.04);
  --shadow-soft: 0 18px 45px rgba(250, 179, 183, 0.28);
}

/* Base */
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

/* Sections */
.section {
  padding: 80px 20px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: radial-gradient(circle at top, #FFE7E0 0, var(--bg-main) 60%);
}

.hero-inner {
  max-width: 900px;
  text-align: center;
  animation: fadeIn 1.4s ease forwards;
  opacity: 0;
}

/* Logo dans un cercle premium */
.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-logo-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #FFFFFF 0, #FAD5CD 45%, #AEE1DD 100%);
  border: 4px solid var(--accent-vert);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  overflow: hidden;          /* ✅ le cercle découpe tout ce qui dépasse */
}

.hero-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* 🔥 remplit 100% du cercle, sans espace */
  object-position: center;
  padding: 0;
}


/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Titre */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text-main);
}

/* Sous-titre */
.hero-subtitle {
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
}

/* Bouton vert premium */
.hero-btn {
  margin-top: 28px;
  padding: 12px 30px;
  border-radius: 999px;
  border: none;
  background: var(--accent-btn);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(174, 225, 221, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  background: #95d6ce;
  box-shadow: 0 22px 55px rgba(174, 225, 221, 0.7);
}

/* Date */
.hero-date {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-muted);
}

/* Background sections */
.section-built-for {
  background: var(--bg-section);
}

.section-how {
  background: #FFEDE6;
}

.section-why {
  background: var(--bg-section);
}

.section-cta {
  background: #FFEDE6;
}

/* Titres sections */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 10px;
  text-align: center;
  color: var(--text-main);
}

.section-text {
  font-size: 15px;
  max-width: 650px;
  margin: 0 auto 36px auto;
  text-align: center;
  color: var(--text-muted);
}

/* CARTES - Design premium pastel */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  border-radius: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
}

/* Effet organique pastel */
.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top left, rgba(174, 225, 221, 0.45), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.card-inner {
  position: relative;
  z-index: 1;
}

/* Petit élément graphique pastel */
.card-pill-icon {
  width: 64px;
  height: 26px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: var(--accent-vert);
  opacity: 0.9;
}

.card-pill-icon-1 {
  background: linear-gradient(90deg, var(--accent-vert), var(--accent-menthe));
}

.card-pill-icon-2 {
  background: linear-gradient(90deg, #FAD5CD, var(--accent-vert));
}

.card-pill-icon-3 {
  background: linear-gradient(90deg, var(--accent-rose), var(--accent-menthe));
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-main);
}

.card-text {
  font-size: 14px;
  color: var(--text-muted);
}

/* LIGNE pastel entre les étapes */
.steps-line {
  max-width: 620px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-vert), var(--accent-menthe));
  margin: 0 auto 30px auto;
  border-radius: 999px;
  opacity: 0.7;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.step {
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  padding: 22px 20px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: transform .2s ease;
}

.step:hover {
  transform: translateY(-4px);
}

/* Badge circulaire */
.step-badge {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.step-number {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-menthe);
  color: var(--text-main);
  font-size: 13px;
  font-weight: 600;
}

.step-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--text-main);
}

.step-text {
  font-size: 14px;
  color: var(--text-muted);
}

/* POURQUOI OTARI bloc premium */
.why-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(252, 179, 183, 0.7), rgba(174, 225, 221, 0.7));
  border-radius: 28px;
  padding: 26px 22px 30px 22px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.08);
}

.teaser-slogan {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 18px;
  color: var(--text-main);
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.why-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 16px 16px 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.why-tag {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(250, 213, 205, 0.7);
  color: var(--text-main);
  margin-bottom: 6px;
}

.why-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--text-main);
}

.why-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* CTA */
.section-cta .section-inner {
  max-width: 600px;
}

.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.waitlist-input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: #fff;
  font-size: 14px;
  color: var(--text-main);
}

.waitlist-btn {
  padding: 11px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent-btn);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  box-shadow: 0 18px 45px rgba(174, 225, 221, 0.5);
}

.waitlist-btn:hover {
  transform: translateY(-1px);
  background: #95d6ce;
}

.waitlist-message {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
  color: var(--text-muted);
}

/* Footer */
.footer {
  padding: 26px 20px;
  background: #FAD5CD;
  border-top: 1px solid var(--border-soft);
}

.footer-text {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* Animations */
@keyframes fadeIn {
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .section {
    padding: 60px 16px;
  }
}

@media (max-width: 768px) {
  .cards,
  .steps {
    grid-template-columns: 1fr;
  }

  .card,
  .step {
    min-height: auto;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo-circle {
    width: 190px;
    height: 190px;
  }
}

