/* ============================================
   EASY PADEL — v3 "APEX"
   Ultra Premium · Sport Éditorial
   Bebas Neue × Plus Jakarta Sans
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Tokens ─────────────────────────────── */
:root {
  /* ── Spacing tokens ── */
  --spacing-page:            80px;
  --spacing-section:         80px;
  --spacing-title-bottom:    16px;
  --spacing-subtitle-bottom: 48px;

  --dark:     #07100A;
  --dark-2:   #0D1A0F;
  --dark-3:   #142018;
  --light:    #F5FAF6;
  --surface:  #FFFFFF;

  --green:    #16A34A;
  --green-2:  #22C55E;
  --green-dim: rgba(22,163,74,0.12);
  --green-glow: rgba(22,163,74,0.35);

  --gold:     #B45309;
  --gold-2:   #D97706;
  --gold-light: #FBBF24;
  --gold-dim: rgba(180,83,9,0.12);

  --text-dark:  #F2FAF4;
  --text-dark-2:#8DA890;
  --text-dark-3:#3D6042;
  --text-light: #0A1A0C;
  --text-muted: #52716A;
  --text-dim:   #A0B8A8;

  --nav-h:  84px;
  --r-sm:    8px;
  --r-md:   14px;
  --r-lg:   24px;
  --r-xl:   36px;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.16), 0 4px 16px rgba(0,0,0,0.08);
  --shadow-dark-sm: 0 2px 16px rgba(0,0,0,0.4);
  --shadow-dark-lg: 0 20px 80px rgba(0,0,0,0.6);
}

/* ── Reset ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--text-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── Layout ──────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 768px)  { .container { padding-inline: 48px; } }
@media (min-width: 1400px) { .container { padding-inline: 64px; } }
@media (max-width: 767px) {
  :root {
    --spacing-page:            48px;
    --spacing-section:         48px;
    --spacing-title-bottom:    12px;
    --spacing-subtitle-bottom: 32px;
  }
}

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--r-md);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 200ms var(--ease-out),
              box-shadow 200ms var(--ease-out),
              background-color 150ms ease,
              border-color 150ms ease,
              color 150ms ease;
}
.btn:focus-visible { outline: 2px solid var(--green-2); outline-offset: 3px; }
.btn:active { transform: scale(0.96) !important; }

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 24px var(--green-glow);
}
@media (hover: hover) {
  .btn-green:hover {
    background: var(--green-2);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--green-glow);
  }
}

.btn-white {
  background: rgba(255,255,255,0.1);
  color: var(--text-dark);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
}
@media (hover: hover) {
  .btn-white:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-3px);
  }
}

.btn-dark {
  background: var(--dark);
  color: var(--text-dark);
  border: 1px solid rgba(255,255,255,0.1);
}
@media (hover: hover) {
  .btn-dark:hover {
    background: var(--dark-2);
    transform: translateY(-3px);
  }
}

.btn-outline-light {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(0,0,0,0.15);
}
@media (hover: hover) {
  .btn-outline-light:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
  }
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-2));
  color: var(--dark);
  font-weight: 800;
  box-shadow: 0 4px 24px rgba(251,191,36,0.3);
}
@media (hover: hover) {
  .btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(251,191,36,0.4);
  }
}

/* ── Navigation ──────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color 300ms ease, backdrop-filter 300ms ease;
}
.nav.scrolled {
  background: rgba(7, 16, 10, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 72px; width: auto; object-fit: contain; display: block; }

.nav-links { display: none; align-items: center; gap: 4px; }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark-2);
  letter-spacing: 0.01em;
  transition: color 150ms ease, background-color 150ms ease;
}
@media (hover: hover) {
  .nav-links a:hover { color: var(--text-dark); background: rgba(255,255,255,0.06); }
}
.nav-links a.active { color: var(--green-2); }

.nav-cta { display: none; }
@media (min-width: 768px) { .nav-cta { display: flex; } }

.nav-hamburger {
  display: flex; flex-direction: column; gap: 5px; padding: 8px;
  border-radius: var(--r-sm);
}
@media (min-width: 768px) { .nav-hamburger { display: none; } }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-dark); border-radius: 2px;
  transition: transform 250ms var(--ease-out), opacity 250ms ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: var(--nav-h) 0 0 0;
  background: rgba(7,16,10,0.97);
  backdrop-filter: blur(24px);
  z-index: 99;
  display: flex; flex-direction: column;
  padding: 32px 24px; gap: 8px;
  transform: translateX(100%);
  transition: transform 350ms var(--ease-out);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  padding: 16px 20px; border-radius: var(--r-md);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 0.05em;
  color: var(--text-dark-2);
  border: 1px solid transparent;
  transition: color 150ms ease, border-color 150ms ease;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--text-dark); border-color: rgba(255,255,255,0.08); }
.nav-mobile .mobile-cta { margin-top: 16px; width: 100%; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; }

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  padding-block: calc(var(--nav-h) + 40px) 80px;
}

/* Animated orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  will-change: transform;
}
.hero-orb-1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(22,163,74,0.2) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orbFloat1 11s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(180,83,9,0.12) 0%, transparent 70%);
  bottom: 0; left: 5%;
  animation: orbFloat2 14s ease-in-out infinite;
  animation-delay: -5s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(22,163,74,0.12) 0%, transparent 70%);
  top: 40%; left: 38%;
  animation: orbFloat1 9s ease-in-out infinite;
  animation-delay: -3s;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(50px, -40px) scale(1.08); }
  70%       { transform: translate(-30px, 30px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(40px, -60px); }
}

/* Dot grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Diagonal accent line */
.hero-slash {
  position: absolute;
  top: 0; left: 48%;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(22,163,74,0.25) 30%,
    rgba(22,163,74,0.5) 55%,
    rgba(22,163,74,0.25) 80%,
    transparent 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  display: none;
}
@media (min-width: 900px) { .hero-slash { display: block; } }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
@media (min-width: 900px) { .hero-inner { grid-template-columns: 1.1fr 1fr; gap: 64px; } }

/* Left — text */
.hero-content {}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-2);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.hero-title-line { overflow: hidden; display: block; }
.hero-title-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 0s;
}
body.loaded .hero-title-inner {
  transform: translateY(0);
  transition: transform 1s var(--ease-out);
}
body.loaded .hero-title-line:nth-child(1) .hero-title-inner { transition-delay: 0.05s; }
body.loaded .hero-title-line:nth-child(2) .hero-title-inner { transition-delay: 0.18s; }
body.loaded .hero-title-line:nth-child(3) .hero-title-inner { transition-delay: 0.3s; }

.hero-title .green-line {
  background: linear-gradient(90deg, var(--green-2) 0%, #86EFAC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: var(--text-dark-2);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 32px;
}
.hero-stat {
  flex: 1;
  padding-inline: 0 24px;
}
.hero-stat + .hero-stat {
  padding-inline: 24px;
  border-left: 1px solid rgba(255,255,255,0.07);
}
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.hero-stat-num .accent { color: var(--green-2); }
.hero-stat-label { font-size: 0.8rem; color: var(--text-dark-3); font-weight: 500; }

/* Right — logo showcase */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-showcase {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Glow ring behind logo */
.logo-glow-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,0.18) 0%, transparent 65%);
  filter: blur(30px);
  animation: logoPulse 5s ease-in-out infinite;
  pointer-events: none;
}
@media (max-width: 899px) { .logo-glow-ring { width: 260px; height: 260px; } }

@keyframes logoPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.08); }
}

.logo-frame {
  position: relative;
  padding: 44px;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  z-index: 1;
}

/* Gradient border shimmer */
.logo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 40px;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(22,163,74,0.5) 0%,
    rgba(180,83,9,0.3) 50%,
    transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-logo-img {
  width: clamp(200px, 28vw, 300px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 40px rgba(22,163,74,0.45)) drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 8px 40px rgba(22,163,74,0.45)) drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }
  50%       { transform: translateY(-12px) scale(1.01); filter: drop-shadow(0 20px 60px rgba(22,163,74,0.6)) drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }
}

/* Orbit decoration rings */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(22,163,74,0.15);
  pointer-events: none;
  animation: orbitSpin var(--spd) linear infinite;
}
.orbit-1 { width: 340px; height: 340px; --spd: 24s; }
.orbit-2 { width: 440px; height: 440px; --spd: 36s; animation-direction: reverse; border-color: rgba(180,83,9,0.1); }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

/* ── Balles de padel rebondissantes ─────── */
.bouncing-ball {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  transition: filter 0ms;
}

/* ── Raquettes flottantes ─────────────────── */
.floating-racket {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
  filter: drop-shadow(0 4px 14px rgba(22,163,74,0.35));
  opacity: 0.72;
  transition: filter 0ms;
}
@media (prefers-reduced-motion: reduce) { .floating-racket { display: none; } }
.ball-svg {
  display: block;
  animation: ballSpin linear infinite;
}
.ball-svg.squish {
  animation: ballSpin linear infinite, ballSquish 180ms cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes ballSpin    { to { transform: rotate(360deg); } }
@keyframes ballSquish  {
  0%   { transform: scale(1, 1); }
  35%  { transform: scale(1.3, 0.72); }
  70%  { transform: scale(0.88, 1.12); }
  100% { transform: scale(1, 1); }
}
@media (prefers-reduced-motion: reduce) {
  .bouncing-ball { display: none; }
}

/* ── Marquee Strip ───────────────────────── */
.marquee-strip {
  background: var(--green);
  padding-block: 16px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
@media (hover: hover) { .marquee-strip:hover .marquee-track { animation-play-state: paused; } }
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.9);
  padding-inline: 28px;
  white-space: nowrap;
}
.marquee-sep {
  color: rgba(255,255,255,0.35);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Products Section ────────────────────── */
.products {
  background: var(--dark-2);
  padding-block: 25px var(--spacing-section);
  position: relative;
}

.products-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  margin-bottom: var(--spacing-subtitle-bottom);
  align-items: center;
}
@media (max-width: 767px) {
  .products-header { grid-template-columns: 1fr; gap: 20px; }
}

.products-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.products-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
}

.products-big-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}
.products-big-title span { color: var(--green-2); }

.products-desc {
  font-size: 1.0625rem;
  color: var(--text-dark-2);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .products-desc { max-width: 100%; }
}

/* Grid */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-xl);
  overflow: hidden;
}
@media (min-width: 560px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .products-grid { grid-template-columns: repeat(3, 1fr); } }

/* Card */
.product-card {
  background: var(--surface);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
  cursor: default;
  will-change: transform;
}
.product-card.revealed { opacity: 1; transform: translateY(0); }

@media (hover: hover) {
  .product-card:hover { z-index: 2; }
  .product-card:hover .card-top { filter: brightness(0.95); }
  .product-card:hover .card-icon-svg { transform: scale(1.15) rotate(-5deg); }
  .product-card:hover .card-cta { color: var(--green); gap: 12px; }
  .product-card:hover .card-num { opacity: 0.18; }
}

.card-top {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 250ms ease;
}

.card-num {
  position: absolute;
  bottom: -28px;
  right: -8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 9rem;
  line-height: 1;
  color: rgba(0,0,0,0.07);
  user-select: none;
  pointer-events: none;
  transition: opacity 250ms ease;
  letter-spacing: -0.02em;
}

.card-icon-svg {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  transition: transform 350ms var(--ease-spring);
}

.card-body { padding: 28px 28px 24px; }

.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1;
}
.card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.card-footer-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.card-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--light);
  padding: 4px 10px;
  border-radius: 100px;
}
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 200ms ease, gap 200ms var(--ease-spring);
}

/* Card top — image produit réelle */
.card-has-img {
  background: #F0F4F0;
}
.card-product-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px 20px;
  mix-blend-mode: multiply;
  transition: transform 350ms var(--ease-spring);
}
@media (hover: hover) {
  .product-card:hover .card-product-img { transform: scale(1.07); }
}

/* Card top background colors */
.c-green  { background: linear-gradient(145deg, #DCFCE7, #BBF7D0); }
.c-blue   { background: linear-gradient(145deg, #DBEAFE, #BFDBFE); }
.c-lime   { background: linear-gradient(145deg, #ECFCCB, #D9F99D); }
.c-amber  { background: linear-gradient(145deg, #FEF3C7, #FDE68A); }
.c-purple { background: linear-gradient(145deg, #EDE9FE, #DDD6FE); }
.c-teal   { background: linear-gradient(145deg, #CCFBF1, #99F6E4); }
.c-orange { background: linear-gradient(145deg, #FFEDD5, #FED7AA); }

.c-green svg  { color: #15803D; }
.c-blue svg   { color: #1D4ED8; }
.c-lime svg   { color: #4D7C0F; }
.c-amber svg  { color: #B45309; }
.c-purple svg { color: #6D28D9; }
.c-teal svg   { color: #0F766E; }
.c-orange svg { color: #C2410C; }

/* ── Pourquoi nous choisir ───────────────── */
.whychoose {
  background: var(--dark);
  padding-block: 25px var(--spacing-section);
  position: relative;
  overflow: hidden;
}
.whychoose::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(22,163,74,0.08), transparent),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(251,191,36,0.06), transparent);
  pointer-events: none;
}

.whychoose-header { margin-bottom: var(--spacing-subtitle-bottom); }
.whychoose-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-2);
  margin-bottom: 14px;
}
.whychoose-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--text-dark);
}
.whychoose-title span { color: var(--green-2); }

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

.wc-card {
  background: var(--dark-2);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  transition: border-color 250ms ease, background 250ms ease, transform 250ms ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (hover: hover) {
  .wc-card:hover {
    border-color: rgba(34,197,94,0.3);
    background: rgba(22,163,74,0.06);
    transform: translateY(-4px);
  }
}

.wc-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.wc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--green-2);
  line-height: 1.1;
}

.wc-desc {
  font-size: 0.95rem;
  color: var(--text-dark-2);
  line-height: 1.75;
}

/* ── Features Section ────────────────────── */
.features {
  background: var(--dark);
  padding-block: 25px var(--spacing-section);
  position: relative;
  overflow: hidden;
}
.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(22,163,74,0.08), transparent),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(180,83,9,0.06), transparent);
  pointer-events: none;
}

.features-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-2);
  margin-bottom: 16px;
}
.features-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin-bottom: var(--spacing-subtitle-bottom);
  line-height: 0.95;
}
.features-title span { color: var(--green-2); }

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-xl);
  overflow: hidden;
}
@media (min-width: 640px)  { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-item {
  background: var(--dark);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background-color 250ms ease;
}
@media (hover: hover) { .feature-item:hover { background: var(--dark-2); } }
@media (hover: hover) { .feature-item:hover .fi-icon { transform: scale(1.1) rotate(-5deg); } }

.fi-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  transition: transform 350ms var(--ease-spring);
}
.fi-icon.green  { background: rgba(22,163,74,0.15); color: var(--green-2); }
.fi-icon.gold   { background: rgba(251,191,36,0.12); color: var(--gold-light); }

.fi-num {
  position: absolute; top: 24px; right: 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem; line-height: 1;
  color: rgba(255,255,255,0.04);
  user-select: none; pointer-events: none;
  letter-spacing: 0.02em;
}

.fi-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem; letter-spacing: 0.04em;
  color: var(--text-dark); margin-bottom: 10px; line-height: 1;
}
.fi-desc { font-size: 0.9375rem; color: var(--text-dark-2); line-height: 1.7; }

/* ── CTA Section ─────────────────────────── */
.cta-section {
  background: var(--dark-2);
  padding-block: 25px var(--spacing-section);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(22,163,74,0.12), transparent);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) { .cta-inner { grid-template-columns: 1fr auto; gap: 80px; } }

.cta-text {}
.cta-overline {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green-2); margin-bottom: 16px;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.02em; line-height: 0.95;
  color: var(--text-dark);
  margin-bottom: var(--spacing-title-bottom);
}
.cta-title span { color: var(--green-2); }
.cta-sub { font-size: 1.0625rem; color: var(--text-dark-2); line-height: 1.7; max-width: 480px; margin-bottom: var(--spacing-subtitle-bottom); }

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
@media (min-width: 900px) { .cta-actions { align-items: flex-end; } }
.cta-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-dark-3);
  font-weight: 500;
}
.cta-contact-line a { color: var(--green-2); transition: color 150ms ease; }
@media (hover: hover) { .cta-contact-line a:hover { color: #86EFAC; } }

/* ── Footer ──────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: 56px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 32px; } }

.footer-brand .nav-logo { margin-bottom: 12px; }
.footer .nav-logo-img { height: 60px; }
.footer-tagline { font-size: 0.9rem; color: var(--text-dark-2); line-height: 1.6; max-width: 220px; }

.footer-nav-title, .footer-contact-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark-3);
  margin-bottom: 20px;
}
.footer-nav-links { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-links a {
  font-size: 0.9375rem;
  color: var(--text-dark-2);
  transition: color 150ms ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (hover: hover) { .footer-nav-links a:hover { color: var(--green-2); } }

.footer-contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 12px;
}
.fci-icon {
  width: 36px; height: 36px;
  border-radius: 8px; background: var(--dark-3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green-2);
}
.fci-text { font-size: 0.9rem; color: var(--text-dark-2); }
.fci-text a { transition: color 150ms ease; }
@media (hover: hover) { .fci-text a:hover { color: var(--green-2); } }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
}
.footer-copy { font-size: 0.8125rem; color: var(--text-dark-3); }
.footer-sam { font-size: 0.8125rem; color: var(--text-dark-3); }
.footer-sam span { color: var(--green-2); font-weight: 600; }

/* ── Page Hero (inner pages) ─────────────── */
.page-hero {
  background: var(--dark);
  padding-block: calc(var(--nav-h) + 40px) 40px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 60%, rgba(22,163,74,0.08), transparent);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 680px; }
.page-hero-inner--split { max-width: 960px; display: flex; align-items: center; gap: 56px; }
.page-hero-inner--split .page-hero-left { flex-shrink: 0; }
.page-hero-inner--split .page-sub { max-width: 400px; }
@media (max-width: 700px) { .page-hero-inner--split { flex-direction: column; gap: 20px; } }

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-2);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--text-dark);
  margin-bottom: var(--spacing-title-bottom);
}
.page-title span { color: var(--green-2); }

.page-sub {
  font-size: 1.0625rem;
  color: var(--text-dark-2);
  line-height: 1.75;
  margin-bottom: var(--spacing-subtitle-bottom);
}

/* ── Contact Page ────────────────────────── */
.contact-section {
  background: var(--dark);
  padding-block: 0 var(--spacing-section);
}

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

.contact-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-dark-sm);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out),
              border-color 250ms ease, box-shadow 250ms ease;
}
.contact-card.revealed { opacity: 1; transform: translateY(0); }
@media (hover: hover) {
  .contact-card:hover {
    border-color: rgba(22,163,74,0.35);
    box-shadow: var(--shadow-dark-lg);
    transform: translateY(-4px);
  }
}

.cc-icon {
  width: 52px; height: 52px;
  border-radius: 14px; display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.cc-icon.green { background: var(--green-dim); color: var(--green); }
.cc-icon.gold  { background: var(--gold-dim);  color: var(--gold); }
.cc-icon.dark  { background: rgba(255,255,255,0.08); color: var(--text-dark); }
.cc-icon.facebook { background: rgba(24,119,242,0.15); color: #1877F2; }
.cc-icon.instagram { background: rgba(225,48,108,0.12); color: #E1306C; }

.cc-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dark-3); margin-bottom: 8px;
}
.cc-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 0.03em;
  color: var(--text-dark); margin-bottom: 6px;
  line-height: 1.1; word-break: break-all;
}
.cc-value a { transition: color 150ms ease; }
@media (hover: hover) { .cc-value a:hover { color: var(--green-2); } }
.cc-sub { font-size: 0.875rem; color: var(--text-dark-2); }

.contact-social-grid { margin-top: 20px; }

.founder-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: #0A1628;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 24px;
}
.founder-avatar img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 10px;
}
.founder-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem; letter-spacing: 0.04em;
  color: var(--text-dark); margin-bottom: 10px; line-height: 1.2;
}
.founder-role { font-size: 0.75rem; color: var(--green-2); font-weight: 700; margin-bottom: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.founder-bio { font-size: 0.875rem; color: var(--text-dark-2); line-height: 1.7; }

/* ── Nav Social Icons ────────────────────── */
.nav-social {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 768px) { .nav-social { display: flex; } }

.nav-social-link {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dark-2);
  transition: color 150ms ease, background 150ms ease;
}
@media (hover: hover) {
  .nav-social-link:hover { color: var(--text-dark); background: rgba(255,255,255,0.07); }
}

.mobile-social {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px 0;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-social-link {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dark-2);
  transition: color 150ms ease, border-color 150ms ease;
}
@media (hover: hover) {
  .mobile-social-link:hover { color: var(--text-dark); border-color: rgba(255,255,255,0.2); }
}

/* ── Devis Page ──────────────────────────── */
.devis-section {
  background: var(--light);
  padding-block: 25px var(--spacing-section);
}
.devis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 960px) { .devis-grid { grid-template-columns: 2fr 3fr; } }

.devis-info { position: sticky; top: calc(var(--nav-h) + 24px); }

.devis-info-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em; line-height: 0.95;
  color: var(--text-light); margin-bottom: 12px;
}
.devis-info-title span { color: var(--green); }
.devis-info-sub { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 40px; }

.devis-perks { display: flex; flex-direction: column; gap: 18px; }
.devis-perk { display: flex; gap: 14px; align-items: flex-start; }
.dp-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--green-dim); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.dp-title { display: block; font-weight: 700; font-size: 0.9375rem; color: var(--text-light); margin-bottom: 2px; }
.dp-sub { font-size: 0.875rem; color: var(--text-muted); }

.devis-contact-box {
  margin-top: 40px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.dcb-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; }
.dcb-link {
  display: flex; align-items: center; gap: 12px;
  padding-block: 12px; color: var(--text-light);
  font-weight: 600; font-size: 0.9375rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 4px;
  transition: color 150ms ease;
}
.dcb-link:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
@media (hover: hover) { .dcb-link:hover { color: var(--green); } }
.dcb-link-icon { color: var(--green); flex-shrink: 0; }

/* Form */
.form-card {
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-xl);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow-lg);
}
.form-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 0.04em;
  color: var(--text-light); margin-bottom: 4px; line-height: 1;
}
.form-sub { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 36px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; gap: 20px; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-label {
  display: block; font-size: 0.875rem; font-weight: 700;
  color: var(--text-muted); margin-bottom: 8px; letter-spacing: 0.01em;
}
.form-label .req { color: var(--green); }

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--light);
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--r-md);
  padding: 13px 16px;
  font-size: 0.9375rem;
  color: var(--text-light);
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--green);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(22,163,74,0.1);
}
.form-input.error, .form-textarea.error {
  border-color: #DC2626;
  box-shadow: 0 0 0 4px rgba(220,38,38,0.08);
  animation: shake 350ms var(--ease-out);
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}
.form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2352716A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--light);
  padding-right: 40px;
}
.form-select option { background: var(--surface); }

.form-error { font-size: 0.8125rem; color: #DC2626; margin-top: 6px; display: none; align-items: center; gap: 4px; }
.form-error.visible { display: flex; }

.form-submit { width: 100%; justify-content: center; padding: 17px; font-size: 1rem; margin-top: 28px; }
.form-success { display: none; text-align: center; padding: 56px 24px; }
.form-success.visible { display: block; }
.form-success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--green-dim);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; color: var(--green);
  box-shadow: 0 0 0 12px rgba(22,163,74,0.06);
}
.form-success h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 0.04em;
  color: var(--text-light); margin-bottom: 10px;
}
.form-success p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }

/* ── Scroll Reveal ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── Mentions légales ────────────────────── */
.legal {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-block: 20px;
  text-align: center;
}
.legal p {
  font-size: 0.72rem;
  color: var(--text-dark-3);
  line-height: 1.8;
  max-width: 760px;
  margin-inline: auto;
}
.legal a {
  color: var(--text-dark-3);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 150ms ease;
}
@media (hover: hover) { .legal a:hover { color: var(--text-dark-2); } }

/* ── WhatsApp wrapper ────────────────────── */
.wa-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 210;
}

/* ── Bulle CTA WhatsApp ──────────────────── */
.wa-bubble {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 10px 36px 10px 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.14), 0 1px 4px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 215px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(14px);
  transition: opacity 350ms ease, transform 350ms ease;
}
.wa-bubble.wa-bubble--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.wa-bubble-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
  margin: 0;
}
.wa-bubble-arrow {
  font-size: 26px;
  color: #25D366;
  flex-shrink: 0;
  display: inline-block;
  line-height: 1;
  animation: waBounce 0.9s ease-in-out infinite;
}
@keyframes waBounce {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(5px); }
}
.wa-bubble-close {
  position: absolute;
  top: -7px; right: -7px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #e0e4e8;
  color: #555;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
  flex-shrink: 0;
  line-height: 1;
}
@media (hover: hover) { .wa-bubble-close:hover { background: #c8cdd2; color: #111; } }

/* ── WhatsApp floating button ────────────── */
.whatsapp-btn {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 200ms var(--ease-spring), box-shadow 200ms ease;
  flex-shrink: 0;
}
.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.65; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (hover: hover) {
  .whatsapp-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 36px rgba(37,211,102,0.6);
  }
}
.whatsapp-btn svg { width: 30px; height: 30px; flex-shrink: 0; }

/* Tooltip */
.whatsapp-btn::after {
  content: 'Nous contacter directement par WhatsApp';
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a1a;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease;
}
@media (hover: hover) { .whatsapp-btn:hover::after { opacity: 1; } }

/* ── Scroll to top ───────────────────────── */
.scroll-top {
  position: fixed; bottom: 96px; right: 28px;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-dark-sm);
  color: var(--text-dark-2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transform: translateY(10px);
  transition: opacity 200ms ease, transform 200ms var(--ease-out),
              border-color 150ms ease, color 150ms ease;
  z-index: 50;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
@media (hover: hover) { .scroll-top:hover { border-color: var(--green-2); color: var(--green-2); } }

/* ── Calculateur de revenus ──────────────── */
.calculator {
  background: var(--dark);
  padding-block: 25px var(--spacing-section);
  position: relative;
  overflow: hidden;
}
.calculator::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(22,163,74,0.07), transparent),
    radial-gradient(ellipse 40% 60% at 5% 80%, rgba(251,191,36,0.05), transparent);
  pointer-events: none;
}

.calc-header { margin-bottom: var(--spacing-subtitle-bottom); display: flex; align-items: center; gap: 48px; }
.calc-header-left { flex-shrink: 0; }
.calc-header-left .features-title { margin-bottom: 0; }
.calc-header-desc { font-size: 1.0625rem; color: var(--text-dark-2); max-width: 480px; line-height: 1.7; }
@media (max-width: 700px) { .calc-header { flex-direction: column; gap: 16px; } }

.calc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 960px) { .calc-layout { grid-template-columns: 2fr 0.65fr; gap: 32px; align-items: start; } }

/* Equipment rows */
.calc-rows { display: flex; flex-direction: column; gap: 3px; }

.calc-row {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-sm);
  padding: 11px 18px;
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 16px;
  align-items: center;
  transition: border-color 200ms ease, opacity 200ms ease, background 200ms ease;
}
.calc-row.disabled {
  opacity: 0.4;
  pointer-events: none; /* inputs inside still work via toggle */
  pointer-events: auto;
}
.calc-row.disabled .calc-controls { pointer-events: none; }
@media (max-width: 599px) {
  .calc-row { grid-template-columns: 1fr; gap: 14px; }
}

/* Toggle switch */
.calc-toggle-wrap {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}
.calc-toggle-wrap input { opacity: 0; width: 0; height: 0; position: absolute; }
.calc-switch {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  cursor: pointer;
  transition: background 200ms ease;
}
.calc-toggle-wrap input:checked ~ .calc-switch { background: var(--green); }
.calc-switch::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  top: 3px; left: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 220ms var(--ease-spring);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.calc-toggle-wrap input:checked ~ .calc-switch::after { transform: translateX(18px); }

/* Left — icon + name */
.calc-row-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.calc-eq-emoji {
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  background: var(--dark-3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.calc-eq-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-dark);
  white-space: nowrap;
}

/* Controls */
.calc-controls {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  align-items: center;
  padding-left: 24px;
}

.calc-field { display: flex; flex-direction: column; gap: 6px; min-width: 100px; }
.calc-field-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark-3);
}

/* Number input */
.calc-price-wrap {
  display: flex;
  align-items: center;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  overflow: hidden;
  height: 32px;
}
.calc-stepper {
  width: 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark-2);
  font-size: 1.1rem;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: background 150ms ease, color 150ms ease;
  flex-shrink: 0;
}
@media (hover: hover) { .calc-stepper:hover { background: rgba(255,255,255,0.08); color: var(--text-dark); } }
.calc-price-input {
  width: 52px;
  background: transparent;
  border: none;
  outline: none;
  text-align: center;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.9375rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  -moz-appearance: textfield;
}
.calc-price-input::-webkit-outer-spin-button,
.calc-price-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.calc-price-unit {
  font-size: 0.75rem;
  color: var(--text-dark-3);
  padding-right: 8px;
  font-weight: 600;
}

/* Range slider */
.calc-range-wrap { display: flex; flex-direction: column; gap: 6px; min-width: 120px; }
.calc-range-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc-range-val {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--green-2);
}
.calc-range {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.12);
  outline: none;
  cursor: pointer;
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.25);
  transition: box-shadow 150ms ease, transform 150ms ease;
}
.calc-range::-webkit-slider-thumb:hover { box-shadow: 0 0 0 5px rgba(22,163,74,0.3); transform: scale(1.1); }
.calc-range::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  border: none;
}

/* Daily subtotal */
.calc-row-daily {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  text-align: right;
  white-space: nowrap;
}
.calc-row-daily small {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--text-dark-3);
  margin-left: 4px;
  letter-spacing: 0;
  font-weight: 600;
}

/* Results panel */
.calc-results {
  position: relative;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.calc-results-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--text-dark-3);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.calc-result-row {
  padding-block: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.calc-result-row:first-of-type { border-top: none; padding-top: 0; }

.calc-result-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark-2);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.calc-result-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: color 300ms ease;
}
.calc-result-value.highlight { color: var(--green-2); }
.calc-result-value.highlight-gold { color: var(--gold-light); }

.calc-result-sub {
  font-size: 0.75rem;
  color: var(--text-dark-3);
  margin-top: 4px;
}

.calc-disclaimer {
  font-size: 0.75rem;
  color: var(--text-dark-3);
  margin-top: 20px;
  line-height: 1.5;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.calc-cta { margin-top: 24px; width: 100%; justify-content: center; }

/* ── Lightbox ────────────────────────────── */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
}
.lb-overlay.open { display: block; animation: lbFadeIn 200ms ease forwards; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 20px;
}
.lightbox.open { display: flex; }

.lb-media {
  position: relative;
  max-width: min(90vw, 700px);
  max-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lbSlideUp 250ms var(--ease-out) forwards;
}
@keyframes lbSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.lb-img {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  border-radius: var(--r-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  mix-blend-mode: multiply;
  background: #F0F4F0;
}
.lb-img.no-blend { mix-blend-mode: normal; background: transparent; }

.lb-svg-wrap {
  max-width: min(90vw, 500px);
  max-height: 65vh;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.lb-svg-wrap svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lb-caption {
  text-align: center;
  animation: lbSlideUp 300ms 80ms var(--ease-out) both;
}
.lb-caption h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.lb-caption p {
  font-size: 0.9375rem;
  color: var(--text-dark-2);
  max-width: 480px;
}

.lb-close {
  position: fixed;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease;
  z-index: 10002;
}
@media (hover: hover) { .lb-close:hover { background: rgba(255,255,255,0.2); transform: scale(1.08); } }

.lb-nav {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease;
  z-index: 10002;
}
@media (hover: hover) { .lb-nav:hover { background: rgba(255,255,255,0.2); transform: translateY(-50%) scale(1.08); } }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

.lb-counter {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  z-index: 10002;
}

/* Cursor pointer on product cards */
.product-card { cursor: pointer; }

/* ── Callback Floating Button ────────────── */
.callback-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 20px 14px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 24px var(--green-glow);
  z-index: 200;
  white-space: nowrap;
  transition: transform 200ms var(--ease-spring), box-shadow 200ms ease;
}
.callback-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: var(--green);
  animation: cbPulse 2.8s ease-out infinite;
  z-index: -1;
}
@keyframes cbPulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (hover: hover) {
  .callback-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 40px var(--green-glow); }
}
@media (max-width: 400px) {
  .callback-btn-label { display: none; }
  .callback-btn { padding: 15px; border-radius: 50%; }
}

/* ── Callback Modal ──────────────────────── */
.cb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 500;
}
.cb-overlay.open { display: block; animation: lbFadeIn 200ms ease forwards; }

.cb-modal {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(480px, calc(100vw - 32px));
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 36px 32px 32px;
  z-index: 501;
  box-shadow: var(--shadow-dark-lg);
}
.cb-modal.open { display: block; animation: cbModalIn 250ms var(--ease-spring) forwards; }
@keyframes cbModalIn {
  from { opacity: 0; transform: translate(-50%, -48%) scale(0.95); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.cb-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: var(--text-dark-2);
  display: flex; align-items: center; justify-content: center;
  transition: background 150ms ease, color 150ms ease;
}
@media (hover: hover) { .cb-close:hover { background: rgba(255,255,255,0.12); color: var(--text-dark); } }

.cb-header { margin-bottom: 28px; }
.cb-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-dim);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.cb-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem; letter-spacing: 0.04em;
  color: var(--text-dark); margin-bottom: 6px; line-height: 1;
}
.cb-sub { font-size: 0.9rem; color: var(--text-dark-2); line-height: 1.6; }

/* Multi-select */
.cb-multiselect { position: relative; }
.cb-ms-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--dark);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 13px 16px;
  font-size: 0.9375rem;
  color: var(--text-dark);
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.cb-ms-trigger:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(22,163,74,0.12); }
.cb-ms-trigger[aria-expanded="true"] { border-color: var(--green); }
.cb-ms-trigger svg { flex-shrink: 0; color: var(--text-dark-3); transition: transform 200ms ease; }
.cb-ms-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }

.cb-ms-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px); left: 0; right: 0;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 6px 0;
  z-index: 10;
  box-shadow: var(--shadow-dark-lg);
  max-height: 220px;
  overflow-y: auto;
}
.cb-ms-dropdown.open { display: block; }
.cb-ms-option {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 16px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-dark-2);
  transition: background 100ms ease, color 100ms ease;
}
@media (hover: hover) { .cb-ms-option:hover { background: rgba(255,255,255,0.05); color: var(--text-dark); } }
.cb-ms-option input[type="checkbox"] {
  width: 15px; height: 15px;
  accent-color: var(--green);
  cursor: pointer; flex-shrink: 0;
}

/* Submit */
.cb-submit { width: 100%; justify-content: center; padding: 15px; margin-top: 8px; }

/* Success */
.cb-success { display: none; text-align: center; padding: 16px 0 4px; }
.cb-success.visible { display: block; }
.cb-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-dim);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--green);
  box-shadow: 0 0 0 10px rgba(22,163,74,0.06);
}
.cb-success h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem; letter-spacing: 0.04em;
  color: var(--text-dark); margin-bottom: 10px;
}
.cb-success p { font-size: 0.9375rem; color: var(--text-dark-2); }

/* ── Fiche Produit Modal ─────────────────── */
.pd-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 600;
}
.pd-overlay.open { display: block; animation: lbFadeIn 200ms ease forwards; }
/* Layout swap: details left, gallery right */

.pd-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 601;
  padding: 5vh 5vw;
  align-items: center;
  justify-content: center;
}
.pd-modal.open { display: flex; }

.pd-inner {
  position: relative;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-xl);
  width: 90vw;
  max-width: 90vw;
  height: 90dvh;
  max-height: 90dvh;
  display: flex;
  overflow: hidden;
  box-shadow: 0 32px 100px rgba(0,0,0,0.8);
  animation: pdIn 280ms var(--ease-spring) both;
}
@keyframes pdIn {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}

.pd-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  color: var(--text-dark-2);
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background 150ms ease, color 150ms ease;
}
@media (hover: hover) { .pd-close:hover { background: rgba(255,255,255,0.14); color: var(--text-dark); } }

/* Details — panneau gauche */
.pd-details {
  order: 1;
  width: 44%;
  flex-shrink: 0;
  overflow-y: auto;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.07) transparent;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.pd-details::-webkit-scrollbar { width: 4px; }
.pd-details::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 4px; }

/* Gallery — panneau droit */
.pd-gallery {
  order: 2;
  flex: 1;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow: hidden;
}

/* Grille galerie */
.pd-gallery-grid {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr;
  grid-template-rows: minmax(80px, 1fr) minmax(80px, 1fr);
  gap: 5px;
  width: 100%;
  max-height: 460px;
  height: 100%;
}
.pd-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: zoom-in;
  background: #F5F7FA;
  min-height: 0; min-width: 0;
}
.pd-grid-item:first-child { grid-row: 1 / 3; }
.pd-grid-item img {
  width: 100%; height: 100%;
  object-fit: contain; display: block;
  padding: 6px;
  transition: opacity 200ms ease;
}
.pd-gallery-single {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.pd-gallery-single .pd-grid-item:first-child {
  grid-row: 1;
}
.pd-gallery-single .pd-grid-item img {
  object-fit: contain;
  padding: 16px;
}
@media (hover: hover) { .pd-grid-item:hover img { opacity: 0.88; } }
@media (hover: hover) { .pd-grid-item:hover .pd-grid-overlay { opacity: 1; } }

.pd-grid-overlay {
  position: absolute; inset: 0;
  background: rgba(7,16,10,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}
.pd-grid-more-label {
  position: absolute; inset: 0;
  background: rgba(7,16,10,0.72);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 0.05em;
  color: var(--text-dark);
  pointer-events: none;
}

.pd-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.pd-badge {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--green-dim);
  color: var(--green-2);
  border: 1px solid rgba(34,197,94,0.2);
  flex-shrink: 0;
}
.pd-badge.gold { background: var(--gold-dim); color: var(--gold-light); border-color: rgba(251,191,36,0.2); }

.pd-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem; line-height: 1;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.02em;
  user-select: none; pointer-events: none;
  flex-shrink: 0;
}

.pd-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  letter-spacing: 0.03em; line-height: 1;
  color: var(--text-dark);
  margin-top: -6px;
}

.pd-desc {
  font-size: 0.875rem;
  color: var(--text-dark-2);
  line-height: 1.75;
}

.pd-section { display: flex; flex-direction: column; gap: 10px; }
.pd-section-label {
  font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.17em; text-transform: uppercase;
  color: var(--text-dark-3);
  display: flex; align-items: center; gap: 10px;
}
.pd-section-label::after {
  content: '';
  flex: 1; height: 1px;
  background: rgba(255,255,255,0.07);
}

.pd-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.pd-feature {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: 0.875rem; color: var(--text-dark-2); line-height: 1.5;
}
.pd-feat-icon {
  width: 18px; height: 18px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-dim); color: var(--green-2);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

.pd-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.pd-spec {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-sm);
  padding: 9px 13px;
}
.pd-spec-label {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dark-3); margin-bottom: 3px;
}
.pd-spec-value { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }

.pd-formulas {
  display: flex; flex-wrap: wrap; gap: 7px;
}
.pd-formula {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 13px;
  border-radius: 100px;
  font-size: 0.79rem; font-weight: 600;
  border: 1px solid;
  line-height: 1.2;
}
.pd-formula.green { background: var(--green-dim); color: var(--green-2); border-color: rgba(34,197,94,0.2); }
.pd-formula.gold  { background: var(--gold-dim);  color: var(--gold-light); border-color: rgba(251,191,36,0.2); }
.pd-formula.muted { background: rgba(255,255,255,0.04); color: var(--text-dark-2); border-color: rgba(255,255,255,0.1); }

/* Zone CTA (1 ou 2 boutons) */
.pd-cta-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.pd-cta-row .btn {
  flex: 1;
  min-width: 130px;
  justify-content: center;
  text-align: center;
  padding: 13px 14px;
  font-size: 0.875rem;
  white-space: normal;
  line-height: 1.3;
}

/* Bouton simulation revenus */
.btn-sim {
  background: #AADC1A;
  color: #0A1628;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(170,220,26,0.28);
}
@media (hover: hover) {
  .btn-sim:hover {
    background: #bfee25;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(170,220,26,0.45);
  }
}

/* Bouton CTA déjà existant (hors cta-row) */
.pd-cta {
  width: 100%; justify-content: center;
  padding: 15px; font-size: 0.9375rem;
  margin-top: 4px;
}

/* Product prev/next nav */
.pd-prod-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; cursor: pointer;
  transition: background 150ms ease, opacity 200ms ease;
}
.pd-prod-nav.pd-hidden { opacity: 0; pointer-events: none; }
.pd-prod-prev { left: 10px; }
.pd-prod-next { right: 10px; }
@media (hover: hover) { .pd-prod-nav:hover { background: rgba(255,255,255,0.22); } }
@media (max-width: 767px) {
  .pd-prod-nav { width: 36px; height: 36px; top: 21dvh; transform: none; }
}

/* Zoom overlay */
.pd-zoom-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 700;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.pd-zoom-overlay.open { display: flex; animation: lbFadeIn 150ms ease forwards; }
.pd-zoom-img {
  max-width: 80vw; max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r-md);
  animation: lbSlideUp 200ms var(--ease-out) both;
  cursor: default;
  flex-shrink: 0;
}
.pd-zoom-close {
  position: fixed; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 701; cursor: pointer;
  transition: background 150ms ease;
}
@media (hover: hover) { .pd-zoom-close:hover { background: rgba(255,255,255,0.2); } }

.pd-zoom-nav-btn {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 701;
  transition: background 150ms ease, opacity 200ms ease;
  margin: 0 16px;
}
.pd-zoom-nav-btn.pd-hidden { opacity: 0; pointer-events: none; }
@media (hover: hover) { .pd-zoom-nav-btn:hover { background: rgba(255,255,255,0.22); } }

.pd-zoom-counter {
  position: fixed; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  z-index: 701; pointer-events: none;
}

/* Responsive */
@media (max-width: 767px) {
  .pd-modal { padding: 0; }
  .pd-inner {
    flex-direction: column;
    border-radius: 0;
    width: 100%;
    max-width: 100%;
    height: 100dvh;
    max-height: 100dvh;
  }
  /* Descriptif EN HAUT sur mobile */
  .pd-details {
    order: 1;
    width: 100%; flex-shrink: 0;
    flex: 0 0 auto;
    max-height: 55dvh;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 20px 18px 20px; gap: 14px;
    overflow-y: auto;
  }
  /* Galerie EN BAS sur mobile */
  .pd-gallery {
    order: 2;
    width: 100%; flex: 1;
    min-height: 0;
    height: auto;
    max-height: 45dvh;
    padding: 8px;
    align-items: stretch;
  }
  .pd-gallery-grid {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    max-height: none;
    height: 100%;
  }
  .pd-num { font-size: 2.5rem; }
  .pd-title { font-size: 1.5rem; }
  .pd-specs { grid-template-columns: 1fr 1fr; }
  .pd-zoom-nav-btn { width: 40px; height: 40px; margin: 0 8px; }
  .pd-zoom-img { max-width: 90vw; }
  .pd-prod-nav { top: 27dvh; transform: none; }
}
@media (max-width: 380px) {
  .pd-specs { grid-template-columns: 1fr; }
}

/* ── Utility ─────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

section { scroll-margin-top: calc(var(--nav-h) + 40px); }

/* ── Prix produit ────────────────────────── */
.card-price {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.card-price-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0A1628;
}
.card-price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: #AADC1A;
  line-height: 1;
}

.pd-price {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-bottom: 20px;
  padding: 14px 18px;
  background: rgba(170, 220, 26, 0.07);
  border-left: 3px solid #AADC1A;
  border-radius: 8px;
}
.pd-price[hidden] { display: none; }
.pd-price-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}
.pd-price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: #AADC1A;
  line-height: 1;
}

/* ── Reduced Motion ──────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .product-card, .contact-card { opacity: 1 !important; transform: none !important; }
  .hero-title-inner { transform: translateY(0) !important; transition: none !important; }
}
