/* ═══ Yoova — site statique. Conversion fidèle du SCSS de Yoova_Web. ═══ */

/* ─── Themes ─── */
:root,
[data-theme="light"] {
  --bg:          #F8FAFC;
  --bg-alt:      #EFF4FB;
  --bg-card:     #FFFFFF;
  --surface:     #FFFFFF;
  --surface-2:   #F0F4FA;
  --border:      #D8E2F0;
  --text:        #1E2F50;
  --text-muted:  #6B7A99;
  --text-inv:    #FFFFFF;
  --primary:     #1E2F50;
  --primary-rgb: 30, 47, 80;
  --accent:      #E63946;
  --accent-rgb:  230, 57, 70;
  --accent-hover:#C42A36;
  --teal:        #2EC4B6;
  --amber:       #F4A261;
  --hero-bg:     #1E2F50;
  --hero-text:   #FFFFFF;
  --shadow-sm:   0 1px 3px rgba(30,47,80,.08), 0 1px 2px rgba(30,47,80,.06);
  --shadow-md:   0 4px 16px rgba(30,47,80,.12);
  --shadow-lg:   0 8px 32px rgba(30,47,80,.16);
  --phone-shadow: 0 32px 64px rgba(30,47,80,.25);
}

[data-theme="dark"] {
  --bg:          #080E1A;
  --bg-alt:      #0D1421;
  --bg-card:     #1A2540;
  --surface:     #1E2F50;
  --surface-2:   #243459;
  --border:      rgba(255,255,255,.08);
  --text:        #EAF0F9;
  --text-muted:  #8A97B2;
  --text-inv:    #1E2F50;
  --primary:     #FFFFFF;
  --primary-rgb: 255, 255, 255;
  --accent:      #FF6B74;
  --accent-rgb:  255, 107, 116;
  --accent-hover:#FF8A91;
  --teal:        #3DD9CA;
  --amber:       #FBB85C;
  --hero-bg:     #080E1A;
  --hero-text:   #FFFFFF;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.3);
  --shadow-md:   0 4px 16px rgba(0,0,0,.4);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.5);
  --phone-shadow: 0 32px 80px rgba(0,0,0,.6);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  transition: background-color 300ms ease, color 300ms ease;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px)  { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  transition: all 250ms ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn--primary {
  background: var(--accent);
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), .35);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(var(--accent-rgb), .45);
}
.btn--primary:active { transform: translateY(0); }
.btn--outline {
  background: transparent;
  color: var(--text) !important;
  border: 1.5px solid var(--border);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent) !important; transform: translateY(-2px); }
.btn--ghost-white {
  background: rgba(255,255,255,.12);
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.btn--ghost-white:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--lg { padding: 18px 40px; font-size: 17px; }
.btn svg { flex-shrink: 0; }

.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 96px 0; } }
.section--alt { background: var(--bg-alt); }

.section__kicker {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.section__title span { color: var(--accent); }
.section__subtitle {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 580px;
}

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal--left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 650ms cubic-bezier(0.22,1,.36,1), transform 650ms cubic-bezier(0.22,1,.36,1);
}
.reveal--left.revealed { opacity: 1; transform: translateX(0); }
.reveal--right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 650ms cubic-bezier(0.22,1,.36,1), transform 650ms cubic-bezier(0.22,1,.36,1);
}
.reveal--right.revealed { opacity: 1; transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--left, .reveal--right {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* ─── Phone frame ─── */
.phone-frame {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--phone-shadow);
  border: 5px solid rgba(255,255,255,.12);
  background: #000;
}
.phone-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.phone-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 76px; height: 18px;
  background: #000;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}

/* ─── Keyframes ─── */
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes float-y2 {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-20px) rotate(-4deg); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: .5; }
  100% { transform: scale(1.7); opacity: 0; }
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

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

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 250ms ease, box-shadow 250ms ease, padding 250ms ease;
}
.navbar--scrolled {
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.navbar--solid { background: var(--bg); box-shadow: var(--shadow-sm); }
.navbar__inner { display: flex; align-items: center; gap: 24px; }
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar__logo svg { color: var(--text); }
.navbar__logo-text {
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar__links { display: none; align-items: center; gap: 32px; margin-left: auto; }
@media (min-width: 1024px) { .navbar__links { display: flex; } }
.navbar__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 150ms ease;
}
.navbar__links a:hover { color: var(--accent); }
.navbar__controls { display: flex; align-items: center; gap: 12px; margin-left: auto; }
@media (min-width: 1024px) { .navbar__controls { margin-left: 0; } }
.navbar__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 9999px;
  padding: 6px 12px;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 150ms ease;
}
.navbar__lang:hover { border-color: var(--accent); color: var(--accent); }
.navbar__lang span { transition: color 150ms ease; }
.navbar__lang .active { color: var(--accent); font-weight: 800; }
.navbar__lang .sep { opacity: .4; }
.navbar__theme-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9999px;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 150ms ease;
}
.navbar__theme-btn:hover { border-color: var(--accent); color: var(--accent); transform: rotate(20deg); }
[data-theme="light"] .icon-sun  { display: none; }
[data-theme="dark"]  .icon-moon { display: none; }
.navbar__cta { display: none; }
@media (min-width: 768px) { .navbar__cta { display: inline-flex; } }
.navbar__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  transition: all 150ms ease;
}
@media (min-width: 1024px) { .navbar__burger { display: none; } }
.navbar__burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 250ms ease;
  transform-origin: center;
}
.navbar__burger span:nth-child(1).open { transform: translateY(7px) rotate(45deg); }
.navbar__burger span:nth-child(2).open { opacity: 0; transform: scaleX(0); }
.navbar__burger span:nth-child(3).open { transform: translateY(-7px) rotate(-45deg); }
.navbar__burger:hover { border-color: var(--accent); }
.navbar__mobile {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 0;
  transition: max-height 400ms cubic-bezier(0.22,1,.36,1);
  background: var(--bg);
  border-top: 1px solid transparent;
}
@media (min-width: 1024px) { .navbar__mobile { display: none !important; } }
.navbar__mobile--open { max-height: 480px; border-top-color: var(--border); }
.navbar__mobile ul { display: flex; flex-direction: column; gap: 8px; padding: 16px 24px 24px; }
.navbar__mobile a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 150ms ease;
}
.navbar__mobile a:hover { color: var(--accent); }
.navbar__mobile-controls { display: flex; align-items: center; gap: 12px; padding-top: 8px; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--hero-bg);
  padding-top: 80px;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .18; }
.hero__blob--1 {
  width: 600px; height: 600px;
  background: #E63946;
  top: -200px; left: -200px;
  animation: orbit 30s linear infinite;
}
.hero__blob--2 {
  width: 400px; height: 400px;
  background: #2EC4B6;
  bottom: -100px; right: -100px;
  animation: orbit 40s linear infinite reverse;
}
.hero__blob--3 {
  width: 300px; height: 300px;
  background: #F4A261;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbit 25s linear infinite;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding-top: 32px;
  padding-bottom: 64px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .hero__inner { flex-direction: row; align-items: center; gap: 64px; padding-top: 64px; }
}
.hero__content { flex: 1; max-width: 560px; text-align: center; }
@media (min-width: 1024px) { .hero__content { text-align: left; } }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  padding: 6px 14px 6px 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 24px;
  animation: slide-up 600ms cubic-bezier(0.22,1,.36,1) both;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  background: #2EC4B6;
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}
.hero__flag { font-size: 16px; }
.hero__h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
  animation: slide-up 700ms 100ms cubic-bezier(0.22,1,.36,1) both;
}
.hero__h1-line1, .hero__h1-line2 { display: block; }
.hero__h1-line2 {
  background: linear-gradient(135deg, #FF6B74 0%, #FF9A9E 60%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
  animation: slide-up 700ms 200ms cubic-bezier(0.22,1,.36,1) both;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
  animation: slide-up 700ms 300ms cubic-bezier(0.22,1,.36,1) both;
}
@media (min-width: 1024px) { .hero__ctas { justify-content: flex-start; } }
.hero__btn-play {
  background: #E63946 !important;
  box-shadow: 0 8px 28px rgba(230,57,70,.45) !important;
  color: #fff !important;
}
.hero__soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  animation: slide-up 700ms 400ms cubic-bezier(0.22,1,.36,1) both;
}
.hero__phones {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  max-width: 360px;
  height: 480px;
}
@media (min-width: 768px)  { .hero__phones { height: 560px; max-width: 420px; } }
@media (min-width: 1024px) { .hero__phones { height: 640px; max-width: 480px; } }
.hero__phone { position: absolute; }
.hero__phone .phone-frame {
  border-radius: 36px;
  overflow: hidden;
  border: 5px solid rgba(255,255,255,.15);
}
.hero__phone--back {
  width: 200px;
  top: 20px; left: 0;
  transform: rotate(-6deg) translateX(20px);
  opacity: .75;
  animation: float-y2 5s ease-in-out infinite;
  animation-delay: 0.5s;
}
@media (min-width: 768px) { .hero__phone--back { width: 240px; } }
.hero__phone--back .phone-frame { box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.hero__phone--front {
  width: 210px;
  top: 40px; right: 0;
  animation: float-y 4.5s ease-in-out infinite;
}
@media (min-width: 768px) { .hero__phone--front { width: 250px; } }
.hero__phone--front .phone-frame { box-shadow: 0 32px 80px rgba(0,0,0,.6); }
.hero__float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 9999px;
  padding: 8px 14px 8px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.hero__float-badge--1 {
  top: -16px; right: -20px;
  animation: float-y 3.5s ease-in-out infinite;
  animation-delay: 0.8s;
}
.hero__float-badge--2 {
  bottom: 60px; left: -40px;
  animation: float-y 4s ease-in-out infinite;
  animation-delay: 1.5s;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: slide-up 1s 600ms both;
}
.hero__scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: float-y 2s ease-in-out infinite;
}

/* ─── Stats ─── */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .stats__inner { grid-template-columns: repeat(3, 1fr auto) 1fr; }
}
.stats__item { text-align: center; }
.stats__num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 8px;
}
.stats__num--red   { color: #E63946; }
.stats__num--amber { color: #F4A261; }
.stats__num--teal  { color: #2EC4B6; }
.stats__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 140px;
  margin: 0 auto;
}
.stats__divider { display: none; }
@media (min-width: 768px) {
  .stats__divider { display: block; width: 1px; height: 60px; background: var(--border); }
}

/* ─── What is ─── */
.what__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .what__inner { flex-direction: row; gap: 64px; align-items: center; }
}
.what__illus { flex-shrink: 0; width: 100%; max-width: 480px; }
.what__svg { width: 100%; max-width: 480px; display: block; }
.what__content { flex: 1; max-width: 520px; }
.what__cards { display: flex; flex-direction: column; gap: 12px; }
.what__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  transition: all 250ms ease;
}
.what__card:hover { border-color: var(--accent); transform: translateX(4px); }
.what__card > div:last-child { flex: 1; }
.what__card > div:last-child strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.what__card > div:last-child p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}
.what__card-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}
.what__card-icon--teal  { background: rgba(46,196,182,.12); color: #2EC4B6; }
.what__card-icon--amber { background: rgba(244,162,97,.12); color: #F4A261; }
.what__card-icon--red   { background: rgba(var(--accent-rgb), .12); color: var(--accent); }
.what__card-icon--blue  { background: rgba(37,99,235,.12); color: #2563EB; }

/* ─── How it works ─── */
.how__header { margin-bottom: 48px; }
.how__tabs {
  display: inline-flex;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: 9999px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 48px;
}
.how__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 9999px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 250ms ease;
}
.how__tab.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), .35);
}
.how__tab:not(.active):hover { color: var(--accent); }
.how__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 768px) {
  .how__steps { grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; }
}
.how__steps[hidden] { display: none; }
.how__connector { display: none; }
@media (min-width: 768px) {
  .how__connector { display: flex; align-items: center; justify-content: center; width: 80px; }
  .how__connector svg { width: 80px; height: 24px; }
}
.how__step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.how__step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.how__step-num {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-alt);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-muted);
}
.how__step-num--red { color: var(--accent); background: rgba(var(--accent-rgb), .1); }
.how__step-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
}
.how__step-icon--blue  { background: rgba(37,99,235,.12); color: #2563EB; }
.how__step-icon--teal  { background: rgba(46,196,182,.12); color: #2EC4B6; }
.how__step-icon--amber { background: rgba(244,162,97,.12); color: #F4A261; }
.how__step-icon--red   { background: rgba(var(--accent-rgb), .12); color: var(--accent); }
.how__step-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.how__step-body p { font-size: 14px; line-height: 1.6; color: var(--text-muted); }
.how__undraw { margin-top: 64px; opacity: .7; }
.how__road-svg { width: 100%; max-width: 600px; display: block; margin: 0 auto; }

/* ─── Features ─── */
.features { background: var(--bg-alt); }
.features__header { margin-bottom: 48px; }
.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px)  { .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features__grid { grid-template-columns: repeat(3, 1fr); } }
.features__card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
  position: relative;
  overflow: hidden;
}
.features__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.features__card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.features__card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
}
@media (min-width: 1024px) {
  .features__card--featured {
    grid-column: 1 / 3;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }
  .features__card--featured div:first-of-type + div { flex: 1; }
  .features__card--wide {
    grid-column: 2 / 4;
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
  .features__card--wide div { flex: 1; }
}
.features__card-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  flex-shrink: 0;
}
.features__card-icon--red   { background: rgba(var(--accent-rgb), .12); color: var(--accent); }
.features__card-icon--teal  { background: rgba(46,196,182,.12); color: #2EC4B6; }
.features__card-icon--amber { background: rgba(244,162,97,.12); color: #F4A261; }
.features__card-icon--blue  { background: rgba(37,99,235,.12); color: #2563EB; }
.features__card-illus {
  width: 180px; height: 120px;
  flex-shrink: 0;
  opacity: .8;
  align-self: flex-end;
}
.features__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.features__badge {
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
}
.features__places { display: flex; flex-wrap: wrap; gap: 8px; }
.features__places span {
  font-size: 12px;
  font-weight: 500;
  color: #2563EB;
  background: rgba(37,99,235,.1);
  padding: 3px 10px;
  border-radius: 9999px;
}
.features__perf { display: flex; flex-direction: column; gap: 8px; }
.features__perf-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}
.features__perf-bar span:first-child { width: 24px; }
.features__perf-val { font-weight: 700; color: var(--text); white-space: nowrap; }
.features .bar {
  flex: 1;
  height: 6px;
  background: var(--bg-alt);
  border-radius: 9999px;
  overflow: hidden;
}
.features .bar__fill {
  height: 100%;
  background: #F4A261;
  border-radius: 9999px;
  transition: width 1s ease;
}
.features .bar__fill--teal { background: #2EC4B6; }
.features__score { display: flex; align-items: center; gap: 12px; }
.features__score-ring { position: relative; width: 60px; height: 60px; }
.features__score-ring svg { width: 60px; height: 60px; }
.features__score-ring > span {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #F4A261;
}
.features__score-label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}
.features__route-map { flex: 1; min-width: 200px; max-width: 300px; opacity: .85; }

/* ─── Profiles ─── */
.profiles__header { margin-bottom: 48px; }
.profiles__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .profiles__grid { grid-template-columns: 1fr 1fr; } }
.profiles__card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 250ms ease;
}
.profiles__card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.profiles__card--passenger { border-top: 4px solid #2EC4B6; }
.profiles__card--passenger:hover { border-color: #2EC4B6; }
.profiles__card--driver { border-top: 4px solid var(--accent); }
.profiles__card--driver:hover { border-color: var(--accent); }
.profiles__card-top { display: flex; gap: 16px; align-items: flex-start; }
.profiles__card-top > div:last-child { flex: 1; }
.profiles__card-top > div:last-child h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.profiles__card-top > div:last-child p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}
.profiles__card-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: rgba(46,196,182,.12);
  color: #2EC4B6;
  flex-shrink: 0;
}
.profiles__card-icon--red { background: rgba(var(--accent-rgb), .12); color: var(--accent); }
.profiles__phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 16px 0;
}
.profiles__phone { width: 180px; height: 360px; flex-shrink: 0; }
@media (min-width: 768px) { .profiles__phone { width: 200px; height: 400px; } }
.profiles__phone img { object-fit: cover; width: 100%; height: 100%; }
.profiles__callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #2EC4B6;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 9999px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  animation: float-y 3.5s ease-in-out infinite;
}
.profiles__callout--1 { top: 30px; right: 0; background: #2EC4B6; animation-delay: 0s; }
.profiles__callout--2 { bottom: 40px; left: 0; background: #1E2F50; animation-delay: 1s; }
.profiles__callout--red { background: var(--accent) !important; }
.profiles__callout--amber { background: #F4A261 !important; color: #fff !important; }
.profiles__btn {
  justify-content: center;
  background: #2EC4B6 !important;
  box-shadow: 0 4px 20px rgba(46,196,182,.35) !important;
}
.profiles__btn--red {
  background: var(--accent) !important;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), .35) !important;
}

/* ─── Screenshots ─── */
.screens__header { margin-bottom: 48px; }
.screens__layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .screens__layout { flex-direction: row; align-items: flex-start; gap: 64px; }
}
.screens__main { flex-shrink: 0; display: flex; justify-content: center; }
.screens__phone-wrap { position: relative; }
.screens__phone { width: 240px; height: 520px; position: relative; overflow: hidden; }
@media (min-width: 768px) { .screens__phone { width: 280px; height: 600px; } }
.screens__phone img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 400ms ease;
}
.screens__phone img.active { opacity: 1; }
.screens__glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(var(--accent-rgb), .25) 0%, transparent 70%);
  z-index: -1;
  filter: blur(30px);
}
.screens__sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.screens__thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (min-width: 768px)  { .screens__thumbnails { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .screens__thumbnails { grid-template-columns: repeat(6, 1fr); } }
.screens__thumb {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: none;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 8px;
  cursor: pointer;
  transition: all 250ms ease;
  overflow: hidden;
}
.screens__thumb img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 250ms ease;
}
.screens__thumb span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
}
.screens__thumb:hover { border-color: var(--accent); }
.screens__thumb:hover img { transform: scale(1.04); }
.screens__thumb.active {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), .06);
}
.screens__thumb.active span { color: var(--accent); }
.screens__nav { display: flex; align-items: center; justify-content: center; gap: 16px; }
.screens__nav-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9999px;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  transition: all 150ms ease;
}
.screens__nav-btn:hover { border-color: var(--accent); color: var(--accent); transform: scale(1.05); }
.screens__counter {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 48px;
  text-align: center;
}

/* ─── Download CTA ─── */
.cta {
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
.cta__bg { position: absolute; inset: 0; pointer-events: none; }
.cta__blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .15; }
.cta__blob--1 { width: 500px; height: 500px; background: #E63946; top: -150px; right: -150px; }
.cta__blob--2 { width: 400px; height: 400px; background: #2EC4B6; bottom: -100px; left: -100px; }
.cta__watermark {
  position: absolute;
  width: 500px; height: 500px;
  right: -100px; bottom: -100px;
  opacity: 1;
}
.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
@media (min-width: 1024px) { .cta__inner { flex-direction: row; align-items: center; } }
.cta__content { flex: 1; max-width: 560px; text-align: center; }
@media (min-width: 1024px) { .cta__content { text-align: left; } }
.cta__kicker {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #2EC4B6;
  margin-bottom: 12px;
}
.cta__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}
.cta__title span { color: #E63946; }
.cta__sub {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,.65);
  margin-bottom: 32px;
  max-width: 480px;
}
.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
@media (min-width: 1024px) { .cta__buttons { justify-content: flex-start; } }
.cta__btn-play, .cta__btn-apple {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 250ms ease;
  min-width: 200px;
}
.cta__btn-play { background: #fff; color: #1E2F50 !important; }
.cta__btn-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
  color: #1E2F50 !important;
}
.cta__btn-apple {
  background: rgba(255,255,255,.1);
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.cta__btn-apple:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-3px);
  color: #fff !important;
}
.cta__btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.cta__btn-text small { font-size: 11px; opacity: .7; font-weight: 400; }
.cta__btn-text span {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
.cta__company { font-size: 13px; color: rgba(255,255,255,.4); }
.cta__illus { flex-shrink: 0; max-width: 400px; width: 100%; }
.cta__svg { width: 100%; max-width: 400px; }

/* ─── Footer ─── */
.footer {
  background: #050B14;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 48px;
}
@media (min-width: 768px) { .footer__inner { grid-template-columns: 2fr repeat(3, 1fr); } }
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer__logo span {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}
.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
  max-width: 220px;
}
.footer__made { font-size: 13px; color: rgba(255,255,255,.3); }
.footer__col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a, .footer__col span {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color 150ms ease;
}
.footer__col a:hover { color: #fff; }
.footer__col span { cursor: default; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px 0;
}
.footer__bottom .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,.3); }
.footer__bottom-right { display: flex; align-items: center; gap: 16px; }
.footer__social {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: all 150ms ease;
  border: 1px solid rgba(255,255,255,.08);
}
.footer__social:hover {
  color: #fff;
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.05);
}

/* ═══ Nouvelles pages (sécurité, FAQ, axes, légal) — même langage visuel ═══ */

.page-hero {
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
  padding: 160px 0 80px;
  color: #fff;
}
.page-hero__kicker {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #2EC4B6;
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
  max-width: 760px;
}
.page-hero h1 span {
  background: linear-gradient(135deg, #FF6B74 0%, #FF9A9E 60%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
  color: rgba(255,255,255,.7);
  max-width: 640px;
}
.page-hero .hero__blob { z-index: 0; }
.page-hero .container { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }

/* Prose (pages légales et contenu long) */
.prose { max-width: 760px; }
.prose h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin: 40px 0 12px;
}
.prose h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 8px;
}
.prose p, .prose li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.prose ul { list-style: disc; padding-left: 22px; }
.prose strong { color: var(--text); }

/* FAQ accordéon */
.faq-list { max-width: 760px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 250ms ease;
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 250ms ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item div {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Cartes axes (pages SEO covoiturage) */
.axes-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px)  { .axes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .axes-grid { grid-template-columns: repeat(4, 1fr); } }
.axe-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  text-decoration: none;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}
.axe-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.axe-card strong {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}
.axe-card span { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.axe-card em {
  font-style: normal;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

/* Tableau infos axe */
.axe-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}
@media (min-width: 768px) { .axe-facts { grid-template-columns: repeat(4, 1fr); } }
.axe-fact {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}
.axe-fact strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 4px;
}
.axe-fact span { font-size: 12px; color: var(--text-muted); }

/* Bandeau sécurité (cards) */
.safety-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .safety-grid { grid-template-columns: repeat(2, 1fr); } }
