/* ════════════════════════════════════════
   NIVO — Premium CSS
   ════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --ice: #E8F4FD;
  --glacier: #0EA5E9;
  --deep: #0369A1;
  --dark: #0C1A2E;
  --charcoal: #1E293B;
  --gold: #F59E0B;
  --white: #FFFFFF;
  --gray: #F8FAFC;
  --border: rgba(14,165,233,0.15);
  --text: #1E293B;
  --text-muted: rgba(30,41,59,0.6);
  --radius: 14px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow: 0 8px 32px rgba(14,165,233,0.18);
  --shadow-lg: 0 24px 64px rgba(14,165,233,0.25);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── CURSEUR CUSTOM ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--glacier);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(14,165,233,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s, width 0.2s, height 0.2s, opacity 0.2s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 48px; height: 48px;
  border-color: var(--glacier);
  background: rgba(14,165,233,0.05);
}
@media (pointer: coarse) { .cursor, .cursor-ring { display: none; } }

/* ── TYPOGRAPHIE ── */
h1, h2, h3 {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  letter-spacing: 3px;
  line-height: 1;
}
h1 { font-size: clamp(52px, 10vw, 110px); }
h2 { font-size: clamp(32px, 6vw, 64px); }
h3 { font-size: clamp(18px, 3vw, 28px); }

/* ── BOUTONS ── */
.btn-primary, .btn-hero, .btn-cta, .btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--glacier);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-hero { padding: 18px 48px; font-size: 18px; box-shadow: var(--shadow); }
.btn-cta  { padding: 20px 60px; font-size: 20px; box-shadow: var(--shadow-lg); }
.btn-full { width: 100%; }
.btn-primary:hover, .btn-hero:hover, .btn-cta:hover, .btn-nav:hover {
  background: var(--deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(14,165,233,0.45);
}
.btn-nav { padding: 10px 24px; font-size: 14px; }

/* Shimmer effect */
.shimmer::after {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}
.shimmer:hover::after { left: 150%; }

/* Ripple */
.ripple { position: relative; overflow: hidden; }
.ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: ripple-anim 0.6s linear;
  pointer-events: none;
}
@keyframes ripple-anim {
  to { transform: scale(4); opacity: 0; }
}

/* ── RÉVÉLATION AU SCROLL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ── CONTENEUR ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

/* ════════════════════════════════════
   NAVBAR
════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(12,26,46,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--white);
}
.nav-center { display: flex; align-items: center; gap: 12px; }
.nav-badge {
  background: rgba(14,165,233,0.2);
  border: 1px solid rgba(14,165,233,0.4);
  color: var(--glacier);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 600px) { .nav-center { display: none; } }

/* ── PULSE ── */
.pulse { animation: pulse-anim 2s ease-in-out infinite; }
@keyframes pulse-anim {
  0%, 100% { box-shadow: 0 0 0 0 rgba(14,165,233,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(14,165,233,0); }
}

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #0F2847 40%, var(--deep) 70%, var(--glacier) 100%);
  background-size: 300% 300%;
  animation: grad-shift 8s ease infinite;
}
@keyframes grad-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
#canvas-particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative; z-index: 2;
  text-align: center;
  padding: 80px 24px 40px;
  max-width: 860px;
}
.hero-label {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero-title {
  color: var(--white);
  text-shadow: 0 4px 40px rgba(14,165,233,0.4);
  margin-bottom: 16px;
}
.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 300;
  margin-bottom: 32px;
}
.hero-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.price-sale {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--white);
  letter-spacing: 2px;
}
.price-original {
  font-size: 22px;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
}
.price-badge, .pp-savings {
  background: #DC2626;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
}
.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hbadge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  backdrop-filter: blur(4px);
}
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  margin: 0 auto;
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ════════════════════════════════════
   STATS BAR
════════════════════════════════════ */
.stats-bar {
  background: var(--dark);
  padding: 40px 24px;
}
.stats-inner {
  max-width: 900px; margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--glacier);
  letter-spacing: 2px;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.1);
}
@media (max-width: 600px) { .stat-divider { display: none; } }

/* ════════════════════════════════════
   PRODUIT
════════════════════════════════════ */
.product-section { background: var(--white); }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Galerie */
.gallery-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray);
  aspect-ratio: 1;
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-main:hover img { transform: scale(1.04); }
.gallery-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--glacier);
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.gallery-thumbs {
  display: flex; gap: 8px; margin-top: 12px;
  overflow-x: auto; padding-bottom: 4px;
}
.thumb {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  background: var(--gray);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active, .thumb:hover { border-color: var(--glacier); }

/* Détails */
.product-badge-row { display: flex; gap: 8px; margin-bottom: 12px; }
.tag {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.tag-hot { background: rgba(245,158,11,0.12); color: #D97706; }
.tag-new { background: rgba(14,165,233,0.1); color: var(--glacier); }
.product-title { font-size: clamp(24px, 4vw, 36px); color: var(--dark); margin-bottom: 6px; }
.product-subtitle { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; letter-spacing: 1px; }

.product-price-block {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 16px 20px;
  background: var(--gray);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.pp-sale {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px; color: var(--glacier); letter-spacing: 2px;
}
.pp-original {
  font-size: 20px; color: var(--text-muted);
  text-decoration: line-through;
}

.tech-block {
  background: linear-gradient(135deg, var(--dark), var(--charcoal));
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 20px;
}
.tech-header {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 3px;
  color: var(--glacier); margin-bottom: 8px;
}
.tech-desc { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }

.args { display: grid; gap: 10px; margin-bottom: 24px; }
.arg {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.arg:hover { border-color: var(--glacier); box-shadow: 0 4px 16px rgba(14,165,233,0.1); }
.arg-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: rgba(14,165,233,0.25);
  line-height: 1; flex-shrink: 0; width: 28px;
}
.arg div { display: flex; flex-direction: column; gap: 2px; }
.arg strong { font-size: 13px; color: var(--dark); letter-spacing: 0.5px; }
.arg span { font-size: 13px; color: var(--text-muted); }

/* Timer */
.urgency-bar {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 12px;
}
.urgency-dot {
  width: 8px; height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.timer-block {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 16px;
  background: var(--dark);
  border-radius: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.timer-label { font-size: 12px; color: rgba(255,255,255,0.6); flex-shrink: 0; }
.timer-digits { display: flex; align-items: center; gap: 4px; }
.timer-unit { text-align: center; }
.timer-unit span {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; color: var(--glacier); letter-spacing: 2px; line-height: 1;
}
.timer-unit small { font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
.timer-sep { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: rgba(255,255,255,0.3); margin-bottom: 12px; }

.reassure-row {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 12px; justify-content: center;
}
.reassure-row span {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--text-muted);
}

/* ════════════════════════════════════
   FEATURES
════════════════════════════════════ */
.features { background: var(--gray); }
.section-title { text-align: center; color: var(--dark); margin-bottom: 8px; }
.section-sub { text-align: center; color: var(--text-muted); font-size: 16px; margin-bottom: 56px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--glacier);
}
.feature-icon { margin-bottom: 16px; }
.feature-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px; color: rgba(14,165,233,0.15);
  line-height: 1; margin-bottom: 8px;
}
.feature-card h3 { font-size: 20px; color: var(--dark); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ════════════════════════════════════
   LIFESTYLE
════════════════════════════════════ */
.lifestyle { background: var(--white); padding-bottom: 0; }
.lifestyle .container { padding-bottom: 0; }
.lifestyle-track {
  display: flex; gap: 24px;
  overflow-x: auto;
  padding: 32px 24px 64px;
  cursor: grab;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.lifestyle-track::-webkit-scrollbar { display: none; }
.lifestyle-track.dragging { cursor: grabbing; }
.lifestyle-card {
  flex-shrink: 0;
  width: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  scroll-snap-align: start;
  transition: transform var(--transition), box-shadow var(--transition);
}
.lifestyle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ls-scene {
  height: 200px; position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden; padding: 20px;
}
.ls-scene-desk { background: linear-gradient(135deg, #1E293B, #0C1A2E); }
.ls-scene-bed  { background: linear-gradient(135deg, #0F172A, #1E3A5F); }
.ls-scene-terrace { background: linear-gradient(135deg, #1E3A5F, #0369A1); }
.ls-scene-car  { background: linear-gradient(135deg, #1E293B, #374151); }
.ls-scene-studio { background: linear-gradient(135deg, #0C1A2E, #1a0533); }
/* Scene elements */
.ls-device {
  width: 60px; height: 80px;
  background: linear-gradient(to bottom, #1E3A5F, #0EA5E9);
  border-radius: 10px;
  position: relative; z-index: 2;
  box-shadow: 0 0 30px rgba(14,165,233,0.6);
}
.ls-device::after {
  content: '';
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(56,189,248,0.5);
  animation: spin 4s linear infinite;
}
@keyframes spin { to { transform: translateX(-50%) rotate(360deg); } }
.ls-table {
  position: absolute; bottom: 0; left: 0; right: 0; height: 30px;
  background: rgba(255,255,255,0.08);
}
.ls-glow {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 40px;
  background: radial-gradient(ellipse, rgba(14,165,233,0.4), transparent);
}
.ls-pillow {
  position: absolute; bottom: 10px; left: 20px;
  width: 80px; height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
}
.ls-device-small {
  position: absolute; bottom: 20px; right: 30px;
  width: 40px; height: 55px;
  background: linear-gradient(to bottom, #1E3A5F, #0EA5E9);
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(14,165,233,0.6);
}
.ls-moon {
  position: absolute; top: 24px; right: 32px;
  width: 24px; height: 24px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  box-shadow: -6px 0 0 rgba(255,255,255,0.05);
}
.ls-plant {
  position: absolute; bottom: 0; left: 20px;
  width: 30px; height: 80px;
  border-left: 3px solid rgba(255,255,255,0.2);
  border-radius: 0 0 0 6px;
}
.ls-sun {
  position: absolute; top: 24px; right: 32px;
  width: 32px; height: 32px;
  background: rgba(245,158,11,0.3);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(245,158,11,0.4);
}
.ls-wheel-l, .ls-wheel-r {
  position: absolute; bottom: 0;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border: 3px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  z-index: 3;
}
.ls-wheel-l { left: 28px; }
.ls-wheel-r { right: 28px; }
.ls-car-body {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  height: 70px;
  background: linear-gradient(to right, rgba(255,255,255,0.08), rgba(255,255,255,0.12));
  border-radius: 16px 16px 4px 4px;
  z-index: 2;
}
.ls-screen {
  position: absolute; top: 20px; left: 20px; right: 20px; bottom: 30px;
  background: rgba(14,165,233,0.15);
  border-radius: 6px;
  border: 1px solid rgba(14,165,233,0.3);
}
.ls-light-beam {
  position: absolute; top: 0; right: 50px; bottom: 0;
  width: 30px;
  background: linear-gradient(to bottom, transparent, rgba(139,92,246,0.2), transparent);
}
.ls-content { padding: 20px 24px; }
.ls-content h4 { font-size: 16px; color: var(--dark); margin-bottom: 6px; }
.ls-content p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ════════════════════════════════════
   COMPARATIF
════════════════════════════════════ */
.comparison { background: var(--gray); }
.compare-table { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.compare-header, .compare-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
}
.compare-header {
  background: var(--dark); color: white; padding: 0;
}
.ch-empty { padding: 20px 24px; }
.ch-nivo {
  background: var(--glacier);
  padding: 20px 16px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.ch-logo { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 3px; }
.ch-price { font-size: 12px; opacity: 0.85; }
.ch-other { padding: 20px 16px; text-align: center; font-size: 13px; opacity: 0.65; }
.compare-row { border-top: 1px solid var(--border); background: var(--white); }
.compare-row:nth-child(even) { background: var(--gray); }
.cr-label { padding: 16px 24px; font-size: 13px; font-weight: 500; color: var(--text); display: flex; align-items: center; }
.cr-nivo { background: rgba(14,165,233,0.05); padding: 16px; text-align: center; display: flex; align-items: center; justify-content: center; }
.cr-other { padding: 16px; text-align: center; font-size: 13px; color: var(--text-muted); display: flex; align-items: center; justify-content: center; }
.check { color: var(--deep); font-weight: 600; font-size: 13px; }
.bad { color: #DC2626; }
.neutral { color: var(--text-muted); }
@media (max-width: 700px) {
  .compare-header, .compare-row { grid-template-columns: 1fr 1fr; }
  .ch-empty, .ch-other:last-child, .cr-other:last-child { display: none; }
}

/* ════════════════════════════════════
   TÉMOIGNAGES
════════════════════════════════════ */
.testimonials { background: var(--white); }
.testi-stars {
  display: flex; align-items: center; gap: 8px;
  justify-content: center; margin-bottom: 48px;
}
.star { color: var(--gold); font-size: 20px; }
.testi-rating { font-size: 14px; color: var(--text-muted); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--glacier); }
.testi-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.testi-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--glacier), var(--deep));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; color: white; letter-spacing: 1px;
  flex-shrink: 0;
}
.testi-head > div:nth-child(2) { flex: 1; }
.testi-name { font-weight: 600; font-size: 14px; color: var(--dark); }
.testi-city { font-size: 12px; color: var(--text-muted); }
.testi-stars-mini { color: var(--gold); font-size: 14px; }
.testi-card p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.65; font-style: italic;
  margin-bottom: 16px;
}
.testi-tag {
  font-size: 11px; color: var(--glacier);
  text-transform: uppercase; letter-spacing: 1px;
  font-weight: 600;
}

/* ════════════════════════════════════
   FAQ
════════════════════════════════════ */
.faq { background: var(--gray); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left;
  padding: 20px 0;
  font-size: 15px; font-weight: 500; color: var(--dark);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  background: none; border: none; cursor: pointer;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--glacier); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  position: relative;
  border: 1.5px solid currentColor; border-radius: 50%;
  transition: transform var(--transition), color var(--transition);
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute;
  background: currentColor; border-radius: 2px;
}
.faq-icon::before { width: 10px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1.5px; height: 10px; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: transform var(--transition); }
.faq-q[aria-expanded="true"] .faq-icon { border-color: var(--glacier); color: var(--glacier); transform: rotate(45deg); }
.faq-a {
  overflow: hidden; max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
  padding: 0 0 0;
}
.faq-a.open { max-height: 200px; padding: 0 0 20px; }
.faq-a p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ════════════════════════════════════
   CTA FINAL
════════════════════════════════════ */
.cta-final {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #0F2847 40%, var(--deep) 70%, #1a5f8f 100%);
  background-size: 200% 200%;
  animation: grad-shift 6s ease infinite;
  text-align: center;
}
.cta-inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.cta-label {
  display: inline-block;
  background: rgba(14,165,233,0.2);
  border: 1px solid rgba(14,165,233,0.35);
  color: var(--glacier);
  padding: 6px 18px; border-radius: 50px;
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 24px;
}
.cta-title {
  color: white;
  font-size: clamp(48px, 8vw, 96px);
  margin-bottom: 16px;
  text-shadow: 0 4px 32px rgba(14,165,233,0.3);
}
.cta-title span {
  display: block;
  font-size: 0.45em;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
}
.cta-sub {
  color: rgba(255,255,255,0.7);
  font-size: 16px; margin-bottom: 40px;
}
.cta-viewers {
  display: flex; align-items: center; gap: 8px;
  justify-content: center;
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-top: 24px;
}
.viewers-dot {
  width: 8px; height: 8px;
  background: #22C55E; border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 2px solid var(--glacier);
  padding: 56px 24px;
}
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  text-align: center;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; letter-spacing: 6px;
  color: var(--glacier); margin-bottom: 8px;
}
.footer-tagline {
  color: rgba(255,255,255,0.4); font-size: 13px;
  margin-bottom: 32px;
}
.footer-nav {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 24px; margin-bottom: 32px;
}
.footer-nav a {
  font-size: 13px; color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--glacier); }
.footer-legal {
  font-size: 11px; color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .btn-hero { padding: 16px 32px; font-size: 16px; }
  .hero-inner { padding: 100px 20px 40px; }
  .price-sale { font-size: 40px; }
  .product-gallery { order: -1; }
  .lifestyle-card { width: 240px; }
  .compare-table { overflow-x: auto; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
}
