/* ==========================================================================
   MEILLEURVENDEUR — Studio Equipment Rental
   Main Stylesheet — Dark Cinematic Theme
   ========================================================================== */

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
  /* Backgrounds */
  --bg-primary:    #0D0D0D;
  --bg-secondary:  #1A1A1A;
  --bg-tertiary:   #121212;
  --bg-card:       #1E1E1E;

  /* Accents */
  --accent:        #FF6B1A;
  --accent-hover:  #FF8532;
  --accent-dim:    rgba(255, 107, 26, 0.12);
  --accent-glow:   0 0 32px rgba(255, 107, 26, 0.35);

  /* Gradients */
  --grad-premium:  linear-gradient(135deg, #FF8A3D 0%, #FFD93D 100%);
  --grad-tech:     linear-gradient(135deg, #2E9EFF 0%, #00E5FF 100%);
  --grad-creative: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
  --grad-accent:   linear-gradient(135deg, #FF6B1A 0%, #FF8532 100%);

  /* Text */
  --text-primary:   #FFFFFF;
  --text-secondary: #B8B8B8;
  --text-tertiary:  #6E6E6E;

  /* Borders */
  --border:        #2A2A2A;
  --border-hover:  #FF6B1A;

  /* Status */
  --success:       #00C896;
  --warning:       #FFB84D;
  --error:         #FF4D4D;

  /* Radii */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  /* Shadows */
  --shadow-card:     0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-accent:   0 8px 24px rgba(255, 107, 26, 0.3);

  /* Typography */
  --font-heading: 'Satoshi', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Layout */
  --container:    1320px;
  --section-v:    100px;
  --section-v-sm: 64px;

  /* Transitions */
  --t-fast:   150ms ease;
  --t-base:   250ms ease;
  --t-slow:   400ms ease;
  --t-spring: 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: clamp(42px, 6vw, 72px); }
h2 { font-size: clamp(36px, 4.5vw, 54px); }
h3 { font-size: clamp(24px, 2.8vw, 32px); }
h4 { font-size: clamp(20px, 2.2vw, 26px); }
h5 { font-size: 20px; }
h6 { font-size: 17px; }

p { color: var(--text-secondary); }

.text-accent { color: var(--accent); }
.text-secondary { color: var(--text-secondary); }
.text-tertiary { color: var(--text-tertiary); }
.text-white { color: var(--text-primary); }
.text-success { color: var(--success); }
.text-mono { font-family: var(--font-mono); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

/* ==========================================================================
   4. LAYOUT UTILITIES
   ========================================================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

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

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

.section-header {
  margin-bottom: 56px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-sub {
  margin: 0 auto;
}

/* Grid utilities */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }

/* Flex utilities */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-40 { gap: 40px; }

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--t-base);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn i, .btn .ph {
  font-size: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline-accent:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: transparent;
  padding: 14px 0;
}
.btn-ghost:hover {
  color: var(--text-primary);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* ==========================================================================
   6. NAVIGATION / HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  transition: background var(--t-base), backdrop-filter var(--t-base);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--accent);
}

.nav-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  margin-left: 2px;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--t-fast);
}
.nav-hamburger:hover { background: rgba(255,255,255,0.08); }

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--t-base);
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 24px 40px 32px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform var(--t-base), opacity var(--t-base);
}

.nav-mobile.is-open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile a {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t-fast);
}

.nav-mobile a:hover { color: var(--accent); }
.nav-mobile .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ==========================================================================
   7. HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 13, 0.30) 0%,
    rgba(13, 13, 13, 0.50) 40%,
    rgba(13, 13, 13, 0.75) 70%,
    rgba(13, 13, 13, 0.95) 100%
  );
}

/* Subtle grain overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  max-width: 820px;
}

.hero-pretitle {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-pretitle::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero h1 {
  margin-bottom: 24px;
  font-weight: 800;
  color: var(--text-primary);
}

.hero-sub {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 640px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero stats bar */
.hero-stats {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-bottom: 48px;
}

.hero-stats-inner {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 40px 0 0;
  flex: 1;
}

.hero-stat:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  margin-right: 40px;
}

.hero-stat i {
  font-size: 28px;
  color: var(--accent);
  flex-shrink: 0;
}

.hero-stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.3;
}

.hero-stat-value {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  display: block;
  margin-bottom: 2px;
}

/* Hero wrapper to stack content + stats */
.hero-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  padding-top: 0;
}

/* ==========================================================================
   8. SECTION: AVANTAGES
   ========================================================================== */
.avantages { background: var(--bg-secondary); }

.advantage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color var(--t-base), transform var(--t-spring), box-shadow var(--t-base);
  box-shadow: var(--shadow-card);
}

.advantage-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated), 0 0 0 1px var(--accent-dim);
}

.advantage-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background var(--t-base);
}

.advantage-card:hover .advantage-icon {
  background: rgba(255, 107, 26, 0.2);
}

.advantage-icon i {
  font-size: 26px;
  color: var(--accent);
}

.advantage-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.advantage-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   9. SECTION: CATALOGUE / TABS
   ========================================================================== */
.catalogue { background: var(--bg-primary); }

.cat-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 1px;
}

.cat-tabs::-webkit-scrollbar { display: none; }

.cat-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-tertiary);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color var(--t-fast), border-color var(--t-base);
  margin-bottom: -1px;
  white-space: nowrap;
  border-radius: 0;
}

.cat-tab i {
  font-size: 16px;
}

.cat-tab:hover { color: var(--text-secondary); }

.cat-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.cat-panel { display: none; }
.cat-panel.active { display: block; }

/* Product card */
.product-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-spring), box-shadow var(--t-base);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.product-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.product-card:hover .product-img img {
  transform: scale(1.04);
}

.product-ref {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-tertiary);
  background: rgba(13, 13, 13, 0.8);
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.product-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.product-desc {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.product-price {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--accent);
}

.product-price-value {
  font-size: 20px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.product-price-unit {
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-devis {
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(255, 107, 26, 0.25);
  cursor: pointer;
  transition: all var(--t-fast);
  font-weight: 600;
  white-space: nowrap;
}

.btn-devis:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Catalogue CTA */
.catalogue-cta {
  text-align: center;
  margin-top: 48px;
}

/* ==========================================================================
   10. SECTION: PACKS
   ========================================================================== */
.packs-section { background: var(--bg-secondary); }

.pack-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--t-spring), box-shadow var(--t-base);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pack-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}

.pack-gradient-bar {
  height: 4px;
  width: 100%;
  flex-shrink: 0;
}

.pack-tech .pack-gradient-bar   { background: var(--grad-tech); }
.pack-premium .pack-gradient-bar { background: var(--grad-premium); }
.pack-creative .pack-gradient-bar { background: var(--grad-creative); }

.pack-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 5px 10px;
  border-radius: 20px;
}

.pack-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}

.pack-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pack-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(30,30,30,0.9) 100%);
}

.pack-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pack-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}

.pack-tech .pack-tag   { color: #2E9EFF; }
.pack-premium .pack-tag { color: #FF8A3D; }
.pack-creative .pack-tag { color: #E91E63; }

.pack-name {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.pack-price {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}

.pack-price-ttc {
  font-size: 12px;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  margin-bottom: 24px;
}

.pack-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}

.pack-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pack-item-qty {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 24px;
  padding-top: 1px;
}

.pack-ideal {
  font-size: 13px;
  color: var(--text-tertiary);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--border);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pack-tech .pack-ideal   { border-left-color: #2E9EFF; }
.pack-premium .pack-ideal { border-left-color: #FF8A3D; }
.pack-creative .pack-ideal { border-left-color: #E91E63; }

.pack-footer {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.packs-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 40px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.packs-disclaimer i {
  color: var(--warning);
  margin-right: 6px;
}

/* ==========================================================================
   11. SECTION: RÉALISATIONS (Masonry)
   ========================================================================== */
.realisations-section { background: var(--bg-primary); }

.real-grid {
  columns: 3;
  gap: 20px;
}

.real-card {
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  cursor: pointer;
  background: #111;
}

.real-card img {
  width: 100%;
  display: block;
  transition: transform var(--t-slow);
}

.real-card:hover img {
  transform: scale(1.04);
}

.real-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(13, 13, 13, 0.92) 100%
  );
  opacity: 0;
  transition: opacity var(--t-base);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.real-card:hover .real-overlay {
  opacity: 1;
}

.real-type {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.real-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.real-cta-wrap {
  text-align: center;
  margin-top: 48px;
}

/* ==========================================================================
   12. SECTION: COMMENT ÇA MARCHE (Process Steps)
   ========================================================================== */
.process-section { background: var(--bg-secondary); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0,
    var(--accent) 8px,
    transparent 8px,
    transparent 20px
  );
  z-index: 0;
  opacity: 0.5;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 36px;
  position: relative;
  z-index: 1;
  transition: border-color var(--t-base), transform var(--t-spring);
}

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

.process-num {
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
  opacity: 0.9;
}

.process-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.process-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   13. SECTION: TÉMOIGNAGES (Carousel)
   ========================================================================== */
.testimonials-section { background: var(--bg-primary); }

.carousel-wrap {
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
}

.carousel-slides {
  display: flex;
  gap: 24px;
  transition: transform var(--t-spring);
  will-change: transform;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  flex: 0 0 calc(33.333% - 16px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-card);
  transition: border-color var(--t-base);
  min-width: 0;
}

.testimonial-card:hover {
  border-color: rgba(255, 107, 26, 0.3);
}

.testi-stars {
  display: flex;
  gap: 4px;
}

.testi-stars i {
  color: var(--accent);
  font-size: 16px;
}

.testi-quote {
  font-size: 15px;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.75;
  flex: 1;
  position: relative;
  padding-top: 4px;
}

.testi-quote::before {
  content: '\201C';
  font-size: 48px;
  color: var(--accent);
  opacity: 0.3;
  font-family: Georgia, serif;
  position: absolute;
  top: -12px;
  left: -4px;
  line-height: 1;
  font-style: normal;
}

.testi-author {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.testi-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.testi-role {
  font-size: 12px;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
}

/* Carousel controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast);
  font-size: 20px;
}

.carousel-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--t-fast);
  border: none;
}

.carousel-dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 4px;
}

/* ==========================================================================
   14. SECTION: CONTACT & FORMULAIRE
   ========================================================================== */
.contact-section { background: var(--bg-secondary); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 32px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon i {
  font-size: 20px;
  color: var(--accent);
}

.contact-item-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 4px;
  font-family: var(--font-mono);
}

.contact-item-value {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.5;
}

.contact-item-value a {
  color: var(--text-primary);
  transition: color var(--t-fast);
}

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

/* Contact form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-elevated);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-group label .required {
  color: var(--accent);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  color: var(--text-primary);
  font-size: 15px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-control::placeholder {
  color: var(--text-tertiary);
}

select.form-control {
  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'%3E%3Cpath fill='%236E6E6E' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

select.form-control option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-check label {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.6;
  cursor: pointer;
}

.form-check a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Honeypot */
.form-hp { display: none !important; }

/* Form success/error messages */
.form-alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 10px;
}

.form-alert.success {
  background: rgba(0, 200, 150, 0.12);
  border: 1px solid rgba(0, 200, 150, 0.3);
  color: var(--success);
  display: flex;
}

.form-alert.error {
  background: rgba(255, 77, 77, 0.1);
  border: 1px solid rgba(255, 77, 77, 0.25);
  color: var(--error);
  display: flex;
}

/* ==========================================================================
   15. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  display: block;
}

.footer-baseline {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--accent); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 15px;
  flex-shrink: 0;
}

.footer-band {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-band p {
  font-size: 12px;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  line-height: 1.6;
}

/* ==========================================================================
   16. COOKIE BANNER
   ========================================================================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-secondary);
  border-top: 1px solid var(--accent);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform var(--t-spring);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.5);
}

#cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cookie-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Cookie modal */
#cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}

#cookie-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-elevated);
  transform: translateY(20px);
  transition: transform var(--t-spring);
}

#cookie-modal.is-visible .cookie-modal-box {
  transform: translateY(0);
}

.cookie-modal-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.cookie-modal-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cookie-category:last-of-type { border-bottom: none; margin-bottom: 24px; }

.cookie-cat-info h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cookie-cat-info p {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

/* Toggle switch */
.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-track {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--border);
  border-radius: 34px;
  transition: background var(--t-fast);
}

.toggle-track::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--t-fast);
}

.toggle input:checked + .toggle-track {
  background: var(--accent);
}

.toggle input:checked + .toggle-track::before {
  transform: translateX(20px);
}

.toggle input:disabled + .toggle-track {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ==========================================================================
   17. PAGE HERO COMPACT (inner pages)
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-tertiary) 0%, transparent 40%, var(--bg-tertiary) 100%);
}

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

.page-hero h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 16px; }
.page-hero .section-sub { font-size: 17px; }

/* ==========================================================================
   18. EQUIPEMENT PAGE — Filter Bar
   ========================================================================== */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-bar-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  white-space: nowrap;
}

.filter-select {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  color: var(--text-secondary);
  font-size: 13px;
  cursor: pointer;
  transition: border-color var(--t-fast);
  outline: none;
}

.filter-select:focus { border-color: var(--accent); }

.filter-count {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-tertiary);
}

/* Équipement CTA encart */
.equip-not-found {
  background: var(--accent-dim);
  border: 1px solid rgba(255, 107, 26, 0.25);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 64px;
}

.equip-not-found h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.equip-not-found p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 480px;
}

/* ==========================================================================
   19. PACKS PAGE — Comparison Table
   ========================================================================== */
.comparison-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.comparison-table th {
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.comparison-table th:first-child {
  color: var(--text-tertiary);
  font-weight: 600;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table th.col-tech   { color: #2E9EFF; }
.comparison-table th.col-standard { color: #FF8A3D; }
.comparison-table th.col-creative { color: #E91E63; }

.comparison-table td {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  background: var(--bg-tertiary);
  vertical-align: top;
  line-height: 1.5;
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table td:first-child {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--bg-secondary);
}

.comparison-table .price-row td {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  background: var(--bg-card);
}

/* ==========================================================================
   20. PACKS PAGE — Custom Pack Form
   ========================================================================== */
.custom-pack-section {
  background: var(--bg-secondary);
}

.custom-pack-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.custom-pack-copy h2 {
  margin-bottom: 16px;
}

.custom-pack-copy p {
  margin-bottom: 24px;
}

.custom-pack-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.custom-pack-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.custom-pack-feature i {
  color: var(--success);
  font-size: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   21. RÉALISATIONS PAGE
   ========================================================================== */
.real-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.real-filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
}

.real-filter-btn:hover,
.real-filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 860px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--t-fast);
}

.faq-item.is-open { border-color: rgba(255, 107, 26, 0.3); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--t-fast);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover { color: var(--accent); }
.faq-item.is-open .faq-question { color: var(--accent); }

.faq-icon {
  font-size: 20px;
  flex-shrink: 0;
  color: var(--text-tertiary);
  transition: transform var(--t-base);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ==========================================================================
   23. LEGAL PAGES
   ========================================================================== */
.legal-page { background: var(--bg-tertiary); }

.legal-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

.legal-content {
  padding: 80px 0;
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 800;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }

.legal-content li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 24px 0;
}

.legal-info-box p {
  margin-bottom: 8px;
  font-size: 14px;
}

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

.legal-info-box strong {
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================================================
   24. CONTACT PAGE — Maps
   ========================================================================== */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 32px;
}

.map-wrap iframe {
  width: 100%;
  height: 300px;
  display: block;
  filter: invert(90%) hue-rotate(180deg);
}

/* Other channels */
.other-channels {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-top: 48px;
}

.other-channels h3 {
  margin-bottom: 28px;
  font-size: 22px;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.channel-card {
  padding: 24px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: border-color var(--t-base);
}

.channel-card:hover { border-color: var(--accent); }

.channel-card i {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.channel-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.channel-card p {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ==========================================================================
   25. STATS COUNTER
   ========================================================================== */
.stats-section { background: var(--bg-secondary); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.stat-item {
  background: var(--bg-card);
  padding: 36px 24px;
  text-align: center;
}

.stat-value {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.4;
}

/* ==========================================================================
   26. SCROLL ANIMATIONS
   ========================================================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-spring), transform var(--t-spring);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="1"] { transition-delay: 100ms; }
[data-animate-delay="2"] { transition-delay: 200ms; }
[data-animate-delay="3"] { transition-delay: 300ms; }
[data-animate-delay="4"] { transition-delay: 400ms; }
[data-animate-delay="5"] { transition-delay: 500ms; }
[data-animate-delay="6"] { transition-delay: 600ms; }

/* ==========================================================================
   27. CTA SECTION (Generic)
   ========================================================================== */
.cta-section {
  background: var(--bg-secondary);
}

.cta-box {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 107, 26, 0.08) 100%);
  border: 1px solid rgba(255, 107, 26, 0.2);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: var(--grad-accent);
  border-radius: 0 0 4px 4px;
}

.cta-box h2 { margin-bottom: 16px; }

.cta-box p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   28. PROCESS PAGE — Extended
   ========================================================================== */
.process-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.process-detail:last-child { border-bottom: none; }

.process-detail.reverse { direction: rtl; }
.process-detail.reverse > * { direction: ltr; }

.process-detail-num {
  font-family: var(--font-mono);
  font-size: 80px;
  font-weight: 700;
  color: rgba(255, 107, 26, 0.15);
  line-height: 1;
  margin-bottom: -20px;
}

.process-detail h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.process-detail p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.process-detail-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
}

.process-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Conditions résumé box */
.conditions-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 40px;
}

.conditions-box h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

.conditions-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.conditions-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.conditions-list li i {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   29. MISC UTILITIES
   ========================================================================== */
.hidden { display: none !important; }

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

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid;
}

.badge-accent {
  color: var(--accent);
  background: var(--accent-dim);
  border-color: rgba(255, 107, 26, 0.25);
}

.badge-success {
  color: var(--success);
  background: rgba(0, 200, 150, 0.1);
  border-color: rgba(0, 200, 150, 0.25);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 20px;
  font-family: var(--font-mono);
}

.breadcrumb a {
  color: var(--text-tertiary);
  transition: color var(--t-fast);
}

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

.breadcrumb i { font-size: 14px; }

/* ==========================================================================
   30. RESPONSIVE
   ========================================================================== */

/* 1200px */
@media (max-width: 1200px) {
  :root {
    --section-v: 80px;
    --container: 100%;
  }
  .container { padding: 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .custom-pack-box { padding: 40px; gap: 40px; }
}

/* 992px — Tablet */
@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .real-grid { columns: 2; }
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .channels-grid { grid-template-columns: 1fr 1fr; }
  .hero-stat:not(:last-child) { padding-right: 24px; margin-right: 24px; }
  .custom-pack-box { grid-template-columns: 1fr; }
  .comparison-table { font-size: 13px; }
  .process-detail { grid-template-columns: 1fr; gap: 32px; }
  .process-detail.reverse { direction: ltr; }
}

/* 768px — Mobile */
@media (max-width: 768px) {
  html { font-size: 16px; }
  :root {
    --section-v: 64px;
    --section-v-sm: 48px;
  }
  .container { padding: 0 20px; }

  /* Nav */
  .nav-links, .nav-cta .btn { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { gap: 8px; }

  /* Hero */
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats-inner { flex-direction: column; gap: 20px; }
  .hero-stat:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0 0 20px; margin: 0; padding-right: 0; }
  .hero-stat { padding: 0; }

  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .real-grid { columns: 1; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .channels-grid { grid-template-columns: 1fr; }

  /* Carousel */
  .testimonial-card { flex: 0 0 100%; }

  /* Typography */
  .section-header { margin-bottom: 36px; }
  .cta-box { padding: 40px 24px; }
  .cta-box p { font-size: 16px; }

  /* Pack */
  .pack-body { padding: 20px; }
  .contact-form-wrap { padding: 24px 20px; }
  .equip-not-found { flex-direction: column; text-align: center; }

  /* Packs comparison */
  .comparison-table th, .comparison-table td { padding: 12px 16px; }

  /* Footer */
  .footer-band { flex-direction: column; text-align: center; }

  /* Legal */
  .legal-container { padding: 0 20px; }
}

/* 576px — Small mobile */
@media (max-width: 576px) {
  .hero-pretitle { font-size: 10px; }
  .pack-card { border-radius: var(--radius-lg); }
  .cookie-inner { flex-direction: column; }
  .cookie-actions { flex-direction: column; width: 100%; }
  .cookie-actions .btn { width: 100%; justify-content: center; }
  .cat-tab { padding: 10px 14px; font-size: 13px; }
}
