:root {
  --jaune:   #FDB950;
  --marron:  #6B4423;
  --vert:    #4A9B8E;
  --orange:  #E8A040;
  --bg:      #FFFBF0;
  --texte:   #2D1A0E;
  --gris:    #F5F0E8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--texte);
  background: var(--bg);
  line-height: 1.6;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(255,251,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,68,35,0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--marron);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.nav-logo img { width: 36px; height: 36px; border-radius: 8px; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--marron);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color .2s;
}

.nav-links a:hover { color: var(--vert); }

.btn-nav {
  background: var(--vert);
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: opacity .2s !important;
}

.btn-nav:hover { opacity: 0.85; }

/* ── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 40px 60px;
  background: linear-gradient(135deg, var(--jaune) 0%, var(--orange) 60%, #FFF8E7 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(107,68,35,0.08) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(107,68,35,0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--marron);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--marron);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 span { color: white; }

.hero p {
  font-size: 1.1rem;
  color: var(--marron);
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--marron);
  color: white;
  padding: 16px 28px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(107,68,35,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107,68,35,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.5);
  color: var(--marron);
  padding: 16px 28px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(107,68,35,0.3);
  transition: background .2s;
}

.btn-secondary:hover { background: rgba(255,255,255,0.7); }

.hero-phones {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.phone-mockup {
  width: 200px;
  background: var(--marron);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(107,68,35,0.35);
  transform: rotate(-4deg);
}

.phone-mockup:last-child { transform: rotate(4deg) translateY(20px); }

.phone-screen {
  background: var(--jaune);
  border-radius: 26px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}


/* ── STATS ───────────────────────────────────────── */
.stats {
  background: var(--marron);
  padding: 48px 40px;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--jaune);
  line-height: 1;
}

.stat-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  font-weight: 500;
}

/* ── FEATURES ────────────────────────────────────── */
.features {
  padding: 100px 40px;
  background: var(--bg);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  background: var(--jaune);
  color: var(--marron);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--marron);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header p {
  font-size: 1rem;
  color: rgba(45,26,14,0.65);
}

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.feature-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(107,68,35,0.08);
  box-shadow: 0 2px 20px rgba(107,68,35,0.06);
  transition: transform .2s, box-shadow .2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(107,68,35,0.12);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--marron);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: rgba(45,26,14,0.6);
  line-height: 1.6;
}

/* ── SCREENSHOTS ─────────────────────────────────── */
.screenshots {
  background: var(--gris);
  padding: 100px 40px;
}

.screenshots-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: end;
}

.screenshot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.screenshot-item--center .screenshot-phone {
  transform: scale(1.08);
  transform-origin: bottom center;
}

.screenshot-phone {
  width: 180px;
  background: var(--marron);
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 24px 48px rgba(107,68,35,0.25);
  margin-bottom: 24px;
}

.screenshot-phone img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

.screenshot-item h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--marron);
  margin-bottom: 8px;
}

.screenshot-item p {
  font-size: 0.85rem;
  color: rgba(45,26,14,0.6);
  line-height: 1.6;
  max-width: 220px;
}

@media (max-width: 768px) {
  .screenshots { padding: 64px 20px; }
  .screenshots-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
  }
  .screenshot-item--center .screenshot-phone { transform: none; }
}

/* ── ANIMAUX ─────────────────────────────────────── */
.animaux {
  background: var(--gris);
  padding: 100px 40px;
}

.animaux-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.animal-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s;
  cursor: default;
  position: relative;
}

.animal-card:hover {
  border-color: var(--jaune);
  transform: translateY(-4px);
}

.animal-card--soon {
  position: relative;
  opacity: 0.6;
  pointer-events: none;
}

.animal-card--soon:hover {
  border-color: transparent;
  transform: none;
}

.soon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--vert);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.animal-emoji { font-size: 4rem; margin-bottom: 16px; }

.animal-card h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--marron);
  margin-bottom: 12px;
}

.animal-card ul {
  list-style: none;
  text-align: left;
  display: inline-block;
}

.animal-card ul li {
  font-size: 0.9rem;
  color: rgba(45,26,14,0.7);
  padding: 4px 0;
}

.animal-card ul li::before {
  content: "✓ ";
  color: var(--vert);
  font-weight: 700;
}

/* ── CTA ─────────────────────────────────────────── */
.cta {
  background: linear-gradient(135deg, var(--vert) 0%, #3D8A7E 100%);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.cta-inner { position: relative; max-width: 600px; margin: 0 auto; }

.cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: var(--vert);
  padding: 18px 36px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: transform .2s, box-shadow .2s;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--marron);
  color: rgba(255,255,255,0.7);
  padding: 48px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--jaune);
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color .2s;
}

.footer-links a:hover { color: var(--jaune); }

.footer-copy { font-size: 0.85rem; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero { padding: 80px 20px 48px; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-phones { display: none; }
  .stats { padding: 40px 20px; }
  .stats-inner { grid-template-columns: 1fr; gap: 24px; }
  .features, .animaux { padding: 64px 20px; }
  .animaux-grid { grid-template-columns: 1fr; }
  .cta { padding: 64px 20px; }
  footer { padding: 36px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
