/* ===========================
   GASPIZ — style.css
   Design system : blanc & jaune, typo arrondie
   =========================== */

:root {
  --yellow: #FFC800;
  --yellow-dark: #E6B400;
  --yellow-light: #FFF6D9;
  --yellow-pale: #FFFBEF;
  --white: #FFFFFF;
  --cream: #FFFDF8;
  --dark: #241E0F;
  --dark-2: #17130A;
  --grey: #6E6552;
  --grey-light: #F2ECDA;
  --border: #EFE6C8;
  --danger: #E2543A;

  --font-title: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;

  --radius-lg: 28px;
  --radius: 20px;
  --radius-sm: 14px;
  --radius-pill: 999px;

  --shadow: 0 20px 50px rgba(36, 30, 15, 0.10);
  --shadow-card: 0 10px 30px rgba(255, 200, 0, 0.18);
  --shadow-dark: 0 20px 50px rgba(0, 0, 0, 0.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: 0 8px 24px rgba(255, 200, 0, 0.4);
}

.btn-primary:hover {
  background: var(--dark);
  color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(36, 30, 15, 0.25);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-sm {
  padding: 0.7rem 1.5rem;
  font-size: 0.85rem;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  padding: 0.75rem 0;
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(36, 30, 15, 0.06);
}

.nav-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.nav-links a {
  color: var(--dark);
  font-size: 0.92rem;
  font-weight: 700;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow-dark);
}

.nav-download {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-cta {
  background: var(--dark) !important;
  color: var(--white) !important;
  padding: 0.7rem 1.5rem !important;
  border-radius: var(--radius-pill) !important;
  font-family: var(--font-title);
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: var(--transition) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-cta:hover {
  background: var(--yellow) !important;
  color: var(--dark) !important;
  transform: translateY(-1px);
}

.nav-cta .arrow-down {
  font-size: 0.75rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   PAGE HERO (sous-pages)
   =========================== */
.page-hero {
  background: var(--yellow-pale);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.6;
  z-index: 0;
}

.page-hero .blob-a {
  width: 420px;
  height: 420px;
  background: var(--yellow);
  top: -180px;
  right: -100px;
}

.page-hero .blob-b {
  width: 300px;
  height: 300px;
  background: var(--yellow);
  bottom: -150px;
  left: -80px;
  opacity: 0.4;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--grey);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumb a:hover {
  color: var(--yellow-dark);
}

.page-hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.page-hero-desc {
  font-size: 1.1rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ===========================
   HOME HERO
   =========================== */
/* Le hero fait 100vh : le visuel est une image fixe, il n'y a plus de zone
   de scroll à réserver pour animer une vidéo. */
.hero {
  background: var(--white);
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-sticky {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.blob1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
  opacity: 0.35;
  top: -140px;
  left: -140px;
  animation: blobMove1 8s ease-in-out infinite alternate;
}

.blob2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
  opacity: 0.35;
  bottom: -80px;
  right: -80px;
  animation: blobMove2 10s ease-in-out infinite alternate;
}

@keyframes blobMove1 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-40px, 30px) scale(1.1); }
}

@keyframes blobMove2 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, -20px) scale(1.05); }
}

.hero-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 9rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.highlight {
  position: relative;
  white-space: nowrap;
}

.highlight span {
  position: relative;
  z-index: 1;
}

.highlight::before {
  content: '';
  position: absolute;
  left: -0.15em;
  right: -0.15em;
  bottom: 0.08em;
  height: 0.35em;
  background: var(--yellow);
  border-radius: 6px;
  z-index: 0;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--grey);
  max-width: 470px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 52px;
  transition: var(--transition);
}

.store-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.03);
}

.store-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 2rem;
  color: var(--dark);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 2rem;
  color: var(--yellow-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 0.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

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

.phone-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
}

/* Visuel du hero : PNG/WebP détouré (fond transparent), donc pas de
   border-radius ni de box-shadow — l'ombre est déjà peinte dans l'image. */
.hero-shot {
  display: block;
  width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-shot {
    animation: none;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  min-width: 180px;
  border: 1px solid var(--border);
}

.floating-card .card-emoji {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.floating-card div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.floating-card strong {
  font-size: 0.85rem;
  color: var(--dark);
  line-height: 1.2;
}

.floating-card span {
  font-size: 0.75rem;
  color: var(--grey);
}

.card-top {
  top: 10%;
  left: -30%;
  animation: floatCard1 5s ease-in-out infinite alternate;
}

.card-bottom {
  bottom: 15%;
  right: -20%;
  animation: floatCard2 6s ease-in-out infinite alternate;
}

@keyframes floatCard1 {
  from { transform: translate(0, 0); }
  to { transform: translate(-5px, 8px); }
}

@keyframes floatCard2 {
  from { transform: translate(0, 0); }
  to { transform: translate(5px, -8px); }
}

/* ===========================
   PRESSE
   =========================== */
.presse {
  background: var(--grey-light);
  padding: 2.5rem 0;
}

.presse-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.presse-label {
  color: var(--grey);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}

.presse-logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.presse-logos img {
  height: 34px;
  width: auto;
  opacity: 0.6;
  transition: var(--transition);
  object-fit: contain;
  filter: grayscale(60%);
}

.presse-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ===========================
   SECTIONS COMMUNES
   =========================== */
.section-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow-dark);
  margin-bottom: 0.75rem;
}

.section-tag.light {
  color: var(--yellow);
}

.section-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===========================
   IMPACT / CONCEPT
   =========================== */
.impact {
  padding: 8rem 0;
  background: var(--white);
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}

.impact-text .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.impact-text .section-desc {
  text-align: left;
  margin: 0 0 2rem 0;
  max-width: 100%;
}

.impact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.impact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.check {
  width: 26px;
  height: 26px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.impact-visual {
  display: flex;
  justify-content: center;
}

/* Photo rectangulaire : coins arrondis + ombre portée classique (un
   drop-shadow ne conviendrait qu'à un visuel détouré). */
.impact-visual img,
.impact-visual svg {
  max-width: 460px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(255, 200, 0, 0.25), var(--shadow);
}

/* ===========================
   COMMENT CA MARCHE
   =========================== */
.comment {
  padding: 8rem 0;
  background: var(--yellow-pale);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 1.75rem;
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--border);
  animation-delay: var(--delay);
}

.step:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-card);
  transform: translateY(-6px);
}

.step-number {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 4rem;
  color: var(--yellow-dark);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--dark);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  padding: 12px;
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.step h3 {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.step p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ===========================
   ZONES
   =========================== */
.zones {
  padding: 8rem 0;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}

.zones .section-title {
  color: var(--white);
}

.zones .section-desc {
  color: rgba(255,255,255,0.6);
}

.zones-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.zone-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  min-width: 160px;
  transition: var(--transition);
}

.zone-card.active {
  border-color: var(--yellow);
  background: rgba(255, 200, 0, 0.08);
}

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

/* Pastille du code ISO du territoire. Pas de drapeau : la Guadeloupe, la
   Guyane et Saint-Martin n'en ont pas d'officiel, ceux qui circulent sont
   politiquement connotés, et les armoiries de Saint-Barthélemy seraient
   illisibles à cette taille. Le nom du territoire est juste en dessous,
   d'où le aria-hidden sur la pastille. */
.zone-flag {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.zone-card.active .zone-flag {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
}

.zone-card h3 {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.zone-status {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.zone-status.disponible {
  background: rgba(255, 200, 0, 0.18);
  color: var(--yellow);
  border: 1px solid rgba(255, 200, 0, 0.4);
}

.zone-status.bientot {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
}

/* ===========================
   COMMERCANTS
   =========================== */
.commercants {
  padding: 8rem 0;
  background: var(--white);
}

.logos-track-wrapper {
  overflow: hidden;
  margin-bottom: 3rem;
  position: relative;
}

.logos-track-wrapper::before,
.logos-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logos-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.logos-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: scrollLogos 35s linear infinite;
  width: max-content;
}

.logos-track img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.8;
  transition: var(--transition);
  flex-shrink: 0;
}

.logos-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scrollLogos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.commercant-cta {
  text-align: center;
  background: var(--yellow-pale);
  border-radius: var(--radius);
  padding: 3rem;
  border: 1px solid var(--border);
}

.commercant-cta p {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

/* Perks grid (page commercants.html) */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.perk-card {
  background: var(--yellow-pale);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.perk-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--yellow);
}

.perk-icon {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.perk-icon svg {
  width: 28px;
  height: 28px;
}

.perk-glyph {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.25rem;
  color: #ffffff;
  line-height: 1;
}

.perk-card h3 {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.perk-card p {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.6;
}

/* Steps horizontal (commercants) */
.join-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: join;
}

.join-step {
  text-align: center;
  padding: 0 1rem;
}

.join-step .join-number {
  width: 48px;
  height: 48px;
  background: var(--dark);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 auto 1.25rem;
}

.join-step h3 {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.join-step p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.6;
}

/* ===========================
   FORFAITS (pricing)
   =========================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.75rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--yellow);
}

.pricing-card.featured {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
}

.pricing-name {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow-dark);
  margin-bottom: 1rem;
}

.pricing-card.featured .pricing-name {
  color: var(--yellow);
}

.pricing-price {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 2.6rem;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-card.featured .pricing-price {
  color: var(--white);
}

.pricing-price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--grey);
}

.pricing-card.featured .pricing-price span {
  color: rgba(255,255,255,0.55);
}

.pricing-baskets {
  display: inline-block;
  background: var(--yellow-pale);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  margin: 1.25rem 0 1.75rem;
}

.pricing-card.featured .pricing-baskets {
  background: rgba(255, 200, 0, 0.15);
  color: var(--yellow);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-align: left;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--dark);
}

.pricing-card.featured .pricing-features li {
  color: rgba(255,255,255,0.85);
}

.pricing-features .check {
  width: 20px;
  height: 20px;
  font-size: 0.7rem;
}

.pricing-note {
  text-align: center;
  color: var(--grey);
  font-size: 0.9rem;
  margin-top: 2.5rem;
}

/* ===========================
   TEMOIGNAGES VIDEO COMMERCANTS
   =========================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.video-card {
  display: block;
  background: var(--yellow-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--yellow);
}

.video-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--dark);
  overflow: hidden;
  cursor: pointer;
}

.video-thumb iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.video-play svg {
  width: 18px;
  height: 18px;
  margin-left: 2px;
}

.video-card-body {
  padding: 1.1rem 1.25rem;
}

.video-meta {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--yellow-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.video-card-body h3 {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.video-card-body span {
  font-size: 0.85rem;
  color: var(--grey);
}

/* ===========================
   TEMOIGNAGES
   =========================== */
.temoignages {
  padding: 8rem 0;
  background: var(--yellow-pale);
}

.rating-global {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.stars {
  color: var(--yellow-dark);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.rating-global strong {
  font-weight: 800;
}

.rating-global span {
  color: var(--grey);
}

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.temoignage {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  animation-delay: var(--delay, 0s);
}

.temoignage:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.temo-stars {
  color: var(--yellow-dark);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.temoignage > p {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.temo-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.temo-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.temo-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
}

.temo-author span {
  font-size: 0.8rem;
  color: var(--grey);
}

/* ===========================
   RESEAUX SOCIAUX (section)
   =========================== */
.social-section {
  padding: 6rem 0;
  background: var(--white);
  text-align: center;
}

.social-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: var(--yellow-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  min-width: 150px;
  transition: var(--transition);
}

.social-card:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-6px);
}

.social-card:hover .social-icon {
  background: var(--white);
  color: var(--yellow-dark);
}

.social-card:hover span {
  color: var(--white);
}

.social-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon svg {
  width: 22px;
  height: 22px;
}

.social-card span {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  transition: var(--transition);
}

/* ===========================
   BLOG
   =========================== */
.blog-section {
  padding: 8rem 0;
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--yellow-pale);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--yellow);
}

.blog-card-cover {
  height: 190px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.blog-card-cover.audio::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 60%);
}

.blog-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.blog-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--yellow-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card-body h3 {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.3;
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.6;
  flex: 1;
}

.blog-card-link {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-card:hover .blog-card-link {
  color: var(--yellow-dark);
}

.blog-soon {
  margin-top: 4rem;
  text-align: center;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 3rem 2rem;
}

.blog-soon h3 {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--yellow);
}

.blog-soon p {
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto;
}

/* ARTICLE PAGE */
.article-header {
  background: var(--yellow-pale);
  padding: 10rem 0 4rem;
  text-align: center;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--yellow-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.article-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.8rem);
  max-width: 800px;
  margin: 0 auto 1.25rem;
  line-height: 1.2;
}

.article-lead {
  font-size: 1.1rem;
  color: var(--grey);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.article-body {
  padding: 5rem 0;
}

.article-wrap {
  max-width: 740px;
  margin: 0 auto;
}

.audio-player-box {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.audio-player-box .audio-emoji {
  width: 64px;
  height: 64px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.audio-player-info {
  flex: 1;
  min-width: 220px;
}

.audio-player-info strong {
  display: block;
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.audio-player-info span {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}

.audio-player-box audio {
  width: 100%;
  margin-top: 1rem;
  border-radius: var(--radius-pill);
}

/* Vignette video cliquable dans un article (presse TV/radio) */
.article-video-box {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 3rem;
  aspect-ratio: 16 / 9;
  background: var(--dark);
}

.article-video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.article-video-box:hover img {
  transform: scale(1.03);
}

.article-video-box .video-play {
  width: 68px;
  height: 68px;
}

.article-video-box .video-play svg {
  width: 24px;
  height: 24px;
}

/* Bouton lien vers un article de presse externe */
.press-link-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--dark);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.press-link-box img {
  height: 44px;
  width: auto;
  background: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  flex-shrink: 0;
}

.press-link-box-text {
  flex: 1;
  min-width: 200px;
}

.press-link-box-text strong {
  display: block;
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.press-link-box-text span {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}

.article-body h2 {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
}

.article-body p {
  font-size: 1.02rem;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.article-body blockquote {
  border-left: 4px solid var(--yellow);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--grey);
}

.article-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.article-share span {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-share a {
  width: 40px;
  height: 40px;
  background: var(--yellow-pale);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.article-share a:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--yellow);
}

.article-share svg {
  width: 16px;
  height: 16px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 2.5rem;
}

.article-back:hover {
  color: var(--yellow-dark);
}

/* ===========================
   CHIFFRES (page concept)
   =========================== */
.chiffres {
  padding: 7rem 0;
  background: var(--dark);
  color: var(--white);
}

.chiffres .section-title {
  color: var(--white);
}

.chiffres .section-desc {
  color: rgba(255,255,255,0.6);
}

.chiffres-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.chiffre-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2.25rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.chiffre-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.chiffre-number {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.chiffre-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

/* ===========================
   FAQ
   =========================== */
.faq {
  padding: 8rem 0;
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--yellow-pale);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  animation-delay: var(--delay, 0s);
}

.faq-item.open {
  border-color: var(--yellow);
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-body);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--yellow-dark);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--yellow-dark);
  flex-shrink: 0;
  line-height: 1;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ===========================
   CONTACT
   =========================== */
.contact-section {
  padding: 6rem 0 8rem;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
}

.contact-info h3 {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--yellow);
}

.contact-info > p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item .contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 200, 0, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item .contact-icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.contact-item span,
.contact-item a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.contact-item a:hover {
  color: var(--yellow);
}

.contact-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-socials a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.contact-socials a:hover {
  background: var(--yellow);
  color: var(--dark);
}

.contact-socials svg {
  width: 18px;
  height: 18px;
}

.contact-form-box {
  background: var(--yellow-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--yellow-dark);
  box-shadow: 0 0 0 3px rgba(255, 200, 0, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 1rem;
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  width: 64px;
  height: 64px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.form-success .success-icon svg {
  width: 28px;
  height: 28px;
}

.form-success h3 {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--grey);
}

/* ===========================
   CTA FINAL
   =========================== */
.cta-final {
  padding: 8rem 0;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 200, 0, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.cta-final p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.cta-final .hero-cta {
  justify-content: center;
  margin-bottom: 0;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--dark-2);
}

.footer-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand img {
  height: 34px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--yellow);
  color: var(--dark);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
}

.footer-links h4,
.footer-contact h4,
.footer-app h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--yellow);
}

.footer-app {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-app img {
  height: 38px;
  width: auto;
  border-radius: 8px;
}

.footer-bottom {
  max-width: 1220px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.6);
}

/* ===========================
   ANIMATIONS REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) var(--delay, 0s),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-right.visible {
  transform: translateX(0);
}

/* Sous 1024px les grilles passent en une colonne : l'élément occupe toute la
   largeur, et le décalage horizontal d'avant-apparition déborde du conteneur
   (scroll horizontal parasite). On glisse verticalement comme les autres. */
@media (max-width: 1024px) {
  .reveal-right {
    transform: translateY(40px);
  }
}

/* ===========================
   RESPONSIVE — TABLET
   =========================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 7.5rem;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 0;
    max-width: 460px;
    margin: 0 auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .phone-wrapper {
    width: 420px;
  }

  .card-top { left: -10%; }
  .card-bottom { right: -5%; }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .impact-text .section-title,
  .impact-text .section-desc {
    text-align: center;
  }

  .impact-list {
    align-items: flex-start;
    max-width: 480px;
    margin: 0 auto;
  }

  .steps-grid,
  .perks-grid,
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .join-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .temoignages-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .chiffres-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ===========================
   RESPONSIVE — MOBILE
   =========================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.4rem;
    font-weight: 700;
  }

  .nav-cta {
    font-size: 1.1rem !important;
    padding: 1rem 2.2rem !important;
  }

  .burger {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.open span:nth-child(2) {
    opacity: 0;
  }

  .burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-container {
    padding: 6.5rem 1.5rem 3.5rem;
    gap: 2rem;
  }

  .phone-wrapper {
    width: 100%;
    max-width: 400px;
  }

  .floating-card {
    display: none;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }

  .stat-divider {
    display: none;
  }

  .section-container {
    padding: 0 1.25rem;
  }

  .impact,
  .comment,
  .zones,
  .commercants,
  .temoignages,
  .faq,
  .cta-final,
  .blog-section,
  .social-section,
  .chiffres {
    padding: 5rem 0;
  }

  .steps-grid,
  .perks-grid,
  .temoignages-grid,
  .blog-grid,
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

  .zones-grid {
    gap: 1rem;
  }

  .zone-card {
    min-width: 130px;
    padding: 1.5rem 1.25rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1.5rem;
  }

  .footer-legal {
    justify-content: center;
  }

  .presse-container {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .presse-logos {
    justify-content: center;
    gap: 1.5rem;
  }

  .hero-cta,
  .cta-final .hero-cta {
    justify-content: center;
  }

  .commercant-cta {
    padding: 2rem 1.5rem;
  }

  .page-hero {
    padding: 8rem 0 4rem;
  }

  .article-header {
    padding: 8rem 0 3rem;
  }

  .contact-info,
  .contact-form-box {
    padding: 2.25rem 1.5rem;
  }

  .audio-player-box {
    padding: 1.5rem;
  }

  .social-grid {
    gap: 1rem;
  }

  .social-card {
    padding: 1.5rem;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .store-btn {
    width: 142px;
    height: 44px;
  }

  .zone-card {
    min-width: 120px;
  }

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

/* ============================================================
   Page "Application non disponible" — etapes numerotees
   ============================================================ */
.howto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: start;
}

.howto-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.howto-card h3 {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.howto-sub {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.steps-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin: 0;
}

.steps-list li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 3rem;
  padding-bottom: 1.35rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--grey);
}

.steps-list li:last-child { padding-bottom: 0; }

.steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
}

.steps-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 36px;
  bottom: 6px;
  width: 2px;
  background: var(--border);
}

.steps-list strong { color: var(--dark); font-weight: 700; }

.notice-box {
  background: var(--yellow-pale);
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius-sm);
  padding: 1.6rem 1.8rem;
  margin-top: 2.5rem;
}

.notice-box h4 {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}

.notice-box p {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 0.6rem;
}

.notice-box p:last-child { margin-bottom: 0; }

@media (max-width: 860px) {
  .howto-grid { grid-template-columns: 1fr; }
}
/* ===== Formulaire : bloc d erreur d envoi ===== */
.form-error {
  display: none;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: #FDECE8;
  border: 1px solid var(--danger);
  border-left: 4px solid var(--danger);
  border-radius: var(--radius-sm);
}

.form-error.show { display: block; }

.form-error p {
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.55;
  margin: 0;
}

.form-error a {
  color: var(--danger);
  text-decoration: underline;
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}