/* ═══════════════════════════════════════════════════════════════
   LUMIÈRA STUDIO — main.css
   Broadcast-grade dark aesthetic
   Design: Studio Black · Tungsten Orange · Three gradient systems
   Fonts: Satoshi (headings) · Inter (body) · JetBrains Mono (mono)
═══════════════════════════════════════════════════════════════ */

/* ── 1. CSS Variables ─────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-0:       #0D0D0D;
  --bg-1:       #1A1A1A;
  --bg-card:    #121212;

  /* Accents */
  --accent:     #FF6B1A;
  --accent-h:   #FF8A3D;
  --accent-d:   #e55a0c;

  /* Gradients */
  --grad-premium:  linear-gradient(135deg, #FF8A3D 0%, #FFD166 100%);
  --grad-standard: linear-gradient(135deg, #2EC4F1 0%, #6FE3FF 100%);
  --grad-light:    linear-gradient(135deg, #E94CCF 0%, #8A4CFF 100%);

  /* Text */
  --text-0: #F5F5F5;
  --text-1: #A8A8A8;
  --text-2: #606060;

  /* Border */
  --border:   #262626;
  --border-h: rgba(255,107,26,0.35);

  /* Status */
  --success: #4ADE80;
  --error:   #F87171;

  /* Radius */
  --r-xs:  6px;
  --r-sm:  10px;
  --r:     16px;
  --r-lg:  24px;
  --r-xl:  32px;

  /* Spacing */
  --section-py: clamp(80px, 10vw, 160px);
  --container-px: clamp(24px, 5vw, 80px);

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

  /* Transitions */
  --t:        200ms ease;
  --t-slow:   400ms ease;
  --t-spring: 600ms cubic-bezier(0.22, 1, 0.36, 1);

  /* Shadows */
  --shadow-card: 0 0 0 1px var(--border), inset 0 1px 0 rgba(255,255,255,0.04);
  --shadow-card-hover: 0 0 0 1px var(--border-h), 0 16px 48px rgba(255,107,26,0.12), inset 0 1px 0 rgba(255,255,255,0.06);
  --shadow-glow: 0 0 60px rgba(255,107,26,0.1);
}

/* ── 2. Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text-0);
  line-height: 1.65;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--accent); color: #0D0D0D; }

/* ── 3. Typography Scale ──────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-0);
}
h1 { font-size: clamp(2.6rem, 6vw, 5.25rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.875rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
p  { line-height: 1.7; }
.mono { font-family: var(--font-mono); font-weight: 500; }
strong { font-weight: 600; color: var(--text-0); }

/* ── 4. Layout Utilities ─────────────────────────────────────── */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.section { padding: var(--section-py) 0; }
.section-alt { background: var(--bg-1); }
.section-card { background: var(--bg-card); }

.section-header { margin-bottom: clamp(48px, 6vw, 80px); }
.section-header.centered { text-align: center; }
.section-header.centered .lead { margin: 0 auto; }

.eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.lead {
  font-size: 1.1rem;
  color: var(--text-1);
  max-width: 580px;
  margin-top: 14px;
  line-height: 1.7;
}
.text-accent { color: var(--accent); }
.text-muted  { color: var(--text-1); }
.text-mono   { font-family: var(--font-mono); }

/* ── 5. Navigation ────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 var(--container-px);
  height: 72px;
  display: flex;
  align-items: center;
  transition: background var(--t-slow), border-color var(--t-slow);
  border-bottom: 1px solid transparent;
}
.site-nav.is-scrolled {
  background: rgba(13, 13, 13, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  color: var(--text-0);
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.nav-logo .logo-accent { color: var(--accent); }
.nav-logo .logo-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin: 0 2px;
  display: inline-block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-1);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
  white-space: nowrap;
}
.nav-link:hover { color: var(--text-0); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--text-0); }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Burger */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  color: var(--text-0);
  font-size: 1.25rem;
  transition: background var(--t), border-color var(--t);
}
.nav-burger:hover { background: rgba(255,255,255,0.05); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px var(--container-px) 32px;
  z-index: 999;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform var(--t-spring), opacity var(--t);
}
.nav-mobile.is-open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.nav-mobile-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.nav-mobile-links .nav-link { padding: 12px 16px; font-size: 1rem; }

/* ── 6. Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--t);
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #0D0D0D;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-h);
  border-color: var(--accent-h);
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(255,107,26,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--text-0);
  border-color: rgba(245,245,245,0.3);
}
.btn-secondary:hover {
  background: var(--text-0);
  color: var(--bg-0);
  border-color: var(--text-0);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #0D0D0D; }
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-0);
  border-color: var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.12); }
.btn-sm  { padding: 10px 20px; font-size: 0.85rem; gap: 6px; }
.btn-lg  { padding: 18px 40px; font-size: 1rem; }
.btn-xl  { padding: 22px 48px; font-size: 1.05rem; border-radius: var(--r); }
.btn i   { font-size: 1.1em; }

/* ── 7. Badges & Tags ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-accent  { background: rgba(255,107,26,0.15); color: var(--accent); border: 1px solid rgba(255,107,26,0.25); }
.badge-dark    { background: rgba(0,0,0,0.3); color: var(--text-0); border: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(8px); }
.badge-glass   { background: rgba(255,255,255,0.08); color: var(--text-0); border: 1px solid rgba(255,255,255,0.12); }
.badge-success { background: rgba(74,222,128,0.12); color: var(--success); border: 1px solid rgba(74,222,128,0.2); }

.tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-1);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 4px;
}

/* ── 8. Hero — Full Page (Homepage) ──────────────────────────── */
.hero-full {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vh, 100px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-studio.webp');
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform-origin: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(13,13,13,0.35) 0%,
      rgba(13,13,13,0.65) 50%,
      rgba(13,13,13,0.97) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-full h1 { margin-bottom: 24px; }
.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--text-1);
  max-width: 620px;
  margin-bottom: 44px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  flex-wrap: wrap;
}
.hero-stat {
  font-family: var(--font-mono);
  font-size: 0.77rem;
  color: var(--text-1);
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  line-height: 1.3;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child  { border-right: none; }
.hero-stat strong {
  display: block;
  color: var(--text-0);
  font-size: 0.85rem;
  margin-bottom: 2px;
}

/* ── 9. Hero — Compact (Inner pages) ─────────────────────────── */
.hero-compact {
  position: relative;
  min-height: clamp(400px, 60vh, 700px);
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  padding-bottom: clamp(48px, 6vh, 80px);
  overflow: hidden;
}
.hero-compact .hero-bg {
  background-position: center 30%;
  filter: brightness(0.4);
}
.hero-compact .hero-overlay {
  background: linear-gradient(to bottom, rgba(13,13,13,0.5) 0%, rgba(13,13,13,0.9) 100%);
}
.hero-compact-inner {
  position: relative;
  z-index: 2;
}
.hero-compact h1 { margin-bottom: 16px; }
.hero-compact .lead { margin-top: 0; }
.hero-compact .hero-meta {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-compact .hero-meta-item {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── 10. Section Headers ─────────────────────────────────────── */
.section-header h2 { margin-bottom: 14px; }
.section-title-accent {
  color: var(--accent);
  font-style: normal;
}

/* ── 11. Advantage Cards (6-grid) ───────────────────────────── */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.advantage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t-spring);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.advantage-card:hover {
  border-color: rgba(255,107,26,0.28);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05), inset 0 0 40px rgba(255,107,26,0.04);
  transform: translateY(-4px);
}
.advantage-icon {
  width: 48px; height: 48px;
  background: rgba(255,107,26,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.375rem;
  color: var(--accent);
  transition: background var(--t), transform var(--t);
}
.advantage-card:hover .advantage-icon {
  background: rgba(255,107,26,0.17);
  transform: scale(1.07);
}
.advantage-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.advantage-card p  { font-size: 0.9rem; color: var(--text-1); line-height: 1.6; }

/* ── 12. Equipment Category Cards ───────────────────────────── */
.eq-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.eq-categories-grid .eq-cat-card:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 3; }
.eq-categories-grid .eq-cat-card:nth-child(2) { grid-column: 2 / 3; }
.eq-categories-grid .eq-cat-card:nth-child(3) { grid-column: 3 / 4; }
.eq-categories-grid .eq-cat-card:nth-child(4) { grid-column: 2 / 3; }
.eq-categories-grid .eq-cat-card:nth-child(5) { grid-column: 3 / 4; }

.eq-cat-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.eq-cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--t-spring);
}
.eq-cat-card:hover img { transform: scale(1.06); }
.eq-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(13,13,13,0.92) 0%,
    rgba(13,13,13,0.4)  50%,
    rgba(13,13,13,0.1)  100%);
  transition: background var(--t-slow);
}
.eq-cat-card:hover .eq-cat-overlay {
  background: linear-gradient(to top,
    rgba(13,13,13,0.96) 0%,
    rgba(13,13,13,0.65) 55%,
    rgba(13,13,13,0.2)  100%);
}
.eq-cat-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
}
.eq-cat-count {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}
.eq-cat-content h3 { font-size: 1.3rem; margin-bottom: 0; }
.eq-cat-desc {
  font-size: 0.83rem;
  color: var(--text-1);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}
.eq-cat-card:hover .eq-cat-desc {
  max-height: 80px;
  opacity: 1;
  margin-top: 8px;
}
.eq-cat-link {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}
.eq-cat-card:hover .eq-cat-link {
  opacity: 1;
  transform: translateY(0);
}

/* ── 13. Pack Cards ──────────────────────────────────────────── */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pack-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-spring), box-shadow var(--t), border-color var(--t);
  position: relative;
}
.pack-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 24px 64px rgba(255,107,26,0.14), var(--shadow-glow);
}
.pack-header {
  padding: 32px 32px 28px;
  position: relative;
  overflow: hidden;
}
.pack-header.grad-light    { background: var(--grad-light); }
.pack-header.grad-standard { background: var(--grad-standard); }
.pack-header.grad-premium  { background: var(--grad-premium); }

/* Grain texture on pack headers */
.pack-header::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.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.07;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
.pack-badge-wrap {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
}
.pack-badge-popular {
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.pack-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2rem;
  color: rgba(0,0,0,0.8);
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
  margin-bottom: 4px;
}
.pack-tagline {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
  letter-spacing: 0.03em;
}
.pack-body { padding: 28px 32px 32px; }
.pack-price {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.pack-price-from {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.pack-price-amount {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.75rem;
  color: var(--text-0);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pack-price-amount .currency { font-size: 1.5rem; vertical-align: top; margin-top: 6px; display: inline-block; }
.pack-price-unit {
  font-size: 0.85rem;
  color: var(--text-1);
  display: block;
  margin-top: 6px;
}
.pack-items { margin-bottom: 28px; }
.pack-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.875rem;
  color: var(--text-1);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  line-height: 1.5;
}
.pack-item:last-child { border-bottom: none; }
.pack-item-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.packs-reassurance {
  margin-top: 40px;
  padding: 24px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  text-align: center;
}
.packs-reassurance p {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-1);
  letter-spacing: 0.02em;
  line-height: 1.8;
}

/* ── 14. Realizations Mosaic ─────────────────────────────────── */
.real-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 14px;
}
.real-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-1);
}
.real-card:nth-child(1) { grid-row: span 2; }
.real-card:nth-child(5) { grid-column: span 1; }

.real-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--t-spring);
}
.real-card:hover img { transform: scale(1.05); }
.real-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
  background: linear-gradient(to top, rgba(13,13,13,0.88) 0%, transparent 100%);
  transition: padding var(--t-slow);
}
.real-card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.2;
}
.real-card-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-1);
}
.real-card-hover {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.78);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px;
  opacity: 0;
  transition: opacity var(--t-slow);
}
.real-card:hover .real-card-hover { opacity: 1; }
.real-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.real-card-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  background: rgba(255,107,26,0.18);
  border: 1px solid rgba(255,107,26,0.3);
  color: var(--accent);
  padding: 3px 8px;
  border-radius: 4px;
}
.real-more-cta {
  text-align: center;
  margin-top: 40px;
}

/* Full realisations grid */
.real-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.real-full-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-1);
  cursor: pointer;
}
.real-full-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--t-spring); }
.real-full-card:hover img { transform: scale(1.04); }
.real-full-card .real-card-label { padding: 18px 20px; }
.real-full-card .real-card-hover { padding: 18px 20px; }
.real-full-card.hidden { display: none; }

/* ── 15. Steps / Timeline ────────────────────────────────────── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-row::after {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(to right, var(--accent) 0%, rgba(255,107,26,0.15) 100%);
  z-index: 0;
}
.step {
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.step-number {
  font-family: var(--font-mono);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
  opacity: 0.9;
}
.step-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.step p { font-size: 0.875rem; color: var(--text-1); line-height: 1.6; }
.step-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-bottom: 32px;
  box-shadow: 0 0 12px rgba(255,107,26,0.5);
}

/* ── 16. Testimonials ────────────────────────────────────────── */
.testimonials-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(40px, 5vw, 64px);
  flex-wrap: wrap;
}
.rating-display {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.stars {
  display: flex;
  gap: 4px;
  color: var(--accent);
  font-size: 1.125rem;
}
.rating-count {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-1);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  position: relative;
  transition: border-color var(--t), box-shadow var(--t);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.testimonial-card:hover {
  border-color: rgba(255,107,26,0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.04);
}
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-1);
  line-height: 1.75;
  margin-bottom: 28px;
  position: relative;
  padding-top: 4px;
}
.testimonial-quote::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: -12px;
  left: -4px;
  line-height: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.author-role { font-size: 0.8rem; color: var(--text-1); }

/* ── 17. Contact Section ─────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info { }
.contact-info-items { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(255,107,26,0.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 0.9rem;
  color: var(--text-0);
  font-weight: 500;
}
.contact-info-value a:hover { color: var(--accent); }
.contact-map {
  margin-top: 32px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: grayscale(60%) brightness(0.7);
  transition: filter var(--t-slow);
}
.contact-map:hover img { filter: grayscale(20%) brightness(0.85); }

/* ── 18. Forms ───────────────────────────────────────────────── */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-1);
  letter-spacing: 0.01em;
}
.form-label .required { color: var(--accent); margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  color: var(--text-0);
  font-size: 0.9rem;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-2); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  background: rgba(255,107,26,0.04);
  box-shadow: 0 0 0 3px rgba(255,107,26,0.1);
}
.form-select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A8A8A8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-select option { background: var(--bg-1); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-radio-group { display: flex; gap: 12px; flex-wrap: wrap; }
.form-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-1);
  transition: all var(--t);
}
.form-radio-label input[type="radio"] { accent-color: var(--accent); }
.form-radio-label:has(input:checked) {
  border-color: var(--accent);
  background: rgba(255,107,26,0.07);
  color: var(--text-0);
}
.form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}
.form-checkbox-wrap input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
}
.form-checkbox-wrap label { font-size: 0.82rem; color: var(--text-1); line-height: 1.5; cursor: pointer; }
.form-checkbox-wrap label a { color: var(--accent); text-decoration: underline; }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.form-note { font-size: 0.8rem; color: var(--text-2); }
.form-feedback {
  display: none;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 12px;
}
.form-feedback.success { display: flex; gap: 8px; background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.2); color: var(--success); }
.form-feedback.error   { display: flex; gap: 8px; background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.2); color: var(--error); }

/* Input validation states */
.form-input.is-invalid,
.form-select.is-invalid { border-color: var(--error); }
.form-error-msg { font-size: 0.75rem; color: var(--error); display: none; }
.form-error-msg.visible { display: block; }

/* ── 19. Product Cards (Equipment catalogue) ─────────────────── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}
.filter-tab {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  color: var(--text-1);
  background: transparent;
  transition: all var(--t);
  cursor: pointer;
}
.filter-tab:hover { color: var(--text-0); border-color: rgba(255,255,255,0.15); }
.filter-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0D0D0D;
  font-weight: 700;
}

.eq-section { margin-bottom: 72px; }
.eq-section:last-child { margin-bottom: 0; }
.eq-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.eq-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.eq-section-title h2 {
  font-size: 1.75rem;
}
.eq-section-icon {
  width: 40px; height: 40px;
  background: rgba(255,107,26,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
}
.eq-section-count {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-1);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t-spring);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.product-card:hover {
  border-color: rgba(255,107,26,0.25);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04), inset 0 0 24px rgba(255,107,26,0.03);
  transform: translateY(-3px);
}
.product-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s var(--t-spring);
}
.product-card:hover .product-img { transform: scale(1.04); }
.product-img-wrap {
  overflow: hidden;
  background: var(--bg-1);
}
.product-body { padding: 18px 20px 20px; }
.product-brand {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.product-ref {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-2);
  margin-bottom: 8px;
  display: block;
}
.product-desc {
  font-size: 0.8rem;
  color: var(--text-1);
  line-height: 1.55;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.product-price {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.product-price small {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-1);
  font-weight: 400;
  display: block;
  letter-spacing: 0.02em;
}

/* ── 20. Comparison Table (Packs page) ───────────────────────── */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--r);
  border: 1px solid var(--border);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
}
.compare-table thead th {
  padding: 0;
  text-align: left;
  background: var(--bg-card);
}
.compare-th-inner {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.compare-table thead th:first-child .compare-th-inner { background: var(--bg-card); }
.compare-table thead th.col-light .compare-th-inner   { background: rgba(233,76,207,0.06); }
.compare-table thead th.col-standard .compare-th-inner { background: rgba(46,196,241,0.06); }
.compare-table thead th.col-premium .compare-th-inner  { background: rgba(255,138,61,0.06); }

.compare-pack-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.compare-pack-price {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-1);
}
.compare-table tbody td {
  padding: 14px 28px;
  font-size: 0.88rem;
  color: var(--text-1);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody td:first-child {
  font-weight: 500;
  color: var(--text-0);
  font-size: 0.85rem;
  white-space: nowrap;
}
.compare-table tbody tr:nth-child(even) td { background: rgba(255,255,255,0.01); }
.compare-check { color: var(--success); font-size: 1rem; }
.compare-dash  { color: var(--text-2); }

/* ── 21. FAQ Accordion ───────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
details.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color var(--t);
}
details.faq-item[open]  { border-color: rgba(255,107,26,0.25); }
details.faq-item summary,
details.faq-item .faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--t);
  -webkit-user-select: none;
  user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '\002B';
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform var(--t);
  flex-shrink: 0;
  line-height: 1;
}
details.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--text-1);
  line-height: 1.7;
}
.faq-answer a { color: var(--accent); text-decoration: underline; }

/* ── 22. Case Studies ────────────────────────────────────────── */
.case-study {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 40px;
  background: var(--bg-card);
}
.case-study:last-child { margin-bottom: 0; }
.case-study-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.case-study-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.case-study-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.8) 0%, rgba(13,13,13,0.2) 100%);
  display: flex;
  align-items: flex-end;
  padding: 36px 40px;
}
.case-study-meta { display: flex; flex-direction: column; gap: 10px; }
.case-study-body { padding: 40px; }
.case-study-body h3 { font-size: 1.5rem; margin-bottom: 16px; }
.case-study-body p { font-size: 0.95rem; color: var(--text-1); line-height: 1.75; margin-bottom: 20px; }
.case-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.case-result {
  text-align: center;
  padding: 20px;
  background: var(--bg-1);
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
}
.case-result-value {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  display: block;
}
.case-result-label { font-size: 0.8rem; color: var(--text-1); }
.case-testimonial {
  background: rgba(255,107,26,0.05);
  border: 1px solid rgba(255,107,26,0.15);
  border-radius: var(--r-sm);
  padding: 20px 24px;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-1);
  line-height: 1.7;
}
.case-testimonial-author {
  margin-top: 10px;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
}

/* ── 23. Stars Rating ────────────────────────────────────────── */
.stars-row {
  display: flex;
  align-items: center;
  gap: 4px;
}
.stars-row i { color: var(--accent); font-size: 0.9rem; }

/* ── 24. Legal Pages ─────────────────────────────────────────── */
.legal-page { padding-top: 120px; }
.legal-content {
  max-width: 860px;
}
.legal-content h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.legal-content .legal-date {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-1);
  margin-bottom: 56px;
  display: block;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.legal-content h3 { font-size: 1.05rem; margin: 24px 0 10px; }
.legal-content p  { color: var(--text-1); font-size: 0.92rem; line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { margin: 12px 0 16px 0; }
.legal-content ul li {
  font-size: 0.92rem;
  color: var(--text-1);
  line-height: 1.7;
  padding: 5px 0 5px 20px;
  position: relative;
}
.legal-content ul li::before {
  content: '·';
  position: absolute;
  left: 6px;
  color: var(--accent);
}
.legal-content a { color: var(--accent); text-decoration: underline; }
.legal-info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 32px;
  margin: 32px 0;
}
.legal-info-box p { margin-bottom: 8px; }
.legal-info-box p:last-child { margin-bottom: 0; }
.legal-info-box strong { color: var(--text-0); }

/* ── 25. Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: clamp(56px, 7vw, 96px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .footer-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  display: block;
}
.footer-brand .footer-logo span { color: var(--accent); }
.footer-baseline { font-size: 0.85rem; color: var(--text-1); margin-bottom: 20px; line-height: 1.5; }
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-1);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item i { color: var(--accent); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.875rem; color: var(--text-1); line-height: 1.5; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-2);
  line-height: 1.6;
}
.footer-tva-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-2);
  text-align: right;
}

/* ── 26. Cookie Banner & Modal ───────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 600px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  z-index: 9999;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  transform: translateY(0);
  transition: transform 0.4s var(--t-spring), opacity var(--t-slow);
}
.cookie-banner.is-hidden {
  transform: translateY(calc(100% + 48px));
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.85rem;
  color: var(--text-1);
  margin-bottom: 18px;
  line-height: 1.6;
}
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-actions .btn-customize {
  font-size: 0.82rem;
  color: var(--text-1);
  padding: 4px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: auto;
}
.cookie-actions .btn-customize:hover { color: var(--text-0); }

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow);
}
.cookie-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  width: 100%;
  max-width: 560px;
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform var(--t-spring);
}
.cookie-modal-overlay.is-open .cookie-modal { transform: translateY(0); }
.cookie-modal h3 { margin-bottom: 8px; }
.cookie-modal > p { font-size: 0.875rem; color: var(--text-1); margin-bottom: 24px; }
.cookie-toggle-item {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 16px 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.cookie-toggle-label { font-weight: 600; font-size: 0.875rem; margin-bottom: 4px; }
.cookie-toggle-desc  { font-size: 0.8rem; color: var(--text-1); line-height: 1.5; }
/* Toggle switch */
.toggle-switch {
  position: relative;
  width: 44px; height: 24px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-switch .slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 24px;
  cursor: pointer;
  transition: background var(--t);
}
.toggle-switch .slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--t);
}
.toggle-switch input:checked + .slider { background: var(--accent); }
.toggle-switch input:checked + .slider::before { transform: translateX(20px); }
.toggle-switch input:disabled + .slider { opacity: 0.5; cursor: not-allowed; }
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ── 27. Scroll Animations ───────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-spring), transform var(--t-spring);
  transition-delay: var(--delay, 0ms);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate="fade"] {
  transform: none;
}
[data-animate="scale"] {
  transform: scale(0.96);
}
[data-animate="scale"].is-visible {
  transform: scale(1);
}

/* ── 28. Utility Classes ─────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}
.cta-section {
  text-align: center;
  padding: var(--section-py) 0;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p  { margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ── 29. Responsive ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 992px) {
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .packs-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .real-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .real-mosaic .real-card:nth-child(1) { grid-row: span 1; grid-column: 1 / -1; height: 300px; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps-row::after { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .eq-categories-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .eq-categories-grid .eq-cat-card:nth-child(1) { grid-column: 1 / -1; grid-row: 1 / 2; }
  .eq-categories-grid .eq-cat-card:nth-child(2),
  .eq-categories-grid .eq-cat-card:nth-child(3),
  .eq-categories-grid .eq-cat-card:nth-child(4),
  .eq-categories-grid .eq-cat-card:nth-child(5) { grid-column: auto; grid-row: auto; }
  .case-result-grid { grid-template-columns: 1fr 1fr; }
  .real-full-grid { grid-template-columns: 1fr 1fr; }
  .compare-table { font-size: 0.82rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-right .btn { display: none; }
  .nav-burger { display: flex; }
  .advantages-grid { grid-template-columns: 1fr; }
  .eq-categories-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .eq-categories-grid .eq-cat-card:nth-child(n) { grid-column: auto; grid-row: auto; }
  .real-mosaic { grid-template-columns: 1fr; }
  .real-mosaic .real-card { height: 260px; }
  .real-mosaic .real-card:nth-child(1) { height: 300px; }
  .steps-row { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-tva-note { text-align: left; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .hero-stat {
    padding: 0 16px;
    border-right-color: rgba(255,255,255,0.06);
  }
  .hero-stat:first-child { padding-left: 0; }
  .testimonials-header-row { flex-direction: column; align-items: flex-start; }
  .rating-display { align-items: flex-start; }
  .products-grid { grid-template-columns: 1fr; }
  .real-full-grid { grid-template-columns: 1fr; }
  .case-result-grid { grid-template-columns: 1fr; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .form-card { padding: 24px 20px; }
  .case-study-hero { height: 240px; }
  .case-study-body { padding: 28px 24px; }
}
@media (max-width: 576px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-stat { padding: 0; border-right: none; }
  .packs-grid { max-width: 100%; }
  .filter-bar { gap: 6px; }
  .filter-tab { font-size: 0.72rem; padding: 7px 12px; }
  .eq-section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}
