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

:root {
  /* Dark palette */
  --black: #0A0A0A;
  --bg: #0A0A0A;
  --bg-elevated: #141414;
  --bg-card: #1A1A1A;
  --bg-card-hover: #222222;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --white: #FAFAFA;
  --gray-50: #F7F7F7;
  --gray-100: #EFEFEF;
  --gray-200: #E0E0E0;
  --gray-300: #C7C7C7;
  --gray-400: #9A9A9A;
  --gray-500: #6F6F6F;
  --gray-700: #404040;
  --gray-900: #1A1A1A;

  /* Google-style accent palette */
  --red: #EA4335;
  --red-dark: #C5221F;
  --blue: #4285F4;
  --blue-dark: #1A73E8;
  --yellow: #FBBC04;
  --yellow-dark: #F29900;
  --green: #34A853;
  --green-dark: #1E8E3E;

  /* Legacy brick keeps the brand red familiar in CTA buttons */
  --brick: var(--red);
  --brick-dark: var(--red-dark);
  --brick-light: var(--red);

  /* Default section accent (overridden per section) */
  --accent-bg: var(--red);
  --accent-text: var(--white);

  /* Type */
  --font-display: 'Switzer', system-ui, -apple-system, sans-serif;
  --font-body: 'Switzer', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --container-max: 1240px;
  --section-py: clamp(4.5rem, 8vw, 7rem);
  --space-head-mb: 2.25rem;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Mobile: tighter padding + smaller heading→content gap */
@media (max-width: 640px) {
  :root {
    --section-py: 3.25rem;
    --space-head-mb: 1.5rem;
  }
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--white);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ========== UTILS ========== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container { padding: 0 2.5rem; }
}

.section { padding: var(--section-py) 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brick);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--brick);
}

/* Display headings — uniform sizing across H1 / H2 for visual rhythm */
.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
}

h1.h-display,
h2.h-display { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 700; }
h3.h-display { font-size: clamp(1.4rem, 2.6vw, 2.2rem); font-weight: 700; letter-spacing: -0.02em; }

/* Highlighted accent — uses per-section --accent-bg / --accent-text */
.h-display .accent {
  display: inline;
  font-style: normal;
  font-weight: 700;
  background: var(--accent-bg);
  color: var(--accent-text);
  padding: 0.02em 0.32em;
  border-radius: 4px;
  line-height: 1.15;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Accent modifiers — forcent une couleur de surlignage précise
   quelle que soit la section */
.h-display .accent.accent--blue {
  background: var(--blue);
  color: var(--white);
  padding: 0.02em 0.32em;
}
.h-display .accent.accent--yellow {
  background: var(--yellow);
  color: var(--black);
  padding: 0.02em 0.32em;
}

/* ========== SECTION COLOR ASSIGNMENT ==========
 * Color choreography: warm → cool → warm → cool to avoid
 * adjacent clashing tones and create a calm visual rhythm
 */
.hero            { --accent-bg: var(--red);    --accent-text: var(--white); }
.lineup          { --accent-bg: var(--blue);   --accent-text: var(--white); }
.gallery-section { --accent-bg: var(--green);  --accent-text: var(--white); }
.target          { --accent-bg: var(--yellow); --accent-text: var(--black); }
.pricing         { --accent-bg: var(--red);    --accent-text: var(--white); }
.included        { --accent-bg: var(--blue);   --accent-text: var(--white); }
.method          { --accent-bg: var(--blue);   --accent-text: var(--white); }
.faq             { --accent-bg: var(--green);  --accent-text: var(--white); }
.contact         { --accent-bg: var(--red);    --accent-text: var(--white); }

/* Meta band stays neutral — visual breather between colored zones */
.meta-band       { --accent-bg: var(--white);  --accent-text: var(--black); }
.meta-band .hero-meta-item .num { color: var(--white); }

/* ========== UNIFIED COLOR-BORDERED CARD SYSTEM ==========
 * All site cards share the same visual language:
 * - 18px border-radius desktop, 16px mobile
 * - 1.5px accent border + matching glow
 * - Consistent padding, typography, bullet style
 */

/* Lineup carousel: 5 cards rotating through Google colors */
.lineup-card:nth-child(5n+1) { --card-accent: var(--red); }
.lineup-card:nth-child(5n+2) { --card-accent: var(--blue); }
.lineup-card:nth-child(5n+3) { --card-accent: var(--yellow); }
.lineup-card:nth-child(5n+4) { --card-accent: var(--green); }
.lineup-card:nth-child(5n+5) { --card-accent: var(--red); }

/* Included grid: 6 cards rotating through Google colors */
.included-card:nth-child(4n+1) { --card-accent: var(--red); }
.included-card:nth-child(4n+2) { --card-accent: var(--blue); }
.included-card:nth-child(4n+3) { --card-accent: var(--yellow); }
.included-card:nth-child(4n+4) { --card-accent: var(--green); }

/* Target: 2 cards each distinct */
.target-card:nth-child(1) { --card-accent: var(--blue); }
.target-card:nth-child(2) { --card-accent: var(--yellow); }

/* Universal card surface */
.lineup-card,
.included-card,
.target-card {
  border: 1.5px solid var(--card-accent, var(--border-strong)) !important;
  border-radius: 18px !important;
  box-shadow: 0 0 0 1px var(--card-accent, transparent) inset, 0 8px 32px rgba(0, 0, 0, 0.3) !important;
  background: var(--bg-card) !important;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease) !important;
}
.lineup-card:hover,
.included-card:hover,
.target-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px var(--card-accent) inset, 0 18px 44px -16px rgba(0, 0, 0, 0.5) !important;
}

/* Card eyebrow follows the card's accent color */
.lineup-card .lineup-num,
.target-card .num {
  color: var(--card-accent) !important;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Icon containers in included cards take card accent */
.included-card .icon {
  color: var(--card-accent);
  border: 1px solid var(--card-accent);
  background: rgba(255, 255, 255, 0.02);
}

/* "Voir plus" button takes the card's accent color */
.lineup-card .lineup-more {
  color: var(--card-accent, var(--red));
}
.lineup-card.open .lineup-more,
.lineup-card .lineup-more:hover {
  color: var(--card-accent, var(--red));
  opacity: 0.85;
}

/* ===== CARD TYPOGRAPHY (unified across all card types) ===== */
.lineup-card h3,
.target-card h3,
.included-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--white) !important;
  margin-bottom: 0.85rem;
}
.lineup-card p,
.target-card p,
.included-card p {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--gray-300) !important;
  margin-bottom: 1.25rem;
}
.lineup-card ul,
.target-card ul,
.included-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.lineup-card li,
.target-card li,
.included-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--gray-200) !important;
}
.lineup-card li::before,
.target-card li::before,
.included-card li::before {
  content: '—';
  flex-shrink: 0;
  color: var(--gray-500) !important;
  font-weight: 400;
}

/* ===== MOBILE COMPACT (640px and below) ===== */
@media (max-width: 640px) {
  .lineup-card,
  .target-card,
  .included-card {
    border-radius: 16px !important;
    padding: 1.5rem 1.25rem !important;
  }
  /* Les cartes du carrousel ont une image en plein bord : pas de padding sur la carte,
     le texte garde sa propre marge interne via .lineup-content. Le découpage des coins
     est géré par overflow:hidden de la carte (pas d'arrondi manuel sur l'image, qui
     créait un second découpage et faisait dépasser la ligne d'accent dans les angles). */
  .lineup-card {
    padding: 0 !important;
  }
  .lineup-card h3,
  .target-card h3,
  .included-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
  }
  .lineup-card p,
  .target-card p,
  .included-card p {
    font-size: 0.84rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  /* .desc a une spécificité supérieure à `p` : on l'aligne explicitement en mobile */
  .lineup-card .desc {
    font-size: 0.84rem;
  }
  .lineup-card ul,
  .target-card ul,
  .included-card ul {
    gap: 0.5rem;
    padding-top: 0.9rem;
  }
  .lineup-card li,
  .target-card li,
  .included-card li {
    font-size: 0.82rem;
    line-height: 1.45;
    gap: 0.55rem;
  }
  .lineup-card .lineup-num,
  .target-card .num {
    font-size: 0.62rem;
    margin-bottom: 0.7rem;
    letter-spacing: 0.12em;
  }
}

/* ========== GENERIC HORIZONTAL CARD CAROUSEL ==========
 * Replaces grid layouts (target, pricing, included) to save vertical space.
 * Cards stay aligned thanks to scroll-snap; hint below tells user to swipe.
 */
.cards-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding: 1.5rem;
  padding: 0.75rem 1.5rem 1.5rem;
  margin: 0 -1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .cards-scroll {
    padding: 0.75rem 2.5rem 1.5rem;
    margin: 0 -2.5rem;
    scroll-padding: 2.5rem;
  }
}

.cards-scroll::-webkit-scrollbar { height: 4px; }
.cards-scroll::-webkit-scrollbar-track { background: transparent; }
.cards-scroll::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 2px;
}

.cards-scroll > * {
  flex: 0 0 85%;
  scroll-snap-align: start;
  min-width: 0;
}
@media (min-width: 640px) {
  .cards-scroll > * { flex: 0 0 calc(60% - 0.5rem); }
}
@media (min-width: 900px) {
  .cards-scroll > * { flex: 0 0 calc(40% - 0.6rem); }
}
@media (min-width: 1100px) {
  .cards-scroll > * { flex: 0 0 calc(33.333% - 0.667rem); }
}

/* For 6-card carousels (included), show 4 on very large screens */
.cards-scroll--six > * {
  flex: 0 0 85%;
}
@media (min-width: 640px) { .cards-scroll--six > * { flex: 0 0 calc(50% - 0.5rem); } }
@media (min-width: 900px) { .cards-scroll--six > * { flex: 0 0 calc(33.333% - 0.667rem); } }
@media (min-width: 1300px) { .cards-scroll--six > * { flex: 0 0 calc(25% - 0.75rem); } }

/* Mobile: ces trois sections restent en carrousel horizontal (gain de place vertical).
   Les règles de base de .cards-scroll fournissent déjà le scroll, le snap et l'indice de glissement.
   On affine juste la largeur des cartes pour un aperçu confortable de la suivante. */
@media (max-width: 639px) {
  .cards-scroll > *,
  .cards-scroll--six > * {
    flex: 0 0 86%;
  }
}

/* Universal scroll hint shown under carousels */
.scroll-hint {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--gray-500);
  letter-spacing: 0.02em;
}

/* ========== MARQUEE BAND (stadium-style scrolling banner) ========== */
.marquee-wrapper {
  position: relative;
  isolation: isolate;
}

.marquee {
  width: 100%;
  overflow: hidden;
  background: var(--bg);
  padding: 0.7rem 0;
  position: relative;
  z-index: 2;
}
/* Subtle glow above & below in band color (via CSS var set per variant) */
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 28px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(to bottom, var(--band-color, transparent) 0%, transparent 100%);
  opacity: 0.18;
}
.marquee::before {
  top: -28px;
}
.marquee::after {
  bottom: -28px;
  background: linear-gradient(to top, var(--band-color, transparent) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
  position: relative;
  z-index: 1;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.82rem, 1.05vw, 1rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-dot {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  position: relative;
  opacity: 0.6;
}
/* Star-shaped separators via clip-path */
.marquee-dot::before {
  content: '✦';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
}

/* Colored marquee variants */
.marquee--red    { background: var(--red);    --band-color: var(--red); }
.marquee--blue   { background: var(--blue);   --band-color: var(--blue); }
.marquee--green  { background: var(--green);  --band-color: var(--green); }
.marquee--yellow { background: var(--yellow); --band-color: var(--yellow); }

/* Text adapts for contrast */
.marquee--red    .marquee-item,
.marquee--blue   .marquee-item,
.marquee--green  .marquee-item { color: var(--white); }
.marquee--yellow .marquee-item { color: var(--black); }

.marquee--red    .marquee-dot::before,
.marquee--blue   .marquee-dot::before,
.marquee--green  .marquee-dot::before { color: rgba(255, 255, 255, 0.85); }
.marquee--yellow .marquee-dot::before { color: rgba(0, 0, 0, 0.75); }

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

/* ========== FLOATING ICONS AROUND BAND ==========
 * Decorative emojis floating above/below the band with gentle bobbing.
 */
.float-icon {
  position: absolute;
  font-size: 1.4rem;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  filter: grayscale(0.2);
  animation: float-bob 5s ease-in-out infinite;
}
.float-icon--tl { top: -32px; left: 8%; animation-delay: 0s; }
.float-icon--tr { top: -28px; right: 12%; animation-delay: 1.2s; }
.float-icon--bl { bottom: -30px; left: 18%; animation-delay: 2.4s; }
.float-icon--br { bottom: -34px; right: 6%; animation-delay: 0.6s; }
.float-icon--tc { top: -36px; left: 50%; animation-delay: 1.8s; }
.float-icon--bc { bottom: -38px; left: 45%; animation-delay: 3s; }

@keyframes float-bob {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-8px) rotate(5deg); }
}

/* Hide floating decorations on small screens to keep things clean */
@media (max-width: 640px) {
  .float-icon { display: none; }
  .marquee { padding: 0.55rem 0; }
  .marquee-item { font-size: 0.78rem; }
}

/* Reduce motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .float-icon { animation: none; }
}

/* ========== DARK MODE: force all section backgrounds dark ========== */
.hero,
.lineup,
.meta-band,
.gallery-section,
.target,
.pricing,
.included,
.process,
.why,
.faq,
.contact,
.section {
  background: var(--bg) !important;
}

/* Card surfaces */
.lineup-card,
.target-card,
.pricing-card,
.included-card,
.case-card,
.why-card,
.faq-item,
.contact-card,
.process-step {
  background: var(--bg-card) !important;
  border-color: var(--border) !important;
  color: var(--white);
}
.lineup-card h3,
.target-card h3,
.target-card h4,
.pricing-card h3,
.pricing-card h4,
.included-card h3,
.included-card h4,
.case-card h4,
.why-card h3,
.why-card h4,
.faq-item h3,
.faq-item button,
.contact-card h3,
.process-step h3 {
  color: var(--white) !important;
}
.lineup-card p,
.target-card p,
.pricing-card p,
.included-card p,
.case-card p,
.why-card p,
.faq-item p,
.contact-card p,
.process-step p {
  color: var(--gray-300) !important;
}
.lineup-card li,
.pricing-card li,
.included-card li {
  color: var(--gray-200) !important;
}
.lineup-card li::before,
.pricing-card li::before,
.included-card li::before {
  color: var(--gray-500) !important;
}
.lineup-card .lineup-num,
.target-card .type,
.pricing-card .price-period,
.included-card .num,
.case-card .type,
.process-step .step-num {
  color: var(--gray-400) !important;
}

/* Section heads text on dark */
.sect-head h2,
.h-display {
  color: var(--white);
}
.sect-head p,
.section p {
  color: var(--gray-400);
}

/* Eyebrows: uniform white across all sections */
.eyebrow {
  color: var(--white);
}
.eyebrow::before {
  background: var(--white);
}

/* Meta band on dark */
.meta-band {
  border-top: 1px solid var(--border);
}
.hero-meta-item .num {
  color: var(--accent-bg, var(--red));
}
.hero-meta-item .label {
  color: var(--gray-400);
}

/* Image placeholders subtle on dark */
.lineup-image {
  background: linear-gradient(135deg, #1F1F1F 0%, #161616 100%);
}
.lineup-image-placeholder {
  color: rgba(255, 255, 255, 0.12);
}

/* Gallery photo bg */
.gallery-photo {
  background: var(--bg-card);
}

/* Nav background when scrolled (currently switches to light, we keep dark) */
nav.scrolled {
  background: rgba(10, 10, 10, 0.85) !important;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
nav.scrolled .nav-links a {
  color: var(--white) !important;
}
.logo-dark { display: none !important; }
.logo-light { display: block !important; }

/* Footer stays dark by default already */

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.75rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  font-family: var(--font-body);
  min-height: 48px;
}

/* Equal-width hero CTAs */
.hero-ctas .btn {
  min-width: 200px;
  flex: 0 0 auto;
}
@media (max-width: 640px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .hero-ctas .btn {
    min-width: 0;
    width: 100%;
  }
}

.btn-primary {
  background: var(--brick);
  color: var(--white);
  border: 1.5px solid var(--brick);
}
.btn-primary:hover {
  background: var(--brick-dark);
  border-color: var(--brick-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border-strong);
}
.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--white);
}
.btn-light:hover {
  background: transparent;
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  border: 1.5px solid var(--green);
}
.btn-whatsapp:hover {
  background: #2D8E47;
  border-color: #2D8E47;
  transform: translateY(-1px);
}
.btn-whatsapp svg {
  flex-shrink: 0;
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow { transform: translateX(3px); }

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--gray-200);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img { height: 48px; width: auto; }
.nav-logo .logo-dark { filter: brightness(0); }
@media (max-width: 768px){ .nav-logo img { height: 40px; } }

.nav:not(.scrolled) .nav-links a { color: var(--white); }
.nav:not(.scrolled) .nav-burger span { background: var(--white); }
.nav:not(.scrolled) .nav-logo .logo-dark { display: none; }
.nav:not(.scrolled) .nav-logo .logo-light { display: block; }
.nav.scrolled .nav-logo .logo-dark { display: block; }
.nav.scrolled .nav-logo .logo-light { display: none; }

.nav-links {
  display: none;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.2s, opacity 0.2s;
  position: relative;
  opacity: 0.85;
}
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: none; }

.nav-burger {
  display: flex; flex-direction: column; gap: 5px; padding: 0.5rem; cursor: pointer; z-index: 110;
}
.nav-burger span { display: block; width: 24px; height: 2px; border-radius: 2px; background: #383838; transition: all 0.3s var(--ease); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--white); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--white); }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
}

/* ===== Menu mobile (premium) ===== */
.mobile-menu {
  position: fixed; inset: 0; z-index: 105;
  background: radial-gradient(120% 55% at 100% 0%, rgba(232,50,26,0.10), transparent 60%), var(--bg);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.22,1,.36,1);
  display: flex; flex-direction: column; padding: 0; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu > * { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s var(--ease); }
.mobile-menu.open > * { opacity: 1; transform: none; }
.mobile-menu.open > *:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu.open > *:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu.open > *:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu.open > *:nth-child(4) { transition-delay: 0.24s; }
.mobile-menu.open > *:nth-child(5) { transition-delay: 0.30s; }

.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.5rem; position: sticky; top: 0; z-index: 2;
  background: rgba(10,10,10,0.72); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.mobile-menu-header .logo img { height: 30px; width: auto; }
.mobile-menu-close {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--border-strong); background: rgba(255,255,255,0.03);
  display: flex; align-items: center; justify-content: center; cursor: pointer; position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.mobile-menu-close:active { border-color: var(--red); background: rgba(232,50,26,0.10); }
.mobile-menu-close::before, .mobile-menu-close::after {
  content: ''; position: absolute; width: 15px; height: 2px; background: var(--white); border-radius: 2px;
}
.mobile-menu-close::before { transform: rotate(45deg); }
.mobile-menu-close::after { transform: rotate(-45deg); }

.mobile-menu-section { padding: 1.6rem 1.5rem 0; }
.mobile-menu-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray-500); margin-bottom: 0.7rem; display: flex; align-items: center; gap: 0.6rem;
}
.mobile-menu-label::before { content: ''; width: 1.4rem; height: 2px; background: var(--red); border-radius: 2px; display: inline-block; }

.mobile-menu-nav { display: flex; flex-direction: column; counter-reset: mm; }
.mobile-menu-nav a {
  font-family: var(--font-display); font-weight: 700; font-size: 1.65rem; letter-spacing: -0.02em;
  color: var(--white); padding: 0.95rem 0; display: flex; align-items: center; gap: 1rem;
  border-bottom: 1px solid var(--border); transition: color 0.2s, padding-left 0.25s var(--ease);
}
.mobile-menu-nav a::before {
  counter-increment: mm; content: "0" counter(mm);
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--gray-500); width: 1.6rem; flex-shrink: 0;
}
.mobile-menu-nav a::after { content: '→'; margin-left: auto; font-size: 1.1rem; font-weight: 500; color: var(--gray-500); transition: color 0.2s, transform 0.2s var(--ease); }
.mobile-menu-nav a:last-child { border-bottom: none; }
.mobile-menu-nav a:active { color: var(--red); padding-left: 0.35rem; }
.mobile-menu-nav a:active::after { color: var(--red); transform: translateX(4px); }

.mobile-menu-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.mobile-menu-contact a {
  display: flex; align-items: center; gap: 0.85rem; padding: 0.95rem 1rem;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
  color: var(--white); font-size: 0.95rem; font-weight: 600; transition: border-color 0.2s, transform 0.2s var(--ease);
}
.mobile-menu-contact a:active { border-color: var(--red); transform: translateX(2px); }
.mobile-menu-contact .ico {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: rgba(255,255,255,0.05); color: var(--gray-300); flex-shrink: 0;
}
.mobile-menu-contact .ico svg { width: 18px; height: 18px; }
.mobile-menu-contact .label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-500); display: block; margin-bottom: 0.12rem; }
.mobile-menu-contact .value { display: block; color: var(--white); font-size: 1rem; }

.mobile-menu-cta { padding: 1.5rem; margin-top: auto; }
.mobile-menu-cta .btn { width: 100%; justify-content: center; padding-block: 1rem; font-size: 1rem; }
.mobile-menu-wa { width: 100%; justify-content: center; margin-top: 0.7rem; }

.mobile-menu-footer {
  padding: 1.1rem 1.5rem 2rem; font-size: 0.72rem; color: var(--gray-500);
  line-height: 1.5; text-align: center; border-top: 1px solid var(--border);
}

/* ========== HERO ========== */
.hero {
  background: var(--bg);
  color: var(--white);
  padding: calc(var(--section-py) + 2rem) 0 var(--section-py);
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: block;
}

/* Mobile: reduce gap between Hero (with WhatsApp CTA) and the Lineup section */
@media (max-width: 640px) {
  .hero {
    padding-bottom: 2.25rem;
  }
  .lineup {
    padding-top: 2.5rem;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
  max-width: 1100px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brick-light);
}
.hero-tag::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--brick-light);
}

.hero h1 {
  color: var(--white);
  max-width: 1050px;
  letter-spacing: -0.025em;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  line-height: 1.55;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.4rem;
}

.meta-band {
  background: var(--gray-50);
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--gray-200);
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
@media (min-width: 700px) {
  .hero-meta { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
}
.hero-meta-item .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 2.7vw, 2.4rem);
  color: var(--brick);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-meta-item .label {
  font-size: 0.82rem;
  color: var(--gray-700);
  margin-top: 0.45rem;
  letter-spacing: 0.01em;
  line-height: 1.4;
  max-width: 240px;
}

/* ========== MANIFESTO ========== */
.manifesto {
  padding: var(--section-py) 0;
  background: var(--white);
}
.manifesto-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.6vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 1100px;
  color: var(--black);
}
.manifesto-text .accent {
  display: inline;
  font-style: normal;
  font-weight: 700;
  background: var(--brick);
  color: var(--white);
  padding: 0.02em 0.32em;
  border-radius: 4px;
  line-height: 1.15;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ========== LINEUP CAROUSEL ========== */
.lineup {
  background: var(--gray-50);
}

.lineup-carousel-wrap {
  position: relative;
}

.lineup-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 1.5rem;
  padding: 0.5rem 1.5rem 1.5rem;
  margin: 0 -1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-300) transparent;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .lineup-carousel {
    padding: 0.5rem 2.5rem 1.5rem;
    margin: 0 -2.5rem;
    scroll-padding: 2.5rem;
  }
}

.lineup-carousel::-webkit-scrollbar { height: 4px; }
.lineup-carousel::-webkit-scrollbar-track { background: transparent; }
.lineup-carousel::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 2px;
}

.lineup-card {
  flex: 0 0 85%;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.lineup-card:hover {
  border-color: var(--brick);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -20px rgba(168, 49, 31, 0.2);
}

@media (min-width: 640px) {
  .lineup-card { flex: 0 0 calc(50% - 0.5rem); }
}
@media (min-width: 1024px) {
  .lineup-card { flex: 0 0 calc(33.333% - 0.667rem); }
}
@media (min-width: 1400px) {
  .lineup-card { flex: 0 0 calc(25% - 0.75rem); }
}

.lineup-image {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1F1F1F 0%, #141414 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lineup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lineup-image-placeholder {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.8rem, 5.5vw, 4rem);
  color: rgba(255, 255, 255, 0.10);
  letter-spacing: -0.04em;
  user-select: none;
}

.lineup-content {
  padding: 1.75rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.lineup-num {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--card-accent, var(--white));
  margin-bottom: 0.85rem;
}

.lineup-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
  margin-bottom: 0.6rem;
  line-height: 1.15;
}

.lineup-card .desc {
  color: var(--gray-700);
  font-size: 0.94rem;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.lineup-card ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.lineup-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--gray-900);
}
.lineup-card li::before {
  content: '—';
  flex-shrink: 0;
  color: var(--gray-400);
}

.lineup-more {
  margin-top: auto;
  padding-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brick);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  background: none;
  border: none;
  cursor: pointer;
  transition: gap 0.3s var(--ease), color 0.2s;
}
.lineup-more .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.lineup-more:hover {
  gap: 0.65rem;
  color: var(--brick-dark);
}

/* Mobile: bullets collapsed by default, expand on .open */
@media (max-width: 767px) {
  .lineup-card ul {
    max-height: 0;
    overflow: hidden;
    margin: 0;
    opacity: 0;
    transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), margin 0.3s var(--ease);
  }
  .lineup-card.open ul {
    max-height: 500px;
    opacity: 1;
    margin-top: 0.25rem;
  }
  .lineup-card.open .lineup-more .arrow {
    transform: rotate(90deg);
  }
}

/* Desktop: button hidden, bullets always visible */
@media (min-width: 768px) {
  .lineup-more { display: none; }
}

/* ========== MOBILE: center text + smaller fonts ========== */
@media (max-width: 640px) {
  /* Center all main section content */
  .hero-inner,
  .sect-head,
  .meta-band .container,
  .manifesto-text {
    text-align: center;
  }

  /* Hide decorative dashes on mobile (they create alignment issues on narrow screens) */
  .hero-tag::before,
  .eyebrow::before {
    display: none;
  }

  /* Eyebrows & hero-tag: block-level, centered */
  .hero-tag,
  .eyebrow {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* CTAs centered */
  .hero-ctas {
    justify-content: center;
  }

  /* Meta items: number + label both centered */
  .hero-meta-item {
    align-items: center;
  }
  .hero-meta-item .label {
    max-width: 100%;
    text-align: center;
  }

  /* Smaller display sizes on mobile */
  h1.h-display {
    font-size: 2.1rem;
    line-height: 1.12;
    letter-spacing: -0.02em;
  }
  h2.h-display {
    font-size: 1.7rem;
    line-height: 1.18;
  }

  /* Hero sub a bit smaller */
  .hero-sub {
    font-size: 1rem;
    line-height: 1.5;
  }

  /* Manifesto more compact */
  .manifesto-text {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  /* Remove forced line break in H1 on mobile (let natural wrap take over) */
  .hero h1 br {
    display: none;
  }

  /* Mobile-specific hero refinements */
  .hero-inner {
    gap: 1.5rem;
  }
  .lineup .sect-head h2 {
    margin-top: 0.4rem;
  }
}

.lineup-hint {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--gray-500);
  letter-spacing: 0.02em;
}

/* ========== GALLERY (showcase carousel) ========== */
.gallery-section {
  background: var(--white);
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.gallery-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 1.5rem;
  padding: 0.5rem 1.5rem 1.5rem;
  margin: 0 -1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-300) transparent;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .gallery-carousel {
    padding: 0.5rem 2.5rem 1.5rem;
    margin: 0 -2.5rem;
    scroll-padding: 2.5rem;
  }
}

.gallery-carousel::-webkit-scrollbar { height: 4px; }
.gallery-carousel::-webkit-scrollbar-track { background: transparent; }
.gallery-carousel::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 2px;
}

.gallery-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  margin: 0;
  cursor: default;
}

/* Galerie : images entières (non rognées), hauteur uniforme,
   largeur variable selon le format → effet pellicule */
.gallery-photo {
  height: 300px;
  width: fit-content;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  margin-bottom: 0.85rem;
}
@media (min-width: 768px) {
  .gallery-photo { height: 400px; }
}
.gallery-photo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover .gallery-photo img {
  transform: scale(1.04);
}

.gallery-caption {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding: 0 0.25rem;
}

.gallery-hint {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--gray-500);
  letter-spacing: 0.02em;
}

/* ========== SECTION HEADER ========== */
.sect-head {
  display: grid;
  gap: 0.5rem;
  margin-bottom: var(--space-head-mb);
  max-width: 880px;
}
.sect-head .eyebrow { margin-bottom: 0.4rem; }
.sect-head h2 { margin-top: 0; }
.sect-head p {
  color: var(--gray-400);
  font-size: 1.05rem;
  max-width: 680px;
  line-height: 1.55;
  margin-top: 0.5rem;
}

/* ========== TARGET (Cible) ========== */
.target {
  background: var(--gray-50);
}
.target-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .target-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}

.target-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid var(--gray-200);
}
.target-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -20px rgba(0,0,0,0.15); }

.target-card .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--card-accent, var(--white));
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.target-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.target-card p {
  color: var(--gray-700);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.target-card ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
.target-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.92rem;
  color: var(--gray-200);
  line-height: 1.5;
}
.target-card li::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 14px;
  height: 1px;
  margin-top: 0.7rem;
  background: var(--card-accent, var(--gray-300));
}

/* ========== PRICING ========== */
.pricing {
  background: var(--white);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s var(--ease);
  color: var(--white);
}
.price-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-bg, var(--red));
  box-shadow: 0 16px 40px -20px rgba(234, 67, 53, 0.35);
}

.price-card.featured {
  background: var(--bg-card);
  color: var(--white);
  border: 1.5px solid var(--accent-bg, var(--red));
  position: relative;
  box-shadow: 0 0 0 1px var(--accent-bg, var(--red)) inset, 0 8px 32px rgba(0,0,0,0.4);
}
/* Color-themed pricing cards (same thickness as featured) */
.price-card--blue {
  border: 1.5px solid var(--blue);
  box-shadow: 0 0 0 1px var(--blue) inset, 0 8px 32px rgba(0,0,0,0.3);
}
.price-card--blue:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue) inset, 0 16px 40px -20px rgba(66, 133, 244, 0.45);
}
.price-card--yellow {
  border: 1.5px solid var(--yellow);
  box-shadow: 0 0 0 1px var(--yellow) inset, 0 8px 32px rgba(0,0,0,0.3);
}
.price-card--yellow:hover {
  border-color: var(--yellow);
  box-shadow: 0 0 0 1px var(--yellow) inset, 0 16px 40px -20px rgba(251, 188, 4, 0.4);
}
.price-card--green {
  border: 1.5px solid var(--green);
  box-shadow: 0 0 0 1px var(--green) inset, 0 8px 32px rgba(0,0,0,0.3);
}
.price-card--green:hover {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green) inset, 0 16px 40px -20px rgba(52, 168, 83, 0.4);
}
.price-card.featured::before {
  content: 'Plan principal';
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--accent-bg, var(--red));
  color: var(--white);
  padding: 0.35rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}

/* Setup card → "Option" badge in blue */
.price-card--blue::before {
  content: 'Setup en option';
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--blue);
  color: var(--white);
  padding: 0.35rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}

/* Ads card → "Option" badge in yellow (with black text for contrast) */
.price-card--yellow::before {
  content: 'Option';
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--yellow);
  color: var(--black);
  padding: 0.35rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}

/* UGC card → "Option" badge in green */
.price-card--green::before {
  content: 'Option';
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--green);
  color: var(--white);
  padding: 0.35rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  align-self: flex-start;
}
/* Each card's tag picks up its accent color */
.price-card--blue .tag {
  color: var(--blue);
  border-color: rgba(66, 133, 244, 0.4);
  background: rgba(66, 133, 244, 0.06);
}
.price-card.featured .tag {
  color: var(--red);
  border-color: rgba(234, 67, 53, 0.4);
  background: rgba(234, 67, 53, 0.06);
}
.price-card--yellow .tag {
  color: var(--yellow);
  border-color: rgba(251, 188, 4, 0.4);
  background: rgba(251, 188, 4, 0.06);
}
.price-card--green .tag {
  color: var(--green);
  border-color: rgba(52, 168, 83, 0.4);
  background: rgba(52, 168, 83, 0.06);
}

/* Section label inside card (replaces .tag for new copy style) */
.price-card .included-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 1.4rem;
  margin-bottom: 0.6rem;
}

/* Strategic objective statement at end of card */
.price-card .objective {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--gray-300);
}
.price-card .objective strong {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.price-card.featured .objective strong { color: var(--red); }
.price-card--blue .objective strong { color: var(--blue); }
.price-card--yellow .objective strong { color: var(--yellow); }
.price-card--green .objective strong { color: var(--green); }

/* Trademark symbol styling */
.price-card h3 sup.tm {
  font-size: 0.45em;
  font-weight: 600;
  vertical-align: super;
  margin-left: 1px;
  color: var(--gray-400);
}

.price-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  color: var(--white);
}

.price-card .desc {
  font-size: 0.94rem;
  color: var(--gray-300);
  margin-bottom: 2rem;
  line-height: 1.5;
}
.price-card.featured .desc { color: rgba(255,255,255,0.65); }

.price-card .amount {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
}
.price-card .amount .big {
  font-size: 3.4rem;
  line-height: 0.95;
}
.price-card .amount .cur {
  font-size: 1.6rem;
}
.price-card .amount .per {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--gray-400);
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 0.2rem;
}
.price-card.featured .amount .per { color: rgba(255,255,255,0.5); }

.price-card .ht {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}
.price-card.featured .ht { color: rgba(255,255,255,0.4); }

.price-card ul {
  list-style: none;
  display: grid;
  gap: 0.72rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--gray-200);
}
.price-card li::before {
  content: '—';
  flex-shrink: 0;
  color: var(--gray-400);
  font-weight: 400;
  line-height: 1.45;
}
.price-card.featured li::before { color: rgba(255,255,255,0.45); }

.price-card .btn { width: 100%; justify-content: center; }

/* ========== PRICING: Mobile-first compact design ==========
 * DOM order is now: Abonnement → Setup → Ads → UGC
 * Mobile keeps DOM order naturally (no flex order overrides needed).
 */

/* Compact pricing cards on mobile — espacement vertical réduit pour limiter
   le scroll vertical à l'intérieur de chaque carte du carrousel */
@media (max-width: 640px) {
  .price-card {
    padding: 1.4rem 1.25rem 1.3rem;
    border-radius: 16px;
  }
  .price-card .tag {
    font-size: 0.62rem;
    margin-bottom: 0.7rem;
    padding: 0.28rem 0.6rem;
  }
  .price-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    line-height: 1.15;
  }
  .price-card .desc {
    font-size: 0.84rem;
    margin-bottom: 0.85rem;
    line-height: 1.4;
  }
  .price-card .amount {
    margin-bottom: 0.15rem;
    gap: 0.18rem;
  }
  .price-card .amount .big {
    font-size: 2.2rem;
    line-height: 1;
  }
  .price-card .amount .cur {
    font-size: 1.05rem;
  }
  .price-card .amount .per {
    font-size: 0.76rem;
  }
  .price-card .ht {
    font-size: 0.73rem;
    margin-bottom: 0.85rem;
    line-height: 1.35;
  }
  .price-card .included-label {
    font-size: 0.6rem;
    margin-top: 0.9rem;
    margin-bottom: 0.45rem;
  }
  .price-card ul {
    gap: 0.42rem;
    margin-bottom: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--border);
  }
  .price-card li {
    font-size: 0.82rem;
    gap: 0.5rem;
    line-height: 1.35;
  }
  .price-card .objective {
    margin-top: 0.85rem;
    padding-top: 0.8rem;
    font-size: 0.82rem;
    line-height: 1.45;
  }
  .price-card .btn {
    padding: 0.8rem 1.1rem;
    font-size: 0.88rem;
  }
  /* Badge "PLAN PRINCIPAL" / "Option" plus compact sur mobile */
  .price-card.featured::before,
  .price-card--blue::before,
  .price-card--yellow::before,
  .price-card--green::before {
    font-size: 0.6rem;
    padding: 0.28rem 0.65rem;
    top: -10px;
    left: 1.25rem;
  }
}

.price-note {
  margin-top: 1.75rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--gray-500);
}
.price-note strong { color: var(--white); font-weight: 700; }
.price-note-q {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.65rem;
  letter-spacing: -0.005em;
}
.price-note-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}
.price-note-list li {
  padding: 0.22rem 0 0.22rem 1.15rem;
  position: relative;
  line-height: 1.5;
}
.price-note-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gray-400);
  font-weight: 500;
}

/* ========== INCLUDED ========== */
.included {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.included .sect-head p { color: rgba(255,255,255,0.65); }
.included .sect-head h2 { color: var(--white); }

.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .included-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .included-grid { grid-template-columns: repeat(3, 1fr); }
}

.included-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 2rem 1.85rem;
  transition: all 0.3s var(--ease);
}
.included-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

.included-card .icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid var(--card-accent, var(--border-strong));
  border-radius: 10px;
  color: var(--card-accent, var(--white));
}
.included-card .icon svg { width: 20px; height: 20px; }

.included-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.included-card ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.included-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.45;
}
.included-card li::before {
  content: '—';
  flex-shrink: 0;
  color: rgba(255,255,255,0.35);
}

/* ========== MÉTHODE (timeline verticale) ========== */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 760px;
}
.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.2rem;
  padding-bottom: 1.9rem;
}
.timeline-step:last-child { padding-bottom: 0; }

/* Ligne verticale reliant les étapes (une par étape sauf la dernière) */
.timeline-step::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: var(--border-strong);
}
.timeline-step:last-child::before { display: none; }

.timeline-marker {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1.5px solid var(--card-accent, var(--border-strong));
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.timeline-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
  color: var(--card-accent, var(--white));
}

/* Accent cyclique Google */
.timeline-step:nth-child(5n+1) { --card-accent: var(--red); }
.timeline-step:nth-child(5n+2) { --card-accent: var(--blue); }
.timeline-step:nth-child(5n+3) { --card-accent: var(--yellow); }
.timeline-step:nth-child(5n+4) { --card-accent: var(--green); }
.timeline-step:nth-child(5n+5) { --card-accent: var(--red); }

/* Dernière étape : marqueur plein pour marquer le passage en continu */
.timeline-step--final .timeline-marker { background: var(--card-accent); }
.timeline-step--final .timeline-num { color: var(--white); }

.timeline-body { padding-top: 0.15rem; }

.timeline-when {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--card-accent, var(--gray-400));
  border: 1px solid var(--card-accent, var(--border));
  background: rgba(255, 255, 255, 0.02);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  margin-bottom: 0.7rem;
}
.timeline-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white) !important;
  margin-bottom: 0.5rem;
}
.timeline-body p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--gray-300) !important;
  max-width: 560px;
}
.timeline-body p strong { color: var(--white); font-weight: 700; }

@media (max-width: 640px) {
  .timeline-step {
    grid-template-columns: 38px 1fr;
    gap: 0.95rem;
    padding-bottom: 1.5rem;
  }
  .timeline-step::before { left: 18px; top: 42px; }
  .timeline-marker { width: 38px; height: 38px; }
  .timeline-num { font-size: 0.95rem; }
  .timeline-when { font-size: 0.62rem; margin-bottom: 0.55rem; padding: 0.24rem 0.6rem; }
  .timeline-body h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
  .timeline-body p { font-size: 0.88rem; line-height: 1.5; }
}

/* ========== PROCESS ========== */
.process {
  background: var(--white);
}
.process-list {
  display: grid;
  gap: 0;
}

.process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2.25rem 0;
  border-top: 1px solid var(--gray-200);
  align-items: start;
}
.process-item:last-child { border-bottom: 1px solid var(--gray-200); }

@media (max-width: 640px) {
  .process-item { gap: 1.25rem; }
}

.process-item .num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1;
  color: var(--gray-300);
  min-width: 80px;
  letter-spacing: -0.02em;
}

.process-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  letter-spacing: -0.025em;
  margin-bottom: 0.6rem;
  line-height: 1.15;
}

.process-item p {
  color: var(--gray-700);
  font-size: 0.98rem;
  max-width: 720px;
  line-height: 1.6;
}

.process-item .when {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding: 0.32rem 0.7rem;
  border: 1px solid var(--gray-300);
  border-radius: 999px;
}

/* ========== CASES ========== */
.cases {
  background: var(--gray-50);
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .cases-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .cases-grid { grid-template-columns: repeat(3, 1fr); }
}

.case-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.9rem 1.65rem;
  border: 1px solid var(--gray-200);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.case-card:hover {
  transform: translateY(-3px);
  border-color: var(--brick);
  box-shadow: 0 16px 40px -20px rgba(168, 49, 31, 0.2);
}

.case-card .type {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.case-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
  margin-bottom: 0.85rem;
  line-height: 1.15;
}

.case-card p {
  font-size: 0.88rem;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.55;
}

.case-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.case-card .tag-pill {
  font-size: 0.68rem;
  padding: 0.28rem 0.6rem;
  background: var(--gray-100);
  color: var(--gray-700);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.015em;
}

/* ========== WHY US ========== */
.why {
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--gray-200);
}
@media (min-width: 768px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

.why-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-200);
}
@media (min-width: 768px) {
  .why-item { padding: 2rem; }
  .why-item:not(:nth-child(2n)) { border-right: 1px solid var(--gray-200); }
  .why-item:nth-child(odd) { padding-left: 0; }
  .why-item:nth-child(even) { padding-right: 0; }
}
@media (min-width: 1024px) {
  .why-item { padding: 2rem 1.75rem; }
  .why-item:not(:nth-child(3n)) { border-right: 1px solid var(--gray-200); }
  .why-item:nth-child(3n+1) { padding-left: 0; }
  .why-item:nth-child(3n) { padding-right: 0; border-right: none; }
}

.why-item .num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--gray-400);
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
  display: block;
}

.why-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.why-item p {
  color: var(--gray-700);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ========== FAQ ========== */
.faq {
  background: var(--bg);
}

.faq-list {
  display: grid;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

/* ========== FAQ (card-based, green accent on open) ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1.5px solid var(--border-strong);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.faq-item:hover {
  border-color: var(--gray-500);
}
.faq-item.open {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green) inset, 0 8px 32px rgba(0, 0, 0, 0.3);
}

.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--white);
  cursor: pointer;
  background: transparent;
  border: none;
  transition: color 0.2s;
}
.faq-trigger:hover { opacity: 1; }

.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gray-500);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s var(--ease);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gray-300);
  transition: all 0.3s var(--ease);
  border-radius: 1px;
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }

.faq-item:hover .faq-icon { border-color: var(--white); }
.faq-item:hover .faq-icon::before,
.faq-item:hover .faq-icon::after { background: var(--white); }

.faq-item.open .faq-icon {
  background: var(--green);
  border-color: var(--green);
}
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--white); }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-content { max-height: 600px; }
.faq-content p {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 780px;
  margin: 0;
}

/* Mobile FAQ compact */
@media (max-width: 640px) {
  .faq-list { gap: 0.6rem; }
  .faq-trigger {
    padding: 1.05rem 1.15rem;
    font-size: 0.92rem;
    gap: 1rem;
  }
  .faq-icon { width: 26px; height: 26px; }
  .faq-icon::before { width: 9px; }
  .faq-icon::after  { height: 9px; }
  .faq-content p {
    padding: 0 1.15rem 1.15rem;
    font-size: 0.87rem;
    line-height: 1.6;
  }
}

/* ========== CONTACT ========== */
.contact {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  align-items: start;
}
@media (min-width: 900px) {
  .contact-inner { grid-template-columns: 1.2fr 1fr; gap: 4rem; }
}

.contact-left h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.contact-left > p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.55;
}

.contact-channels {
  display: grid;
  gap: 0.7rem;
}
/* Bouton WhatsApp principal en bas de la colonne contact */
.contact-wa {
  width: 100%;
  margin-top: 0.9rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.25rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: all 0.3s var(--ease);
  color: var(--white);
}
.contact-channel:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(3px);
}

.contact-channel .icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.contact-channel .body { flex-grow: 1; }
.contact-channel .label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  margin-bottom: 0.18rem;
}
.contact-channel .value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-display);
  letter-spacing: -0.015em;
}

.contact-channel .arrow {
  flex-shrink: 0;
  color: rgba(255,255,255,0.4);
  font-size: 1.3rem;
  transition: transform 0.3s var(--ease), color 0.3s;
}
.contact-channel:hover .arrow { transform: translateX(3px); color: var(--white); }

.contact-right {
  background: var(--bg-card);
  color: var(--white);
  padding: 2.25rem;
  border-radius: 20px;
  position: relative;
}

.contact-right .free-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 0.32rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 0.95rem;
}

.contact-right h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.contact-right ul {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.contact-right li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--gray-200);
}
.contact-right li::before {
  content: '—';
  flex-shrink: 0;
  color: var(--gray-500);
  font-weight: 400;
  margin-top: 0.05rem;
}

.contact-right .small {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* ========== CONTACT : liste bénéfices + formulaire ========== */
.contact-benefits {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin: 1.75rem 0 2rem;
}
.contact-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.94rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
}
.contact-benefits li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: var(--green);
  /* coche blanche */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.25rem;
}
.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
@media (max-width: 480px) {
  .contact-form .field-row { grid-template-columns: 1fr; }
}
.contact-form label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.contact-form label .opt {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gray-500);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--gray-500); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.06);
}
.contact-form textarea { resize: vertical; min-height: 78px; }
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239A9A9A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 16px;
  padding-right: 2.4rem;
  cursor: pointer;
}
.contact-form select option { color: #111; }
.contact-submit {
  width: 100%;
  margin-top: 0.35rem;
}

/* ========== BANDEAU COOKIES (RGPD / CNIL) ========== */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  padding: 1.5rem 1.6rem;
  transform: translateY(170%);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.cookie-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.cookie-ico {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(232, 50, 26, 0.12);
  color: var(--red);
  flex-shrink: 0;
}
.cookie-ico svg { width: 18px; height: 18px; }
.cookie-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}
.cookie-text {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--gray-300);
  margin: 0;
}
.cookie-text a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 0.15rem;
}
.cookie-btn {
  padding: 0.7rem 1.3rem;
  min-height: 44px;
  font-size: 0.84rem;
}
@media (max-width: 600px) {
  .cookie-banner { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; padding: 1.25rem 1.2rem; }
  .cookie-actions { flex-direction: column-reverse; gap: 0.5rem; }
  .cookie-btn { width: 100%; }
}

/* ----- Modale de préférences ----- */
.cookie-modal { position: fixed; inset: 0; z-index: 300; display: none; }
.cookie-modal.open { display: block; }
.cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.cookie-modal-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 2rem);
  max-width: 540px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  padding: 1.75rem 1.6rem;
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.cookie-modal-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}
.cookie-modal-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: transparent;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
.cookie-modal-close::before,
.cookie-modal-close::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 1.5px;
  background: var(--gray-300);
  border-radius: 1px;
}
.cookie-modal-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.cookie-modal-close::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.cookie-modal-close:hover { border-color: var(--white); }
.cookie-modal-intro {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--gray-300);
  margin: 0 0 1.4rem;
}
.cookie-cat {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.75rem;
}
.cookie-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
.cookie-cat-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--white);
}
.cookie-cat p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--gray-400);
  margin: 0;
}
.cookie-cat-locked {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  flex-shrink: 0;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-slider {
  position: absolute;
  inset: 0;
  background: var(--gray-700);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s var(--ease);
}
.cookie-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s var(--ease);
}
.cookie-switch input:checked + .cookie-slider { background: var(--green); }
.cookie-switch input:checked + .cookie-slider::before { transform: translateX(20px); }
.cookie-modal-footer {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.cookie-modal-footer .btn { flex: 1; justify-content: center; min-height: 46px; font-size: 0.86rem; }
@media (max-width: 480px) {
  .cookie-modal-footer { flex-direction: column-reverse; }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-logo img { height: 40px; width: auto; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.84rem;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
  margin-right: 1.25rem;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--white); }

/* ========== ANIMATIONS ON SCROLL ========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }


/* ===== Mobile : cartes des carrousels visibles d'emblée (sinon on ne devine pas le défilement horizontal) ===== */
@media (max-width: 768px){
  .target-card.reveal,
  .price-card.reveal,
  .included-card.reveal,
  .lineup-carousel-wrap.reveal,
  .gallery-carousel.reveal{
    opacity: 1 !important;
    transform: none;
  }
}

/* ===== Carrousels : zoom continu sur la carte centrée (fluide, identique partout) ===== */
@media (max-width: 768px){
  .bf-zoom > *{ transform-origin: center center; will-change: transform; }
}
@media (prefers-reduced-motion: reduce){
  .bf-zoom > *{ transform: none !important; }
}

/* ===== Mobile : carrousels centrés + marge verticale pour le zoom (anti-coupe) ===== */
@media (max-width: 768px){
  .lineup-carousel, .gallery-carousel, .cards-scroll{
    scroll-padding: 0 !important;
    padding-bottom: 42px !important;
  }
  .lineup-carousel, .gallery-carousel{ padding-top: 24px !important; }
  .cards-scroll{ padding-top: 46px !important; } /* badges « Offre / Option » dépassent au-dessus des cartes tarifs */
  .lineup-carousel > .lineup-card,
  .gallery-carousel > .gallery-item,
  .cards-scroll > *{
    scroll-snap-align: center !important;
  }
}

/* ===== Mobile : première carte centrée dès l'ouverture (largeurs vw + amorce latérale) ===== */
@media (max-width: 768px){
  .lineup-carousel > .lineup-card{ flex: 0 0 84vw !important; }
  .cards-scroll > *, .cards-scroll--six > *{ flex: 0 0 84vw !important; }
  .lineup-carousel, .cards-scroll{ padding-left: 8vw !important; padding-right: 8vw !important; }
}

/* ===== Carrousels : barres de défilement masquées (rendu épuré) ===== */
.lineup-carousel, .gallery-carousel, .cards-scroll{ scrollbar-width: none !important; -ms-overflow-style: none !important; }
.lineup-carousel::-webkit-scrollbar, .gallery-carousel::-webkit-scrollbar, .cards-scroll::-webkit-scrollbar{ display: none !important; width: 0 !important; height: 0 !important; }

/* ===== Barre de progression de défilement (droite, 4 couleurs Google) ===== */
.scroll-progress{ position: fixed; right: 0; top: 0; width: 4px; height: 100vh; height: 100dvh; z-index: 95; background: rgba(255,255,255,0.07); pointer-events: none; }
.scroll-progress__fill{ width: 100%; height: 0; background: linear-gradient(to bottom, var(--blue) 0%, var(--blue) 25%, var(--yellow) 25%, var(--yellow) 50%, var(--red) 50%, var(--red) 75%, var(--green) 75%, var(--green) 100%); background-repeat: no-repeat; background-position: top center; }

/* Masquer la barre de défilement native de la page (la barre colorée indique la position) */
html, body{ scrollbar-width: none !important; -ms-overflow-style: none !important; }
html::-webkit-scrollbar, body::-webkit-scrollbar{ width: 0 !important; height: 0 !important; display: none !important; }

/* ----- composants pages SEO ----- */
main{display:block}
.seo-hero{padding-top:clamp(7rem,12vh,9rem)}
.breadcrumb{font-size:.78rem;color:rgba(250,250,250,.5);margin-bottom:1.4rem;display:flex;gap:.45rem;flex-wrap:wrap;letter-spacing:.01em}
.breadcrumb a{color:rgba(250,250,250,.5)}.breadcrumb a:hover{color:#fff}
.seo-prose{max-width:760px}
.seo-prose p{color:rgba(250,250,250,.78);line-height:1.75;margin-bottom:1.1rem;font-size:1.02rem}
.seo-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;margin-top:2.2rem}
@media(max-width:760px){.seo-grid{grid-template-columns:1fr}}
.seo-card{background:var(--bg-card);border:1px solid var(--border);border-radius:16px;padding:1.4rem 1.5rem}
.seo-card .dot{width:9px;height:9px;border-radius:3px;display:inline-block;margin-right:.6rem;vertical-align:middle}
.seo-card h3{font-size:1.02rem;font-weight:700;margin-bottom:.45rem;letter-spacing:-.01em}
.seo-card p{color:rgba(250,250,250,.66);font-size:.92rem;line-height:1.55}
.link-cloud{display:flex;flex-wrap:wrap;gap:.55rem;margin-top:1.4rem}
.link-cloud a{font-size:.84rem;border:1px solid var(--border);border-radius:999px;padding:.42rem .95rem;color:rgba(250,250,250,.78);transition:.2s}
.link-cloud a:hover{border-color:var(--border-strong);color:#fff;background:rgba(255,255,255,.04)}
.seo-cta{margin-top:2.4rem;display:flex;gap:.7rem;flex-wrap:wrap}
.section-sm{padding-block:clamp(3rem,6vw,4.5rem)}
.faq-list{max-width:820px;margin-top:1.5rem}
