/* ============================================================
   ALPARMOR — Style principal
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #080808;
  --dark:    #111114;
  --dark2:   #18181c;
  --border-dark: rgba(255,255,255,0.08);
  --light:   #f8f9fb;
  --light2:  #eef0f4;
  --border-light: #e2e5eb;
  --text-dark:  #0d0d0f;
  --text-muted: #6b7280;
  --white:   #ffffff;
  --accent:  #eab308;
  --accent2: #fde047;
  --radius:  16px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-x: none;
}

/* Touch UX globals */
button, a, .pack-option, .ph-pack-opt, .faq-q, .ph-thumb, .brand-chip, .brand-pill {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
button:active, .btn-primary:active, .btn-ghost:active, .btn-nav:active {
  transform: scale(0.97);
  transition-duration: 0.08s;
}

/* ============ UTILITY ============ */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-tag.light { color: var(--accent2); }

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}
.section-title.light { color: var(--white); }

.gradient-text {
  background: linear-gradient(135deg, #fde047, #f59e0b, #fde047);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 4s linear infinite;
  will-change: background-position;
}
@keyframes gradShift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ============ REVEAL ANIMATIONS ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }
[data-reveal][data-delay="5"] { transition-delay: 0.5s; }

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  color: #1a1000;
  box-shadow: 0 4px 20px rgba(234,179,8,0.35);
}
.btn-primary:hover {
  background: #ca8a04;
  color: #1a1000;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(234,179,8,0.45);
}
.btn-primary:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 10px rgba(234,179,8,0.3);
}
.btn-primary.btn-full { width: 100%; justify-content: center; }

@keyframes ripple-anim {
  to { transform: scale(1); opacity: 0; }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
}

/* ============ LANG SWITCHER ============ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
}
.lang-btn {
  background: none;
  border: none;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: inherit;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 4px 5px;
  border-radius: 5px;
  letter-spacing: 0.04em;
  transition: color 0.2s, background 0.2s;
}
.lang-btn:hover { color: rgba(255,255,255,0.7); }
.lang-btn.active {
  color: var(--accent, #eab308);
  background: rgba(234,179,8,0.1);
}
.lang-sep {
  color: rgba(255,255,255,0.15);
  font-size: 0.65rem;
  line-height: 1;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled:not(.navbar-light) {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* ---- Navbar light variant (pages with white background) ---- */
.navbar-light {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}
.navbar-light.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.navbar-light .logo { color: var(--text-dark); }
.navbar-light .logo span { color: var(--accent); }
.navbar-light .nav-links a { color: var(--text-dark); font-weight: 600; }
.navbar-light .nav-links a:hover { color: var(--accent); }
.navbar-light .nav-links .btn-nav { color: var(--white) !important; }
.navbar-light .burger span { background: var(--text-dark); }
.navbar-light .cart-btn { color: var(--text-dark); }
.navbar-light .lang-btn { color: rgba(0,0,0,0.4); }
.navbar-light .lang-btn:hover { color: rgba(0,0,0,0.7); }
.navbar-light .lang-btn.active { color: var(--accent); background: rgba(234,179,8,0.1); }
.navbar-light .lang-sep { color: rgba(0,0,0,0.15); }
.navbar-light .mobile-menu { background: rgba(255,255,255,0.97); border-top: 1px solid var(--border-light); }
.navbar-light .mob-link { color: var(--text-muted); border-bottom-color: var(--border-light); }
.navbar-light .mob-link:hover { color: var(--text-dark); }

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
}
.logo span { color: var(--accent); }
.footer-logo { color: var(--white); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.btn-nav {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.15s !important;
  box-shadow: 0 2px 12px rgba(234,179,8,0.3);
}
.btn-nav:hover { background: #2563eb !important; transform: translateY(-1px) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  background: rgba(8,8,8,0.97);
  border-top: 1px solid var(--border-dark);
}
.mobile-menu.open { display: flex; }
.mob-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mob-link:hover { color: var(--white); }
.mob-cta {
  margin-top: 8px;
  background: var(--accent);
  color: var(--white) !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 12px;
  border: none !important;
  font-weight: 700;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(234,179,8,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(167,139,250,0.08) 0%, transparent 50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-text { flex: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(234,179,8,0.1);
  border: 1px solid rgba(234,179,8,0.25);
  color: var(--accent2);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 440px;
}

/* Hero price */
.hero-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent2);
  letter-spacing: -0.03em;
}
.hero-price-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

/* ============ STICKY MOBILE BUY BAR ============ */
.sticky-buy-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 190;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding: 12px 16px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.sticky-buy-bar.visible {
  transform: translateY(0);
}
.sbb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto;
  gap: 12px;
}
.sbb-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sbb-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}
.sbb-price {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
.sbb-btn {
  padding: 12px 20px !important;
  font-size: 0.85rem !important;
  white-space: nowrap;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.3px;
}

/* ---- Hero product image — 3D tilt effect ---- */
.hero-3d {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.hero-tilt-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tilt-card {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.15s ease-out;
  animation: heroFloat 5s ease-in-out infinite;
}

.hero-product-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

/* Shine overlay — moves with mouse */
.hero-tilt-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 20px;
  background: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    rgba(255,255,255,0.15),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero-tilt-wrap:hover .hero-tilt-shine {
  opacity: 1;
}

/* Dynamic shadow under the card */
.hero-tilt-shadow {
  width: 80%;
  height: 32px;
  margin-top: 24px;
  background: radial-gradient(ellipse, rgba(234,179,8,0.35), transparent 70%);
  filter: blur(12px);
  transition: transform 0.15s ease-out, opacity 0.15s ease-out;
  animation: shadowFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotateX(2deg) rotateY(0deg); }
  50%      { transform: translateY(-16px) rotateX(0deg) rotateY(0deg); }
}
@keyframes shadowFloat {
  0%, 100% { opacity: 0.7; transform: scaleX(1); }
  50%      { opacity: 0.4; transform: scaleX(0.85); }
}

.scene {
  width: 420px;
  height: 320px;
  perspective: 1000px;
  position: relative;
}

.mask-3d {
  width: 100%;
  height: 100%;
  position: relative;
  animation: floatMask 5s ease-in-out infinite;
  transform-style: preserve-3d;
}
@keyframes floatMask {
  0%, 100% { transform: translateY(0px) rotateX(4deg) rotateY(-8deg); }
  50%       { transform: translateY(-18px) rotateX(2deg) rotateY(-4deg); }
}

.mask-body { width: 100%; height: 100%; position: relative; }

.mask-frame {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #1e2028, #2a2d38, #1a1d25);
  border-radius: 52% 52% 44% 44% / 62% 62% 42% 42%;
  position: relative;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.1);
  overflow: hidden;
}
.mask-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent);
  border-radius: 0 0 50% 50%;
}

.mask-lens-wrap {
  position: absolute;
  top: 22%; left: 8%; right: 8%;
  height: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mask-lens {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1c1200, #2d1e00, #1c1200);
  border-radius: 44% 44% 38% 38% / 55% 55% 44% 44%;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(234,179,8,0.2),
    inset 0 -1px 0 rgba(0,0,0,0.3);
}

.lens-reflection {
  position: absolute;
  top: 5%; left: 5%; right: 40%;
  height: 35%;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  border-radius: 50%;
  filter: blur(4px);
}
.lens-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(234,179,8,0.07) 0%,
    transparent 50%,
    rgba(167,139,250,0.05) 100%
  );
}

.film-badge {
  position: absolute;
  bottom: 8px; right: 12px;
  text-align: right;
}
.film-badge span {
  display: block;
  font-size: 0.45rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: rgba(253,224,71,0.8);
}
.film-badge small {
  display: block;
  font-size: 0.38rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
}

.mask-nose {
  position: absolute;
  bottom: 8%; left: 50%;
  transform: translateX(-50%);
  width: 20%; height: 18%;
  background: linear-gradient(180deg, #2a2d38, #1a1d25);
  border-radius: 0 0 12px 12px;
}

/* Particles around mask */
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  animation: particleFloat 4s ease-in-out infinite;
}
.p1 { width: 8px; height: 8px; top: 10%; left: 5%;  opacity: 0.6; animation-delay: 0s;    animation-duration: 3.5s; }
.p2 { width: 5px; height: 5px; top: 70%; right: 5%; opacity: 0.4; animation-delay: 1s;    animation-duration: 4.5s; }
.p3 { width: 6px; height: 6px; top: 30%; right: 8%; opacity: 0.5; animation-delay: 0.5s;  animation-duration: 5s; }
.p4 { width: 4px; height: 4px; bottom: 10%; left: 10%; opacity: 0.3; animation-delay: 2s; animation-duration: 3s; }
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-14px) scale(1.2); }
}

.mask-shadow {
  position: absolute;
  bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 24px;
  background: radial-gradient(ellipse, rgba(234,179,8,0.3), transparent 70%);
  filter: blur(8px);
  animation: shadowPulse 5s ease-in-out infinite;
}
@keyframes shadowPulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scaleX(1); }
  50%       { opacity: 0.4; transform: translateX(-50%) scaleX(0.8); }
}

/* Hero scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.25);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.3));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.3); }
}

/* ============ STATS ============ */
.stats-section {
  background: var(--dark);
  border-bottom: 1px solid var(--border-dark);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item { text-align: center; padding: 0 52px; flex: 1; min-width: 130px; }
.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number span { font-size: 1.4rem; color: var(--accent2); margin-left: 2px; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.35); font-weight: 500; }

.stat-sep {
  width: 1px; height: 52px;
  background: var(--border-dark);
  flex-shrink: 0;
}

/* ============ FEATURES ============ */
.features-section {
  padding: 120px 24px;
  background: var(--light);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features-inner > .section-tag,
.features-inner > .section-title {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.features-inner > .section-title { margin-bottom: 64px; }

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

.feat-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 36px 32px;
  cursor: default;
  transition: box-shadow 0.3s, transform 0.1s;
  transform-style: preserve-3d;
  will-change: transform;
}
.feat-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.feat-icon-wrap {
  width: 52px; height: 52px;
  background: var(--light2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feat-icon { font-size: 1.6rem; }

.feat-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.feat-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============ PRODUCT ============ */
.product-section {
  background: var(--dark);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}
.product-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(234,179,8,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.product-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

/* Product image */
.product-img-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-hero-img {
  width: 100%;
  height: auto;
  max-width: 520px;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

/* Product 3D pack */
.product-3d-wrap { flex: 1; display: flex; justify-content: center; }

.product-float {
  position: relative;
  animation: floatPack 5s ease-in-out infinite;
}
@keyframes floatPack {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}

.pack-3d {
  width: 260px;
  height: 360px;
  cursor: default;
  transform-style: preserve-3d;
  will-change: transform;
}

.pack-front {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #78350f 0%, #d97706 50%, #92400e 100%);
  border-radius: 24px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.1),
    inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.pack-front::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), transparent);
  border-radius: 24px 24px 0 0;
}

.pack-brand {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  position: relative;
}

.pack-films {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  position: relative;
}

.pack-film-item {
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
}
.f1 { height: 72px; }
.f2 { height: 56px; opacity: 0.7; }

.pfi-shine {
  position: absolute;
  top: 0; left: -40%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shine 3s ease-in-out infinite;
  will-change: transform;
}
.f2 .pfi-shine { animation-delay: 0.8s; }
@keyframes shine {
  0%   { transform: translateX(0); }
  60%, 100% { transform: translateX(450%); }
}

.pack-info {
  text-align: center;
  margin-top: 20px;
  position: relative;
}
.pack-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.pack-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
}

.pack-qty {
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
  position: relative;
}

.product-glow {
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 180px; height: 40px;
  background: radial-gradient(ellipse, rgba(234,179,8,0.5), transparent 70%);
  filter: blur(10px);
}

/* Product details */
.product-details { flex: 1; }
.product-details .section-title { margin-bottom: 20px; }

.product-desc {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.specs-list {
  list-style: none;
  margin-bottom: 36px;
}
.specs-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-dark);
  font-size: 0.88rem;
}
.spec-key {
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  min-width: 120px;
}
.spec-val { color: rgba(255,255,255,0.45); text-align: right; }

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
}
.prod-price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
}
.prod-shipping { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ============ HOW IT WORKS ============ */
.how-section {
  padding: 120px 24px;
  background: var(--white);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.how-inner > .section-tag,
.how-inner > .section-title {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.how-inner > .section-title { margin-bottom: 72px; }

.steps-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.step-card {
  flex: 1;
  background: var(--light);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.2s;
}
.step-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
  transform: translateY(-4px);
}

.step-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(234,179,8,0.15);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.step-icon { font-size: 2rem; margin-bottom: 16px; }
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.steps-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
  flex-shrink: 0;
}
.connector-line {
  width: 32px; height: 1px;
  background: var(--border-light);
}
.connector-arrow {
  width: 20px; height: 20px;
  color: #cbd5e1;
}

/* ============ BUY ============ */
.buy-section {
  padding: 120px 24px;
  background: var(--light);
}
.buy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.buy-left { flex: 1; }
.buy-left .section-title { margin-bottom: 36px; }

.packs { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }

.pack-option {
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: 14px;
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.pack-option:hover { border-color: #93c5fd; }
.pack-option.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(234,179,8,0.1);
}

.po-left { display: flex; align-items: center; gap: 14px; }
.po-radio {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.pack-option.active .po-radio { border-color: var(--accent); }
.po-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s, transform 0.2s;
}
.pack-option.active .po-dot { opacity: 1; transform: scale(1); }

.po-name { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); }
.po-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.po-price { font-size: 1.15rem; font-weight: 800; color: var(--text-dark); }

.po-badge {
  position: absolute;
  top: -1px; right: 16px;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.5px;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-b {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Order form */
.buy-right { flex: 1; }

.order-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.order-box h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--text-dark);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.field-row { display: flex; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; flex: 1; }
label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.5px; }

input {
  background: var(--light);
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(234,179,8,0.12);
}
input::placeholder { color: #c4c9d4; }

.order-summary {
  background: rgba(234,179,8,0.06);
  border: 1px solid rgba(234,179,8,0.18);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.order-summary strong { color: var(--accent); font-weight: 700; }

/* Success */
.success-state {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.success-state.visible { display: block; }
.success-check {
  width: 72px; height: 72px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 20px;
}
.success-state h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.success-state p { color: var(--text-muted); font-size: 0.9rem; }

/* ============ FOOTER ============ */
.footer {
  background: var(--dark);
  padding: 64px 24px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 28px;
}

.footer-left p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  line-height: 1.7;
}
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.footer-right a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-right a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-lang a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-lang a:hover { color: var(--white); }

.footer-nav {
  display: flex;
  gap: 60px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.footer-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

/* ============ STORY ============ */
.story-section {
  padding: 120px 24px;
  background: var(--white);
}
.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: center;
}
.story-text { flex: 1; }
.story-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.story-text strong { color: var(--text-dark); font-weight: 700; }
.story-text .section-title { margin-bottom: 24px; }

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.story-tag {
  background: var(--light2);
  border: 1px solid var(--border-light);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.story-visual { flex: 1; display: flex; justify-content: center; }

.story-card {
  width: 100%;
  max-width: 380px;
  background: var(--dark);
  border-radius: 24px;
  overflow: hidden;
  cursor: default;
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}
.story-card-bg {
  height: 160px;
  background: linear-gradient(135deg, #1a1200, #3d2800, #78350f);
  position: relative;
  overflow: hidden;
}
.story-card-bg::after {
  content: '🏔️';
  position: absolute;
  font-size: 5rem;
  bottom: -10px;
  right: 20px;
  opacity: 0.3;
}
.story-card-content {
  padding: 32px;
}
.story-quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  font-weight: 900;
  margin-bottom: 12px;
}
.story-quote-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.story-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: #1a1000;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}
.author-loc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}

/* ============ COMPATIBILITY ============ */
.compat-section {
  background: var(--light);
  padding: 100px 24px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.compat-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.compat-text { flex: 1; }
.compat-text .section-title { margin-bottom: 20px; }
.compat-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.compat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.compat-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.compat-check {
  width: 28px; height: 28px;
  background: rgba(234,179,8,0.12);
  border: 1.5px solid rgba(234,179,8,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.compat-list strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.compat-list span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.compat-brands { flex: 1; }
.brands-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.brand-chip {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.brand-chip:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(234,179,8,0.15);
}
.brands-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 16px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

/* ============ PRODUCT — pack-origin ============ */
.pack-origin {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
  margin-top: -20px;
  margin-bottom: 16px;
}

/* ============ BUY — buy-desc, po-contents, select ============ */
.buy-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
.po-contents {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.field-select {
  width: 100%;
  background: var(--light);
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  cursor: pointer;
}
.field-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(234,179,8,0.12);
}

/* ============ FAQ ============ */
.faq-section {
  padding: 120px 24px;
  background: var(--light);
}
.faq-inner {
  max-width: 860px;
  margin: 0 auto;
}
.faq-inner > .section-tag,
.faq-inner > .section-title {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.faq-inner > .section-title { margin-bottom: 56px; }

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
.faq-item:first-of-type { border-top: 1px solid var(--border-light); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q.open { color: var(--accent); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-q.open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-a.open {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-a p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============ NEWSLETTER ============ */
.newsletter-section {
  background: var(--dark);
  padding: 100px 24px;
  border-top: 1px solid var(--border-dark);
}
.newsletter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
.nl-text { flex: 1; min-width: 280px; }
.nl-text p {
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 16px;
}
.nl-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nl-input {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nl-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(234,179,8,0.12);
}
.nl-input::placeholder { color: rgba(255,255,255,0.25); }
.nl-note {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

/* ============ LUCIDE ICONS ============ */
.feat-icon-wrap svg { width: 26px; height: 26px; stroke: var(--accent); stroke-width: 1.75; }
.step-icon svg      { width: 28px; height: 28px; stroke: var(--accent); stroke-width: 1.75; }
.story-tag svg      { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; vertical-align: middle; margin-right: 4px; }
.compat-check svg   { width: 13px; height: 13px; stroke: var(--accent); stroke-width: 2.5; }
.trust-b svg        { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; vertical-align: middle; margin-right: 6px; }

/* ============ PRODUCT CTA ROW ============ */
.product-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-fiche {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.btn-fiche:hover { color: var(--white); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-inner       { flex-direction: column; text-align: center; padding-top: 110px; }
  .hero-sub         { margin: 0 auto 40px; }
  .hero-btns        { justify-content: center; }
  .hero-trust       { justify-content: center; }
  .hero-3d          { display: flex; order: -1; }
  .hero-product-img { max-width: 280px; border-radius: 12px; }
  .hero-tilt-shadow { display: none; }
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .product-inner    { flex-direction: column; gap: 60px; }
  .buy-inner        { flex-direction: column; gap: 48px; }
  .steps-row        { flex-direction: column; }
  .steps-connector  { transform: rotate(90deg); }
  .step-card        { max-width: 100%; }
  .stat-sep         { display: none; }
  .stat-item        { padding: 16px 24px; }
  .story-inner      { flex-direction: column; gap: 48px; }
  .compat-inner     { flex-direction: column; gap: 48px; }
  .newsletter-inner { flex-direction: column; gap: 40px; }
  .footer-nav       { gap: 32px; }
}

@media (max-width: 600px) {
  /* --- Nav --- */
  .nav-links        { display: none; }
  .burger           { display: flex; }
  .nav-inner        { height: 56px; padding: 0 16px; }
  .logo             { font-size: 1.05rem; letter-spacing: 2px; }

  /* --- Hero --- */
  .hero h1          { font-size: clamp(1.8rem, 8vw, 2.8rem); margin-bottom: 14px; }
  .hero-inner       { padding: 90px 16px 50px; gap: 32px; }
  .hero-badge       { font-size: 0.62rem; padding: 5px 10px; margin-bottom: 16px; }
  .hero-sub         { font-size: 0.82rem; line-height: 1.6; margin-bottom: 24px; }
  .hero-price-row   { margin-bottom: 16px; gap: 8px; }
  .hero-price       { font-size: 1.5rem; }
  .hero-price-note  { font-size: 0.72rem; }
  .hero-btns        { flex-direction: column; gap: 8px; margin-bottom: 24px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost { width: 100%; justify-content: center; }
  .hero-trust       { gap: 8px; }
  .trust-item       { font-size: 0.7rem; }
  .sticky-buy-bar   { display: block; }

  /* --- Boutons globaux --- */
  .btn-primary      { padding: 11px 20px; font-size: 0.82rem; border-radius: 10px; }
  .btn-ghost        { padding: 11px 20px; font-size: 0.82rem; }

  /* --- Stats --- */
  .stats-inner      { flex-direction: column; gap: 16px; padding: 24px 16px; }
  .stat-item        { padding: 0; }
  .stat-number      { font-size: 1.6rem; }
  .stat-number span { font-size: 1rem; }
  .stat-label       { font-size: 0.7rem; }
  .stat-sep         { display: none; }

  /* --- Sections — espacement réduit --- */
  .features-section { padding: 60px 16px; }
  .product-section  { padding: 60px 16px; }
  .how-section      { padding: 60px 16px; }
  .story-section    { padding: 60px 16px; }
  .compat-section   { padding: 60px 16px; }
  .faq-section      { padding: 60px 16px; }
  .newsletter-section { padding: 60px 16px; }

  /* --- Titres --- */
  .section-tag      { font-size: 0.62rem; letter-spacing: 2px; margin-bottom: 10px; }
  .section-title    { font-size: clamp(1.4rem, 5.5vw, 2rem); }
  .features-inner > .section-title { margin-bottom: 32px; }
  .how-inner > .section-title      { margin-bottom: 32px; }

  /* --- Feature cards --- */
  .features-grid    { grid-template-columns: 1fr; gap: 12px; }
  .feat-card        { padding: 24px 20px; border-radius: 14px; }
  .feat-icon-wrap   { width: 36px; height: 36px; border-radius: 9px; margin-bottom: 12px; }
  .feat-card h3     { font-size: 0.9rem; margin-bottom: 6px; }
  .feat-card p      { font-size: 0.78rem; line-height: 1.55; }

  /* --- Steps --- */
  .steps-connector  { display: none; }
  .step-card        { padding: 24px 20px; border-radius: 14px; }
  .step-num         { font-size: 0.7rem; }
  .step-card h3     { font-size: 0.9rem; }
  .step-card p      { font-size: 0.78rem; }

  /* --- Story --- */
  .story-inner      { gap: 32px; }
  .story-section p  { font-size: 0.82rem; line-height: 1.6; }
  .story-tags       { gap: 6px; }
  .story-tag        { font-size: 0.7rem; padding: 5px 10px; }
  .story-quote-text { font-size: 0.85rem; }
  .story-card       { padding: 24px; }

  /* --- Compat --- */
  .compat-inner     { gap: 32px; }
  .compat-desc      { font-size: 0.82rem; }
  .compat-list li   { font-size: 0.82rem; }
  .compat-brands    { gap: 6px; }
  .brand-chip       { font-size: 0.7rem; padding: 6px 10px; }
  .brands-note      { font-size: 0.75rem; }

  /* --- Product section --- */
  .product-inner    { gap: 32px; }
  .product-desc     { font-size: 0.82rem; }
  .specs-list li    { font-size: 0.78rem; }
  .prod-price       { font-size: 1.6rem; }
  .prod-shipping    { font-size: 0.72rem; }

  /* --- FAQ --- */
  .faq-q span       { font-size: 0.85rem; }
  .faq-a p          { font-size: 0.78rem; line-height: 1.6; }

  /* --- Newsletter --- */
  .nl-form          { flex-direction: column; }
  .nl-input         { width: 100%; padding: 11px 14px; font-size: 0.85rem; }
  .nl-form .btn-primary { width: 100%; justify-content: center; }
  .newsletter-inner p { font-size: 0.82rem; }

  /* --- Footer --- */
  .footer            { padding: 40px 16px 24px; }
  .footer-inner      {
    flex-direction: column;
    gap: 32px;
    text-align: center;
    padding: 0 0 28px;
    align-items: center;
  }
  .footer-left       { display: flex; flex-direction: column; align-items: center; }
  .footer-left .logo { font-size: 1.1rem; }
  .footer-left p     { font-size: 0.8rem; line-height: 1.7; text-align: center; }

  .footer-nav        {
    flex-direction: row;
    gap: 40px;
    width: 100%;
    justify-content: center;
  }
  .footer-col        { align-items: center; text-align: center; }
  .footer-col-title  { font-size: 0.7rem; margin-bottom: 8px; }
  .footer-col a      { font-size: 0.82rem; padding: 4px 0; }

  .footer-bottom     {
    flex-direction: column;
    gap: 6px;
    padding: 20px 0 0;
    text-align: center;
    align-items: center;
  }
  .footer-bottom span { font-size: 0.72rem; }
  .footer-lang a      { font-size: 0.72rem; }

  /* Espace en bas pour sticky CTA */
  .footer             { padding-bottom: calc(24px + 70px + env(safe-area-inset-bottom)); }

  /* --- Divers --- */
  .field-row        { flex-direction: column; }
  .order-box        { padding: 24px 16px; }
}

@media (max-width: 380px) {
  .hero-inner       { padding: 80px 12px 40px; }
  .hero h1          { font-size: 1.6rem; }
  .hero-trust       { flex-direction: column; gap: 4px; align-items: center; }
  .nav-inner        { padding: 0 12px; }
  .lang-switcher    { gap: 0; }
  .section-title    { font-size: 1.3rem; }
  .btn-primary      { padding: 10px 16px; font-size: 0.78rem; }
}
