/*
Theme Name: VESPIKILL
Theme URI: https://vespikill.fr
Author: SAS VESPIKILL
Author URI: https://vespikill.fr
Description: Thème premium VESPIKILL — Poudreuse DHP40 anti-frelons avec WooCommerce. Design sur-mesure, animations dorées, curseur crosshair.
Version: 1.2.1
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
License URI: https://vespikill.fr/mentions-legales
Text Domain: vespikill
Tags: woocommerce, dark, premium, custom-cursor, e-commerce
*/

/* ========================================
   VESPIKILL 2 — PREMIUM EDITION
   Ultra-high-end showcase site
   Agency-grade design · 10K€ level
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Design Tokens ── */
:root {
  --black:      #0A0A0A;
  --black-mid:  #111111;
  --black-soft:  #1A1A1A;
  --black-card:  #141414;
  --red:         #C0392B;
  --red-light:   #E74C3C;
  --red-glow:    rgba(192,57,43,0.35);
  --gold:        #C9A84C;
  --gold-light:  #D4B95E;
  --gold-glow:   rgba(201,168,76,0.25);
  --yellow:      #F5C400;
  --white:       #FFFFFF;
  --off-white:   #E8E8E8;
  --border:      #222222;
  --border-light:#2A2A2A;
  --text-dim:    #666666;
  --text-muted:  #999999;

  --font-display: 'Rajdhani', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent:  'Playfair Display', Georgia, serif;

  --max-width:   1320px;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:    cubic-bezier(0.33, 1, 0.68, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition:  0.4s var(--ease);
  --transition-slow: 0.8s var(--ease);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--black);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); }

html {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  cursor: none;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; cursor: none; }
ul, ol { list-style: none; }
button { cursor: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ========================================
   CUSTOM CURSOR
   ======================================== */

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}

/* ── Crosshair lines ── */
.cursor-crosshair {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  width: 0; height: 0;
}

.cursor-crosshair span {
  position: absolute;
  background: var(--red);
  opacity: 0;
  border-radius: 1px;
  transition: all 0.35s var(--ease);
}

/* Top */
.cursor-crosshair span:nth-child(1) {
  width: 2px; height: 12px;
  left: -1px;
  bottom: 8px;
  transform: translateY(-14px);
}
/* Bottom */
.cursor-crosshair span:nth-child(2) {
  width: 2px; height: 12px;
  left: -1px;
  top: 8px;
  transform: translateY(14px);
}
/* Left */
.cursor-crosshair span:nth-child(3) {
  width: 12px; height: 2px;
  top: -1px;
  right: 8px;
  transform: translateX(-14px);
}
/* Right */
.cursor-crosshair span:nth-child(4) {
  width: 12px; height: 2px;
  top: -1px;
  left: 8px;
  transform: translateX(14px);
}

/* Locked state — lines converge to form crosshair */
.cursor-crosshair.locked span {
  opacity: 1;
  transform: translate(0, 0);
  box-shadow: 0 0 6px var(--red-glow), 0 0 12px var(--red-glow);
}

body:hover .cursor-dot { background: var(--red); }

.cursor-hover .cursor-dot {
  width: 16px; height: 16px;
  background: var(--yellow);
}
.cursor-hover .cursor-ring {
  width: 60px; height: 60px;
  border-color: var(--yellow);
}
.cursor-hover .cursor-crosshair span {
  background: var(--yellow);
}

/* Hide custom cursor on touch/small screens */
@media (max-width: 1024px) {
  body { cursor: auto; }
  a, button { cursor: pointer; }
  .cursor-dot, .cursor-ring, .cursor-crosshair { display: none; }
}

/* ========================================
   PAGE LOADER
   ======================================== */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
  /* CSS-only safety net: if JS fails to add .loaded for any reason
     (iPad bug, blocked script, etc.), the loader auto-hides after 4s. */
  animation: pageLoaderFailsafe 0.6s ease 4s forwards;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: none;
}

@keyframes pageLoaderFailsafe {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.loader-logo {
  width: 80px;
  height: 80px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes loaderSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */

/* Fallback: if JS never fires, auto-reveal everything after 3 s */
@keyframes revealFallback {
  to { opacity: 1; transform: none; }
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  animation: revealFallback 0.6s ease 3s forwards;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none; /* JS worked — cancel fallback */
}

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  animation: revealFallback 0.6s ease 3s forwards;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
  animation: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  animation: revealFallback 0.6s ease 3s forwards;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
  animation: none;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  animation: revealFallback 0.6s ease 3s forwards;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
  animation: none;
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ========================================
   BUTTONS — Premium
   ======================================== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  overflow: hidden;
  z-index: 1;
  transition: all var(--transition);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: transform 0.5s var(--ease);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary::before {
  background: var(--red-light);
  transform: scaleX(0);
  transform-origin: right;
}
.btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn-primary:hover {
  box-shadow: 0 8px 32px var(--red-glow);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline::before {
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
}
.btn-outline:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn-outline:hover {
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px var(--gold-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-light);
}
.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.7rem 1.75rem; font-size: 0.8rem; letter-spacing: 1.5px; }
.btn-lg { padding: 1.25rem 3.5rem; font-size: 1rem; }

/* Magnetic button wrapper */
.btn-magnetic {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

/* ========================================
   HEADER — Glassmorphism
   ======================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.5s var(--ease);
}

.site-header.scrolled {
  background: rgba(10,10,10,0.95);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo img {
  width: 48px;
  height: 48px;
  transition: transform 0.5s var(--ease);
}

.logo:hover img { transform: rotate(15deg) scale(1.05); }

.logo-text { display: flex; flex-direction: column; }

.logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.logo-tagline {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  color: var(--red);
  font-style: italic;
  letter-spacing: 2px;
}

.nav-desktop { display: none; }

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-desktop a {
  font-family: var(--font-display);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  padding: 0.25rem 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.4s var(--ease);
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--white); }
.nav-desktop a:hover::after,
.nav-desktop a.active::after { width: 100%; }

/* Header cart icon — visible on desktop AND mobile */
.header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: auto;
  margin-right: 0.6rem;
  color: var(--white);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
.header-cart:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  transform: translateY(-1px);
}
.header-cart-icon {
  width: 20px;
  height: 20px;
  display: block;
}
.header-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  border-radius: 999px;
  border: 2px solid var(--black);
  box-sizing: content-box;
  transition: transform 0.3s var(--ease);
}
.header-cart--bumped .header-cart-count {
  animation: cartBump 0.5s var(--ease);
}
@keyframes cartBump {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.4); background: var(--gold); }
  100% { transform: scale(1); }
}

.nav-cta {
  display: inline-flex;
  margin-left: 0;
  margin-right: 0.75rem;
  padding: 0.55rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 1.2px;
  white-space: nowrap;
}

/* Burger */
.burger {
  display: flex; flex-direction: column; gap: 6px;
  background: none; border: none; padding: 6px;
  position: relative;
  width: 32px;
}
.burger span {
  display: block; width: 100%; height: 1.5px;
  background: var(--white); transition: all 0.4s var(--ease);
  transform-origin: center;
}
.burger span:nth-child(2) { width: 60%; margin-left: auto; }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; width: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav — fullscreen overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  padding: 6rem 2rem 2rem;
  overflow-y: auto;
  z-index: 999;
}
.nav-mobile.open {
  display: flex; flex-direction: column; gap: 0;
  animation: fadeIn 0.4s var(--ease);
}
.nav-mobile a {
  display: block;
  font-family: var(--font-display);
  color: var(--text-muted);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.nav-mobile a:hover {
  color: var(--white);
  padding-left: 1rem;
  border-bottom-color: var(--red);
}
.nav-mobile .btn {
  margin-top: 2rem;
  text-align: center;
  font-size: 1rem;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ========================================
   HERO — Cinematic
   ======================================== */

.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

/* Animated grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(rgba(192,57,43,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,57,43,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
}

@keyframes gridMove {
  0% { transform: translate(0,0); }
  100% { transform: translate(80px,80px); }
}

/* Radial glow */
.hero::after {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(192,57,43,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 0 3rem;
}

/* Seals */
.hero-seals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.seal-wrapper {
  position: relative;
  width: 110px; height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seal-wrapper img {
  width: 95px; height: 95px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  animation: sealFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 0 20px var(--red-glow));
}

.seal-wrapper:nth-child(2) img {
  animation-delay: -2.5s;
  filter: drop-shadow(0 0 20px var(--gold-glow));
}

.seal-wrapper::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 105px; height: 105px;
  transform: translate(-50%, -50%);
  border: 1.5px solid var(--red);
  border-radius: 50%;
  animation: pulseRing 3s ease-out infinite;
  z-index: 1;
}

.seal-wrapper:nth-child(2)::after {
  border-color: var(--gold);
  animation-delay: -1.5s;
}

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

@keyframes pulseRing {
  0% { width: 95px; height: 95px; opacity: 0.7; }
  100% { width: 170px; height: 170px; opacity: 0; }
}

/* Hero label */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.hero-label::before,
.hero-label::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--red);
}

/* Hero heading — cinematic */
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero h1 .line {
  display: block;
  overflow: hidden;
}

.hero h1 .line-inner {
  display: block;
  animation: lineReveal 1s var(--ease) forwards;
  animation-delay: var(--delay, 0.3s);
  transform: translateY(110%);
}

@keyframes lineReveal {
  to { transform: translateY(0); }
}

.hl-yellow { color: var(--yellow); }
.hl-red { color: var(--red); }
.hl-gold { color: var(--gold); }
.hl-italic {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.85;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(20px); }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.2s forwards;
}

.hero-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.9rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.4s forwards;
}
.hero-phone a {
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.hero-phone a:hover { text-decoration: underline; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 2s forwards;
}

.scroll-indicator span {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.scroll-line {
  width: 1px; height: 50px;
  background: var(--border-light);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 50%;
  background: var(--red);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 150%; }
}

/* ========================================
   STATS — Horizontal ticker
   ======================================== */

.stats-bar {
  background: var(--black);
  border-top: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, transparent 10%, transparent 90%, var(--black) 100%);
  z-index: 2;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%;
  width: 1px;
  background: rgba(192,57,43,0.3);
}
.stat-item:last-child::after { display: none; }

.stat-value {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 2px;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ========================================
   SECTION SYSTEM
   ======================================== */

section { padding: 6rem 0; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--red);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Red horizontal rule */
.hr-red {
  width: 60px;
  height: 2px;
  background: var(--red);
  border: none;
  margin: 2rem auto;
}

/* ========================================
   LEPINE AWARD — Premium
   ======================================== */

.lepine-section {
  background: var(--black-mid);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.lepine-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.lepine-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  text-align: center;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 3rem;
}

.lepine-medal {
  width: 130px; height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.3));
  animation: sealFloat 5s ease-in-out infinite;
}

.lepine-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.lepine-content p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
}

.lepine-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 1.25rem;
}

/* ========================================
   BENEFITS — Premium cards with hover
   ======================================== */

.benefits { background: var(--black); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: 28px;
  overflow: hidden;
}

.benefit-card {
  background: var(--black-card);
  padding: 2.5rem;
  border-radius: 24px;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  background: var(--black-soft);
}

.benefit-card.is-distinction {
  border-left: 3px solid var(--gold);
}
.benefit-card.is-distinction::before {
  background: var(--gold);
}

.benefit-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: 16px;
  background: rgba(192,57,43,0.06);
  transition: all var(--transition);
}

.benefit-card:hover .benefit-icon {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  color: var(--white);
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========================================
   HOW IT WORKS — Timeline
   ======================================== */

.how-it-works {
  background: var(--black-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

/* Vertical line connector */
.steps-grid::before {
  content: '';
  position: absolute;
  left: 24px; top: 0; bottom: 0;
  width: 1px;
  background: var(--border-light);
}

.step-card {
  position: relative;
  background: var(--black);
  padding: 2rem 2rem 2rem 4.5rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: all var(--transition);
}

.step-card:hover {
  border-color: var(--red);
  transform: translateX(8px);
}

.step-number {
  position: absolute;
  left: -1px; top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 2;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.step-tip {
  margin-top: 2rem;
  padding: 1.75rem;
  background: rgba(192,57,43,0.04);
  border: 1px solid rgba(192,57,43,0.15);
  border-left: 3px solid var(--red);
  border-radius: 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.step-tip strong { color: var(--yellow); }
.step-tip-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(201,168,76,0.35);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.step-tip-link:hover {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

/* ========================================
   ABOUT — Split layout
   ======================================== */

.about { background: var(--black); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 28px;
  transition: transform 0.8s var(--ease);
}

.about-image-wrapper:hover img {
  transform: scale(1.02);
}

/* Decorative corner */
.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: 60px; height: 60px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
  pointer-events: none;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 60px; height: 60px;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
  pointer-events: none;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-content p strong { color: var(--white); }

.about-highlight {
  background: var(--black-mid);
  color: var(--white);
  padding: 2rem;
  border-left: 3px solid var(--gold);
  border-radius: 24px;
  margin: 2rem 0;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 500;
  font-family: var(--font-accent);
  font-style: italic;
}

/* ========================================
   VIDEO — Cinematic frame
   ======================================== */

.video-section {
  background: var(--black-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 56.25%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ========================================
   CTA — Premium
   ======================================== */

.cta-section {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.cta-contact {
  font-size: 0.9rem;
  color: var(--text-dim);
}
.cta-contact a {
  color: var(--yellow);
  font-weight: 600;
}
.cta-contact a:hover { text-decoration: underline; }

/* ========================================
   DISTRIBUTORS MARQUEE — Scrolling band
   ======================================== */

.distributors-marquee {
  position: relative;
  background: linear-gradient(180deg, var(--black) 0%, var(--black-mid) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0 0.25rem;
  overflow: hidden;
}
/* Force-override the inline fallback padding in header.php so the gap stays tight at every breakpoint */
.distributors-marquee--top { padding: 3rem 0 0.25rem !important; }

.distributors-marquee::before,
.distributors-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.distributors-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--black) 0%, transparent 100%);
}
.distributors-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--black) 0%, transparent 100%);
}

.distributors-title {
  text-align: center;
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.distributors-title span {
  color: var(--gold);
  font-weight: 700;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-align-items: center;
          align-items: center;
  width: 100%; /* JS will set this to the real content width */
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  will-change: transform;
}

.marquee-item {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  width: 180px;
  min-width: 180px;
  height: 100px;
  margin-right: 1.5rem;
  background: #ffffff;
  border-radius: 14px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.04);
  -webkit-transition: -webkit-transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
          transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-sizing: border-box;
}
.marquee-item:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(201,168,76,0.25), 0 0 0 1px var(--gold);
}
/* Stronger hover for clickable cards — make the affordance obvious */
a.marquee-item--link:hover {
  -webkit-transform: translateY(-6px) !important;
          transform: translateY(-6px) !important;
  box-shadow: 0 14px 36px rgba(201,168,76,0.4), 0 0 0 2px var(--gold) !important;
}

.marquee-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

@media (max-width: 768px) {
  .distributors-marquee,
  .distributors-marquee--top {
    padding: 1.5rem 0 0.25rem !important;
  }
  .distributors-title {
    font-size: 0.7rem !important;
    margin: 0 0 1rem !important;
  }
  .marquee-item {
    width: 140px;
    min-width: 140px;
    height: 80px;
    margin-right: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
  }
  .distributors-marquee::before,
  .distributors-marquee::after {
    width: 60px;
  }
}

/* ========================================
   FOOTER — Premium
   ======================================== */

.site-footer {
  background: var(--black-mid);
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo { margin-bottom: 1.25rem; }

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 320px;
}

.footer-links h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 2px;
  background: var(--red);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: all var(--transition);
  display: inline-block;
}
.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}
.footer-contact-item a { color: var(--text-muted); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ========================================
   PRODUCT GRID (Boutique)
   ======================================== */

.page-header {
  background: var(--black);
  color: var(--white);
  padding: 8rem 0 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.page-header p,
.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-padding { padding: 4rem 0; }
.documentation-section { padding: 4rem 0; }

.doc-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 3rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

/* ── Gold orbit wrapper ── */
.product-card-wrapper {
  position: relative;
  border-radius: 28px;
  padding: 3px;
  background: var(--black);
  overflow: hidden;
}

.product-card-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    var(--gold) 6%,
    var(--gold-light) 10%,
    var(--yellow) 14%,
    transparent 22%,
    transparent 35%,
    rgba(192,57,43,0.7) 42%,
    var(--red-light) 48%,
    rgba(192,57,43,0.7) 54%,
    transparent 62%,
    transparent 75%,
    var(--gold) 82%,
    var(--gold-light) 88%,
    var(--yellow) 92%,
    transparent 100%
  );
  animation: goldOrbit 3.5s linear infinite;
  z-index: 0;
}

.product-card-wrapper::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--black-card);
  border-radius: 25px;
  z-index: 1;
}

@keyframes goldOrbit {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Staggered start for hypnotic effect */
.product-card-wrapper:nth-child(2n)::before { animation-delay: -1s; }
.product-card-wrapper:nth-child(3n)::before { animation-delay: -2s; }
.product-card-wrapper:nth-child(4n+1)::before { animation-delay: -0.5s; }
.product-card-wrapper:nth-child(5n+2)::before { animation-delay: -3s; }
.product-card-wrapper:nth-child(6n+3)::before { animation-delay: -1.5s; }

.product-card-wrapper:hover::before {
  animation-duration: 2s;
  filter: brightness(1.6) drop-shadow(0 0 20px rgba(201,168,76,0.5));
}

.product-card-wrapper:hover {
  transform: translateY(-4px);
  transition: transform 0.4s var(--ease);
}

.product-card {
  background: var(--black-card);
  overflow: hidden;
  border: none;
  border-radius: 26px;
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.product-card:hover {
  z-index: 2;
  box-shadow: 0 16px 48px rgba(201,168,76,0.15);
}

.product-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--black);
  flex-shrink: 0;
}

.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-card-body {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.product-price .ht {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-dim);
}

/* ========================================
   PRODUCT DETAIL
   ======================================== */

.product-detail { padding-top: 7rem; }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.product-gallery {
  position: relative;
}

.product-gallery img {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 28px;
}

.product-gallery::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px;
  width: 50px; height: 50px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
  pointer-events: none;
}

.product-info h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.product-info .product-price {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}

.product-info .product-price-note {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.product-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.product-specs {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 2rem;
  border-radius: 20px;
  overflow: hidden;
}

.product-specs tr {
  border-bottom: 1px solid var(--border);
}

.product-specs th,
.product-specs td {
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.95rem;
}

.product-specs th {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  width: 40%;
  background: var(--black-mid);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.product-specs td { color: var(--text-muted); }

/* ========================================
   FORM (Contact) — Premium
   ======================================== */

.form-section { padding-top: 7rem; }

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

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

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.form-group:focus-within label {
  color: var(--red);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--black-mid);
  color: var(--white);
  transition: all var(--transition);
}

.form-group textarea {
  border-radius: 24px;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}

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

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

.contact-info-side {
  background: var(--black-card);
  color: var(--white);
  padding: 3rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  position: relative;
}

.contact-info-side h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-info-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-info-item a { color: var(--yellow); }
.contact-info-item a:hover { text-decoration: underline; }

/* ========================================
   TESTIMONIALS PAGE
   ======================================== */

.testimonials-section {
  padding: 4rem 0 6rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(201,168,76,0.08);
  transform: translateY(-4px);
}

.testimonial-stars {
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--off-white);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Testimonial submit section */
.testimonial-submit-section {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 3rem;
}

.testimonial-submit-section h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.testimonial-submit-intro {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* Star rating input */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.25rem;
}

.star-rating input {
  display: none;
}

.star-rating label {
  font-size: 2rem;
  color: var(--border-light);
  cursor: pointer;
  transition: color 0.2s;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: var(--gold);
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

/* ========================================
   INTERVENTIONS PAGE
   ======================================== */

.interventions-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Urgence banner */
.urgence-section {
  padding: 0 0 4rem;
  margin-top: -2rem;
}

.urgence-banner {
  background: linear-gradient(135deg, rgba(192,57,43,0.12) 0%, rgba(192,57,43,0.04) 100%);
  border: 1px solid rgba(192,57,43,0.3);
  border-radius: 28px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.urgence-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.urgence-content p {
  color: var(--text-muted);
  max-width: 500px;
}

.urgence-banner .btn small {
  font-size: 0.7rem;
  opacity: 0.8;
  letter-spacing: 1px;
}

/* Services grid */
.interventions-services {
  padding: 4rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px var(--red-glow);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Avantages */
.interventions-avantages {
  padding: 4rem 0;
  background: var(--black-mid);
}

.avantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.avantage-item {
  padding: 2rem;
  border-left: 3px solid var(--red);
  background: var(--black-card);
  border-radius: 0 24px 24px 0;
}

.avantage-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  opacity: 0.3;
  display: block;
  margin-bottom: 0.5rem;
}

.avantage-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.avantage-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Zone d'intervention */
.interventions-zone {
  padding: 4rem 0;
}

.zone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.zone-column {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem 2.5rem;
}

.zone-column h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.zone-column ul {
  list-style: none;
}

.zone-column li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-left: 1rem;
  position: relative;
}

.zone-column li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  transform: translateY(-50%);
}

.zone-column li:last-child {
  border-bottom: none;
}

.zone-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.intervention-urgence p {
  color: var(--red-light) !important;
}

/* ========================================
   DOCUMENTATION
   ======================================== */

.doc-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--black-card);
  transition: all var(--transition);
  position: relative;
}

.doc-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transition: transform 0.4s var(--ease);
}

.doc-item:hover::before { transform: scaleY(1); }

.doc-item:hover {
  background: var(--black-soft);
  padding-left: 2.25rem;
}

.doc-icon { font-size: 1.5rem; flex-shrink: 0; }

.doc-item-text h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.doc-item-text p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-page { padding-top: 7rem; }

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  color: var(--white);
  border-left: 3px solid var(--red);
  padding-left: 1rem;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-content ul { list-style: none; padding-left: 0; margin-bottom: 1rem; }

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.75em;
  width: 6px; height: 6px;
  background: var(--red);
}

/* ========================================
   RESPONSIVE — Tablet (640px)
   ======================================== */

@media (min-width: 640px) {
  .hero-inner { padding: 0.25rem 0 4rem; }
  .seal-wrapper { width: 180px; height: 180px; }
  .seal-wrapper img { width: 160px; height: 160px; }
  .hero-seals { gap: 3.5rem; margin-bottom: 3rem; }

  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

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

  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .avantages-grid { grid-template-columns: repeat(2, 1fr); }
  .zone-grid { grid-template-columns: 1fr 1fr; }
}

/* ========================================
   RESPONSIVE — Desktop (1024px)
   ======================================== */

@media (min-width: 1024px) {
  .burger { display: none; }
  .nav-desktop { display: block; }
  .nav-cta {
    display: inline-flex;
    margin-left: 0;
    margin-right: 0;
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .hero { min-height: auto; }
  .hero-inner { padding: 0.5rem 0 6rem; }
  .seal-wrapper { width: 220px; height: 220px; }
  .seal-wrapper img { width: 200px; height: 200px; }
  .hero-seals { gap: 4rem; }

  .benefits-grid { grid-template-columns: repeat(3, 1fr); }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .steps-grid::before { display: none; }
  .step-card { padding: 2rem; }
  .step-number {
    position: relative;
    left: auto; top: auto;
    margin-bottom: 1.25rem;
  }

  .about-inner { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-detail-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr 400px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }

  .lepine-inner { gap: 4rem; text-align: left; }
  .lepine-medal { width: 150px; height: 150px; }

  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .avantages-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1280px) {
  .benefits-grid { grid-template-columns: repeat(5, 1fr); }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ========================================
   UTILITY ANIMATIONS
   ======================================== */

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.text-shimmer {
  background: linear-gradient(90deg, var(--white) 0%, var(--gold) 25%, var(--white) 50%, var(--gold) 75%, var(--white) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

/* ========================================
   BREVET DÉPOSÉ — Trust Elements
   ======================================== */

/* Brevet badge on product page */
.brevet-badge {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(192,57,43,0.06);
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: 24px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  transition: all var(--transition);
}

.brevet-badge:hover {
  border-color: var(--red);
  background: rgba(192,57,43,0.1);
}

.brevet-badge img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
  animation: sealFloat 5s ease-in-out infinite;
}

.brevet-badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.brevet-badge-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
}

.brevet-badge-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Brevet banner on boutique */
.brevet-banner {
  background: var(--black-mid);
  border: 1px solid rgba(192,57,43,0.2);
  border-left: 3px solid var(--red);
  border-radius: 24px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.brevet-banner img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px var(--red-glow));
}

.brevet-banner-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.brevet-banner-text strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

.brevet-banner-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Footer trust seals */
.footer-seals {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-seal {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.6;
  transition: all var(--transition);
  filter: grayscale(0.3);
}

.footer-seal:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.1);
}

.footer-seal-link {
  display: inline-flex;
  line-height: 0;
  border-radius: 50%;
  transition: transform 0.3s var(--ease);
}
.footer-seal-link:hover .footer-seal {
  opacity: 1;
  filter: grayscale(0) drop-shadow(0 0 12px rgba(201,168,76,0.5));
  transform: scale(1.15);
}

/* CTA section trust strip */
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cta-trust-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--red-glow));
}

.cta-trust-item span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Watermark brevet on product page */
.product-brevet-watermark {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}
