/* ====================================================
   TRAP DESIGN — Charte officielle
   Bebas Neue + Inter · Rouge/Rose dominant · Vert accent
   ==================================================== */

:root {
  /* Neutrals */
  --bg: #0A0A0A;
  --bg-2: #111111;
  --surface: #1A1A1A;
  --surface-2: #222222;
  --hairline: rgba(255, 255, 255, 0.07);
  --hairline-strong: rgba(255, 255, 255, 0.14);
  --ink: #F5F5F5;
  --ink-2: #C9C9C9;
  --ink-3: #888888;
  --ink-4: #555555;

  /* Primaires */
  --red: #FF2E53;
  --pink: #FF408D;
  --green: #22CE5E;

  /* Accents */
  --blue: #0CE6F1;
  --violet: #A855F7;
  --orange: #FFBA00;

  /* Variantes */
  --red-deep: #B81B36;
  --pink-deep: #C42569;
  --green-deep: #128A3F;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --max: 1440px;
  --gutter: 48px;

  --shadow-red: 0 0 90px -10px rgba(255, 46, 83, 0.55);
  --shadow-pink: 0 0 90px -10px rgba(255, 64, 141, 0.55);
  --shadow-green: 0 0 60px -10px rgba(34, 206, 94, 0.45);
}

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

html, body { background: var(--bg); color: var(--ink); }
body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.5;
}

img, svg { display: block; max-width: 100%; }

::selection { background: var(--red); color: var(--bg); }

/* ============== TYPOGRAPHY ============== */

.display {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.92;
  text-transform: uppercase;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
}
.eyebrow.green .dot { background: var(--green); box-shadow: 0 0 12px var(--green); }
.eyebrow.pink .dot { background: var(--pink); box-shadow: 0 0 12px var(--pink); }

.h-red { color: var(--red); }
.h-pink { color: var(--pink); }
.h-green { color: var(--green); }
.h-ink2 { color: var(--ink-2); }

.gradient-text-trap {
  background: linear-gradient(180deg, var(--pink) 0%, var(--red) 50%, var(--red-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mono {
  font-family: 'Inter', monospace;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
}

/* ============== LAYOUT ============== */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

section { position: relative; isolation: isolate; }

/* ============== NAV ============== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(10,10,10,0.94) 0%, rgba(10,10,10,0.6) 80%, rgba(10,10,10,0) 100%);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}

.logo {
  display: flex; align-items: center; gap: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.logo .l1 { color: var(--red); }
.logo .l2 { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
}
.nav-links a.active { color: var(--green); }
.nav-links a.active::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--hairline-strong);
  background: rgba(255,255,255,0.02);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
}
.nav-cta .arrow { color: var(--red); }

/* ============== BUTTONS ============== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--red);
  color: #FFFFFF;
  box-shadow: 0 10px 40px -10px rgba(255,46,83,0.6), inset 0 -2px 0 rgba(0,0,0,0.25);
}
.btn-ghost {
  background: rgba(255,255,255,0.03);
  color: var(--ink);
  border-color: var(--hairline-strong);
}
.btn-pink {
  background: var(--pink);
  color: #FFFFFF;
  box-shadow: 0 10px 40px -10px rgba(255,64,141,0.6), inset 0 -2px 0 rgba(0,0,0,0.25);
}
.btn-green {
  background: var(--green);
  color: #06200E;
  box-shadow: 0 10px 40px -10px rgba(34,206,94,0.5), inset 0 -2px 0 rgba(0,0,0,0.2);
}
.btn .arrow { width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; }

/* ============== HERO ============== */

.hero {
  padding: 64px var(--gutter) 100px;
  position: relative;
  min-height: 92vh;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-copy { padding-top: 24px; }
.hero-copy .eyebrow { margin-bottom: 36px; }

.hero-title {
  font-size: clamp(64px, 8.5vw, 140px);
  margin-bottom: 28px;
}
.hero-title .line { display: block; }

.hero-sub {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 480px;
  margin: 0 0 40px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 44px;
  align-items: start;
}
.stat .v {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
  display: flex; align-items: baseline; gap: 4px;
}
.stat .v .glyph { color: var(--green); font-size: 22px; }
.stat .v .glyph.red { color: var(--red); }
.stat .v .glyph.pink { color: var(--pink); }
.stat .l { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }

/* Hero stage — packshot */
.hero-stage {
  position: relative;
  aspect-ratio: 1 / 1.02;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(60% 50% at 50% 45%, rgba(255,46,83,0.32) 0%, rgba(255,46,83,0) 70%),
    radial-gradient(60% 50% at 70% 70%, rgba(255,64,141,0.22) 0%, rgba(255,64,141,0) 70%),
    radial-gradient(circle at 30% 30%, #1A0509 0%, #0A0306 100%);
  border: 1px solid var(--hairline);
  overflow: hidden;
  box-shadow: var(--shadow-red);
}
.hero-stage::before {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 35%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 2;
}
.hero-stage::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(255,255,255,0) 35%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 60%);
  z-index: 3;
  pointer-events: none;
}

.packshot {
  position: absolute;
  left: 50%; top: 48%;
  transform: translate(-50%, -50%);
  width: 56%;
  aspect-ratio: 0.72 / 1;
  border-radius: 18px;
  background: linear-gradient(180deg, #0F0408 0%, #1A0710 60%, #260A18 100%);
  border: 1px solid rgba(255,46,83,0.25);
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.8),
    0 0 80px -10px rgba(255,46,83,0.5),
    inset 0 1px 0 rgba(255,255,255,0.06);
  z-index: 2;
  overflow: hidden;
}
.packshot::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 35%);
}
.packshot-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center;
  justify-content: space-between;
  padding: 26px 22px;
  text-align: center;
}
.packshot .leaf {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: var(--green);
  letter-spacing: 0.18em;
  display: flex; align-items: center; gap: 6px;
}
.packshot .brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  line-height: 0.88;
  letter-spacing: 0.02em;
}
.packshot .brand .ln1 { color: var(--red); display:block; }
.packshot .brand .ln2 { color: var(--green); display:block; }
.packshot .tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-top: -4px;
}
.packshot .variety {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-deep) 100%);
  padding: 8px 18px;
  border-radius: 6px;
  width: 90%;
}
.packshot .meta {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  display: flex; gap: 14px;
  text-transform: uppercase;
}
.packshot .meta b { color: var(--green); font-weight: 700; }

/* Splash droplets */
.droplet {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, var(--pink) 0%, var(--red) 50%, var(--red-deep) 100%);
  box-shadow: 0 0 30px -5px rgba(255,46,83,0.6), inset 0 -3px 6px rgba(0,0,0,0.3);
  z-index: 1;
}
.droplet.green { background: radial-gradient(circle at 30% 25%, #6EF09A 0%, var(--green) 60%, var(--green-deep) 100%); box-shadow: 0 0 30px -5px rgba(34,206,94,0.6), inset 0 -3px 6px rgba(0,0,0,0.3); }
.droplet.d1 { width: 70px; height: 70px; top: 14%; right: 10%; }
.droplet.d2 { width: 32px; height: 32px; top: 28%; right: 22%; }
.droplet.d3 { width: 50px; height: 50px; bottom: 18%; left: 8%; }
.droplet.d4 { width: 22px; height: 22px; bottom: 12%; right: 18%; }
.droplet.d5 { width: 40px; height: 40px; top: 8%; left: 18%; }
.droplet.d6 { width: 18px; height: 18px; top: 50%; right: 6%; }

.hero-stage-tag {
  position: absolute;
  top: 22px; left: 22px;
  z-index: 4;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: rgba(0,0,0,0.55);
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hero-stage-tag .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 12px var(--green);
}

.hero-stage-corner {
  position: absolute;
  bottom: 22px; right: 22px;
  z-index: 4;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  text-align: right;
  line-height: 1.6;
  text-transform: uppercase;
}
.hero-stage-corner b { color: var(--ink); font-weight: 700; }

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  background:
    radial-gradient(80% 50% at 80% 20%, rgba(255,46,83,0.18) 0%, rgba(255,46,83,0) 60%),
    radial-gradient(70% 50% at 10% 80%, rgba(255,64,141,0.14) 0%, rgba(255,64,141,0) 60%),
    radial-gradient(60% 40% at 60% 90%, rgba(34,206,94,0.06) 0%, rgba(34,206,94,0) 70%);
  pointer-events: none;
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
  opacity: 0.4;
}

.socials-rail {
  position: absolute;
  right: 18px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 14px;
  z-index: 5;
}
.socials-rail a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  background: rgba(0,0,0,0.4);
  display: grid; place-items: center;
  color: var(--ink-2);
}

/* ============== TRANSITION ============== */

.transition {
  padding: 72px var(--gutter) 80px;
  text-align: center;
  position: relative;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background:
    radial-gradient(60% 100% at 50% 50%, rgba(255,46,83,0.08) 0%, rgba(255,46,83,0) 70%),
    var(--bg);
}
.transition .marquee-bg {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 280px;
  white-space: nowrap;
  color: rgba(255,255,255,0.025);
  letter-spacing: 0.02em;
  user-select: none;
  pointer-events: none;
}
.transition-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.transition-eyebrow { margin-bottom: 32px; }
.transition-title {
  font-size: clamp(44px, 5.8vw, 92px);
  line-height: 1.05;
  letter-spacing: 0.01em;
}
.transition-title em {
  font-style: normal;
  background: linear-gradient(180deg, var(--pink) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.transition-title .green {
  background: linear-gradient(180deg, #6EF09A 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.transition-meta {
  display: flex; justify-content: center; flex-wrap: nowrap; gap: 36px;
  margin-top: 52px;
  color: var(--ink-3);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow-x: auto;
}
.transition-meta span::before { content: '— '; color: var(--red); }

/* ============== SECTION HEADER ============== */

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 48px;
}
.section-header h2 { font-size: clamp(56px, 6vw, 100px); max-width: 760px; }
.section-header > p {
  max-width: 380px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.55;
}
.section-copy-card {
  flex: 1;
  border: none;
  border-left: 2px solid rgba(255,46,83,.35);
  background: none;
  border-radius: 0;
  padding: 4px 0 4px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: stretch;
  justify-content: flex-end;
}
.section-copy-card .scc-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
}
.section-copy-card p {
  color: rgba(255,255,255,.52);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  margin: 0;
}

/* Prix inline par section */
.svc-price {
  display: inline-flex; align-items: baseline; gap: 10px;
  margin-top: 18px;
}
.svc-price-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-3);
}
.svc-price-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px; letter-spacing: .02em; line-height: 1;
  color: var(--red);
}
.svc-price-note {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-4);
}

.section-index {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 220px;
  position: absolute;
  right: var(--gutter);
  top: -20px;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  user-select: none;
}

/* ============== BRANDING ============== */

.branding { padding: 60px 0 40px; position: relative; }
.branding-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; }

.branding-main {
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  background:
    radial-gradient(60% 80% at 30% 30%, rgba(255,46,83,0.18) 0%, rgba(0,0,0,0) 70%),
    var(--surface);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.branding-main::after {
  content: '';
  position: absolute;
  top: 0; right: 18%;
  width: 120px; height: 180px;
  background: radial-gradient(60% 100% at 50% 0%, var(--red) 0%, var(--red-deep) 60%, rgba(0,0,0,0) 80%);
  filter: blur(12px);
  opacity: 0.55;
  border-radius: 0 0 60% 60%;
  pointer-events: none;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.logo-card {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #1A1A1A 0%, #0E0E0E 100%);
  border: 1px solid var(--hairline);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.logo-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 40%);
}
.logo-card .label {
  position: absolute; bottom: 12px; left: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ink-4);
  text-transform: uppercase;
}
.logo-card.red-bg { background: linear-gradient(180deg, #2A0916 0%, #160508 100%); }
.logo-card.green-bg { background: linear-gradient(180deg, #08200E 0%, #04100A 100%); }

.lg-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  line-height: 0.85;
  letter-spacing: 0.02em;
}
.lg-mark .a { color: var(--red); display: block; }
.lg-mark .b { color: var(--green); display: block; }

.lg-mono {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 46px;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.lg-mono.green { color: var(--green); }
.lg-mono.red { color: var(--red); }
.lg-mono.pink { color: var(--pink); }

.lg-circle {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--pink), var(--red-deep));
  box-shadow: inset 0 -8px 16px rgba(0,0,0,0.4), 0 0 30px -5px rgba(255,46,83,0.5);
  position: relative;
}
.lg-circle::after {
  content: ''; position: absolute; top: 12px; left: 18px;
  width: 24px; height: 14px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  filter: blur(2px);
}

.branding-side { display: grid; grid-template-rows: auto 1fr; gap: 28px; }

.branding-list {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.branding-list h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.branding-list ul { list-style: none; }
.branding-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--hairline);
  font-size: 14px;
  color: var(--ink-2);
}
.branding-list li:first-child { border-top: 0; }
.branding-list li .num {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.12em;
}
.branding-list li .ck {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  display: grid; place-items: center;
  color: #06200E;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 0 14px -2px rgba(34,206,94,0.6);
}

.branding-quote {
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(34,206,94,0.1) 0%, rgba(34,206,94,0) 70%),
    var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}
.branding-quote .qmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px;
  color: var(--green);
  line-height: 0.6;
  margin-bottom: 18px;
}
.branding-quote p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ============== PACKAGING ============== */

.packaging {
  padding: 60px 0 72px;
  background:
    radial-gradient(70% 50% at 50% 0%, rgba(255,46,83,0.07) 0%, rgba(0,0,0,0) 60%),
    var(--bg);
  border-top: 1px solid var(--hairline);
  position: relative;
}

.pack-hero {
  position: relative;
  margin-top: 12px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(60% 60% at 50% 40%, rgba(255,46,83,0.28) 0%, rgba(0,0,0,0) 70%),
    radial-gradient(40% 40% at 80% 70%, rgba(255,64,141,0.22) 0%, rgba(0,0,0,0) 70%),
    linear-gradient(180deg, #14060B 0%, #060208 100%);
  border: 1px solid var(--hairline);
  overflow: hidden;
  height: 580px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: stretch;
}

.pack-side {
  padding: 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-right: 1px solid var(--hairline);
}
.pack-side.right { border-right: 0; border-left: 1px solid var(--hairline); align-items: flex-end; text-align: right; }
.pack-side h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pack-side h4 .red { color: var(--red); }
.pack-side h4 .green { color: var(--green); }
.pack-side p {
  color: var(--ink-3);
  font-size: 13px;
  max-width: 220px;
  line-height: 1.55;
}
.pack-side .micro {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-4);
  text-transform: uppercase;
}
.pack-side .progress { display: flex; gap: 6px; margin-top: 16px; }
.pack-side .bar { height: 3px; flex: 1; background: var(--hairline-strong); border-radius: 2px; }
.pack-side .bar.active { background: var(--red); box-shadow: 0 0 10px var(--red); }

.pack-stage {
  position: relative;
  display: grid;
  place-items: center;
}
.pack-stage::before {
  content: '';
  position: absolute;
  bottom: 8%;
  left: 50%; transform: translateX(-50%);
  width: 70%; height: 60px;
  background: radial-gradient(50% 50% at 50% 50%, var(--red) 0%, rgba(255,46,83,0) 70%);
  filter: blur(20px);
  opacity: 0.6;
}
.pack-stage::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
}

.pack-card {
  position: relative;
  width: 320px;
  aspect-ratio: 0.72 / 1;
  border-radius: 20px;
  background: linear-gradient(180deg, #1A0710 0%, #0A0306 100%);
  border: 1px solid rgba(255,46,83,0.3);
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.9),
    0 0 100px -10px rgba(255,46,83,0.6),
    inset 0 1px 0 rgba(255,255,255,0.08);
  z-index: 2;
  overflow: hidden;
  padding: 32px 24px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  text-align: center;
}
.pack-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 30%);
  pointer-events: none;
}
.pack-card .pc-leaf {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--green);
  text-transform: uppercase;
}
.pack-card .pc-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 70px;
  line-height: 0.88;
  letter-spacing: 0.02em;
  margin: 8px 0;
}
.pack-card .pc-brand .a { color: var(--red); display: block; }
.pack-card .pc-brand .b { color: var(--green); display: block; }
.pack-card .pc-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-top: -6px;
}
.pack-card .pc-variety {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-deep) 100%);
  padding: 10px 20px;
  border-radius: 6px;
  width: 90%;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.3);
  color: #FFFFFF;
}
.pack-card .pc-meta {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  display: flex; gap: 16px;
  text-transform: uppercase;
}
.pack-card .pc-meta b { color: var(--green); font-weight: 700; }

.pack-card.var-gelato { border-color: rgba(168,85,247,0.4); box-shadow: 0 40px 80px -20px rgba(0,0,0,0.9), 0 0 100px -10px rgba(168,85,247,0.55), inset 0 1px 0 rgba(255,255,255,0.08); }
.pack-card.var-gelato .pc-variety { background: linear-gradient(90deg, var(--violet) 0%, #5A1F8C 100%); }
.pack-card.var-milk .pc-variety { background: linear-gradient(90deg, var(--green) 0%, var(--green-deep) 100%); color: #06200E; }
.pack-card.var-candy .pc-variety { background: linear-gradient(90deg, var(--pink) 0%, var(--pink-deep) 100%); }

.pack-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.pack-thumb {
  position: relative;
  aspect-ratio: 0.85 / 1;
  border-radius: 18px;
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, #14060B 0%, #07020A 100%);
  overflow: hidden;
  padding: 22px 18px;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.pack-thumb.active { border-color: var(--red); box-shadow: 0 0 0 1px var(--red), 0 0 40px -10px rgba(255,46,83,0.5); }
.pack-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 40%);
}
.pack-thumb .pt-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  line-height: 0.88;
  letter-spacing: 0.02em;
}
.pack-thumb .pt-brand .a { color: var(--red); display:block; }
.pack-thumb .pt-brand .b { color: var(--green); display:block; }
.pack-thumb .pt-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pack-thumb .pt-meta {
  display: flex; justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ink-4);
  text-transform: uppercase;
}
.pack-thumb .pt-meta b { color: var(--ink-2); font-weight: 700; }

/* thumb image + nom — structure nouvelle */
.pack-thumb .pt-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  margin-bottom: 10px;
}
.pack-thumb .pt-img-wrap img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.pack-thumb .pt-brand-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 4px;
}

/* ============== CONTENU VISUEL ============== */

.content-visual { padding: 60px 0; position: relative; }
.cv-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: stretch; }

.feed-frame {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.feed-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 22px;
}
.feed-acct { display: flex; align-items: center; gap: 14px; }
.feed-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--pink), var(--red-deep));
  display: grid; place-items: center;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--green);
  font-size: 18px;
  letter-spacing: 0.04em;
}
.feed-acct .h { font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 6px; }
.feed-acct .h .dot { width: 14px; height: 14px; background: var(--green); border-radius: 50%; display:grid; place-items:center; color: #06200E; font-size: 8px; font-weight: 800; }
.feed-acct .s { font-size: 11px; color: var(--ink-3); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.feed-bar .follow {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--green);
  color: #06200E;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.feed-stats { display: flex; gap: 28px; }
.feed-stats div { text-align: center; }
.feed-stats .v { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 0.02em; }
.feed-stats .l { font-size: 10px; color: var(--ink-3); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }

.feed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.tile {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background: #0E0E0E;
  border: 1px solid var(--hairline);
}
.tile::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 8px);
}
.tile-label {
  position: absolute; left: 8px; bottom: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 8px; letter-spacing: 0.18em;
  color: var(--ink-3); text-transform: uppercase;
  background: rgba(0,0,0,0.5);
  padding: 4px 6px; border-radius: 4px;
}
.tile.t-red { background: linear-gradient(135deg, rgba(255,46,83,0.45) 0%, #1A0710 70%); }
.tile.t-pink { background: linear-gradient(135deg, rgba(255,64,141,0.45) 0%, #1A0710 70%); }
.tile.t-watermelon { background: radial-gradient(circle at 30% 30%, var(--red) 0%, var(--red-deep) 50%, #1A0710 100%); }
.tile.t-green { background: linear-gradient(135deg, rgba(34,206,94,0.3) 0%, #04100A 70%); }
.tile.t-text {
  background: linear-gradient(180deg, var(--surface) 0%, #0A0A0A 100%);
  display: grid; place-items: center;
  text-align: center;
  padding: 12px;
}
.tile.t-text .ttl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.tile.t-text .ttl span { color: var(--red); }
.tile.t-brand {
  background: linear-gradient(135deg, #2A0916 0%, #0A0306 100%);
  display: grid; place-items: center;
}
.tile.t-brand .br {
  font-family: 'Bebas Neue', sans-serif; font-size: 34px; line-height: 0.88;
  text-align: center;
  letter-spacing: 0.02em;
}
.tile.t-brand .br .a { color: var(--red); display:block; }
.tile.t-brand .br .b { color: var(--green); display:block; }
.tile.t-violet { background: linear-gradient(135deg, var(--violet) 0%, #2A0E45 80%); }
.tile.t-mosaic {
  background: linear-gradient(135deg, var(--red) 0%, var(--pink) 50%, var(--green) 100%);
  opacity: 0.85;
}
.tile.t-dark { background: #0A0A0A; }
.tile.t-dark .badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 0.04em;
}
.tile.t-dark .badge .green { color: var(--green); }

.cv-side { display: grid; gap: 24px; grid-template-rows: auto auto 1fr; }
.cv-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.cv-card.kpi {
  background:
    radial-gradient(60% 100% at 100% 0%, rgba(34,206,94,0.12) 0%, rgba(0,0,0,0) 70%),
    var(--surface);
}
.cv-card .lbl {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--ink-3); text-transform: uppercase;
  margin-bottom: 12px;
}
.cv-card .v {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 84px; line-height: 0.95;
  letter-spacing: 0.01em;
}
.cv-card .v .green { color: var(--green); }
.cv-card .v .red { color: var(--red); }
.cv-card p { color: var(--ink-3); font-size: 13px; margin-top: 14px; line-height: 1.55; }

.cv-list {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex; flex-direction: column; gap: 14px;
}
.cv-list .cv-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed var(--hairline);
  font-size: 13px;
}
.cv-list .cv-item:last-child { border-bottom: 0; }
.cv-list .cv-item .name { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.cv-list .cv-item .name .b { width: 8px; height: 8px; background: var(--red); border-radius: 2px; }
.cv-list .cv-item .v { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--green); letter-spacing: 0.1em; font-size: 11px; text-transform: uppercase; }

/* ============== WEBDESIGN ============== */

.webdesign {
  padding: 60px 0;
  position: relative;
  background:
    radial-gradient(70% 50% at 100% 50%, rgba(168,85,247,0.1) 0%, rgba(0,0,0,0) 60%),
    var(--bg);
  border-top: 1px solid var(--hairline);
}
.web-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 36px; align-items: stretch; }

.web-types { display: flex; flex-direction: column; gap: 14px; }
.web-type {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 26px 28px;
  background: var(--surface);
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.2s;
}
.web-type:hover { border-color: var(--hairline-strong); }
.web-type.featured {
  border-color: var(--red);
  background:
    radial-gradient(50% 100% at 0% 50%, rgba(255,46,83,0.18) 0%, rgba(0,0,0,0) 70%),
    var(--surface);
  box-shadow: 0 0 60px -20px rgba(255,46,83,0.4);
}
.web-type .num {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--ink-4); text-transform: uppercase;
}
.web-type h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 6px;
  margin-bottom: 6px;
}
.web-type p { font-size: 12px; color: var(--ink-3); max-width: 240px; }
.web-type .left { flex: 1; }
.web-type .arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  display: grid; place-items: center;
  color: var(--ink);
}
.web-type.featured .arrow { background: var(--green); color: #06200E; border-color: var(--green); }

.web-mock {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  background:
    radial-gradient(70% 50% at 50% 0%, rgba(255,46,83,0.15) 0%, rgba(0,0,0,0) 70%),
    linear-gradient(180deg, #15080F 0%, #06020A 100%);
  overflow: hidden;
  min-height: 520px;
  display: grid; place-items: center;
  padding: 60px 40px;
}
.browser {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  background: #0A0A0A;
  border: 1px solid var(--hairline-strong);
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.8), 0 0 80px -20px rgba(255,46,83,0.4);
  overflow: hidden;
  transform: perspective(1500px) rotateY(-7deg) rotateX(4deg);
}
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--hairline);
  background: rgba(255,255,255,0.02);
}
.browser-bar .lights { display: flex; gap: 6px; }
.browser-bar .lights span { width: 10px; height: 10px; border-radius: 50%; background: var(--surface-2); }
.browser-bar .lights span:nth-child(1) { background: #FF5F57; }
.browser-bar .lights span:nth-child(2) { background: var(--orange); }
.browser-bar .lights span:nth-child(3) { background: var(--green); }
.browser-bar .url {
  flex: 1;
  background: var(--bg-2);
  border-radius: 6px;
  padding: 6px 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
}
.browser-content {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  height: calc(100% - 38px);
}
.browser-content .bc-left { display: flex; flex-direction: column; justify-content: space-between; }
.browser-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px; line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.browser-content h3 .red { color: var(--red); }
.browser-content h3 .green { color: var(--green); }
.browser-content .lp-cta {
  display: inline-flex; align-self: flex-start;
  padding: 10px 18px;
  background: var(--red); color: #FFFFFF;
  border-radius: 999px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.browser-content .bc-right {
  border-radius: 12px;
  background:
    radial-gradient(60% 80% at 50% 40%, rgba(255,46,83,0.45) 0%, rgba(0,0,0,0) 70%),
    linear-gradient(180deg, #1A0710 0%, #0A0306 100%);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.browser-content .bc-right .mini-pack {
  width: 60%;
  aspect-ratio: 0.72/1;
  border-radius: 10px;
  background: linear-gradient(180deg, #1A0710 0%, #0A0306 100%);
  border: 1px solid rgba(255,46,83,0.3);
  display: grid; place-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; line-height: 0.88; text-align: center;
  letter-spacing: 0.02em;
  box-shadow: 0 0 40px -10px rgba(255,46,83,0.5);
}
.browser-content .bc-right .mini-pack .a { color: var(--red); display:block; }
.browser-content .bc-right .mini-pack .b { color: var(--green); display:block; }

.phone-mock {
  position: absolute;
  bottom: 30px; right: 30px;
  width: 150px; aspect-ratio: 9/19;
  border-radius: 22px;
  background: #0A0A0A;
  border: 2px solid var(--surface-2);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.9), 0 0 60px -20px rgba(34,206,94,0.3);
  overflow: hidden;
  transform: perspective(1200px) rotateY(15deg) rotateX(-5deg);
}
.phone-mock::before {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 50px; height: 14px; border-radius: 8px; background: #000;
  z-index: 2;
}
.phone-mock-content {
  padding: 32px 12px 12px;
  height: 100%;
  display: flex; flex-direction: column; gap: 8px;
  background:
    radial-gradient(60% 50% at 50% 30%, rgba(34,206,94,0.18) 0%, rgba(0,0,0,0) 70%),
    var(--bg-2);
}
.phone-mock-content .pm-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; line-height: 0.88;
  letter-spacing: 0.02em;
}
.phone-mock-content .pm-h .a { color: var(--red); display:block; }
.phone-mock-content .pm-h .b { color: var(--green); display:block; }
.phone-mock-content .row { height: 6px; background: var(--hairline); border-radius: 3px; }
.phone-mock-content .row.s { width: 60%; }
.phone-mock-content .row.green { background: var(--green); width: 80%; }
.phone-mock-content .grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 6px;
}
.phone-mock-content .grid-2 .cell {
  aspect-ratio: 1; border-radius: 6px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  opacity: 0.7;
}

/* ============== VIDEOS IA ============== */

.videos { padding: 60px 0; position: relative; }

.video-stage {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 24px auto 0;
}

.video-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

.video-hero {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--hairline);
  background:
    radial-gradient(60% 80% at 30% 50%, rgba(34,206,94,0.1) 0%, rgba(0,0,0,0) 60%),
    radial-gradient(50% 80% at 80% 50%, rgba(255,46,83,0.22) 0%, rgba(0,0,0,0) 60%),
    linear-gradient(180deg, #100509 0%, #060208 100%);
  aspect-ratio: 9 / 16;
  width: 100%;
  display: grid;
  place-items: center;
}

.vh-badge {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  padding: 8px 14px;
  background: rgba(0,0,0,0.55);
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
}
.vh-badge .rec { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px var(--red); }

.vh-time {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--ink-3);
  display: flex; gap: 22px;
  text-transform: uppercase;
}
.vh-time b { color: var(--ink); font-weight: 700; }

.play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--green);
  display: grid; place-items: center;
  box-shadow: 0 0 60px -10px rgba(34,206,94,0.7), inset 0 -4px 0 rgba(0,0,0,0.2);
  position: relative;
  z-index: 2;
}
.play-btn::before {
  content: '';
  position: absolute; inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(34,206,94,0.4);
}
.play-btn::after {
  content: '';
  position: absolute; inset: -32px;
  border-radius: 50%;
  border: 1px solid rgba(34,206,94,0.2);
}
.play-btn .triangle {
  width: 0; height: 0;
  border-left: 24px solid #06200E;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 5px;
}

.vh-title h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px; line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.vh-title h3 .red { color: var(--red); }
.vh-title p {
  margin-top: 12px;
  color: var(--ink-3);
  font-size: 13px;
  max-width: 380px;
}

.vh-controls { display: flex; gap: 10px; }
.vh-ctrl {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  background: rgba(0,0,0,0.4);
  display: grid; place-items: center;
  color: var(--ink-2);
}

.video-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255,46,83,0.25);
  background: rgba(10,3,8,0.7);
  backdrop-filter: blur(12px);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.vc-header {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap;
}
.vc-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 0.04em; text-transform: uppercase;
}
.vc-format {
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green);
  padding: 4px 10px;
  background: rgba(34,206,94,0.12);
  border: 1px solid rgba(34,206,94,0.3);
  border-radius: 999px;
}
.vc-list { list-style: none; display: flex; flex-direction: column; }
.vc-list li {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
}
.vc-list li:first-child { padding-top: 0; }
.vc-list li:last-child { border-bottom: none; padding-bottom: 0; }
.vc-key {
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
}
.vc-val {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 500; line-height: 1.55;
  color: var(--ink);
}
.vc-quote {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-style: italic; line-height: 1.65;
  color: var(--pink);
  padding-top: 16px;
  border-top: 1px solid rgba(255,46,83,0.2);
}

.video-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.vt {
  aspect-ratio: 9/16;
  border-radius: 14px;
  border: 1px solid var(--hairline);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.vt::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 8px);
}
.vt.v1 { background: linear-gradient(135deg, rgba(255,46,83,0.4) 0%, #1A0710 80%); }
.vt.v2 { background: linear-gradient(135deg, rgba(168,85,247,0.4) 0%, #1F0822 80%); }
.vt.v3 { background: linear-gradient(135deg, rgba(34,206,94,0.25) 0%, #04100A 80%); }
.vt.v4 { background: linear-gradient(135deg, rgba(255,64,141,0.4) 0%, rgba(168,85,247,0.3) 100%); }
.vt-meta {
  position: absolute; left: 12px; bottom: 12px; right: 12px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.vt-meta .nm { font-family: 'Bebas Neue', sans-serif; font-size: 18px; text-transform: uppercase; letter-spacing: 0.04em; }
.vt-meta .dur { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 9px; letter-spacing: 0.14em; color: var(--ink-3); padding: 4px 6px; background: rgba(0,0,0,0.5); border-radius: 4px; }
.vt-play {
  position: absolute; top: 12px; left: 12px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green);
  display: grid; place-items: center;
}
.vt-play .tri {
  width: 0; height: 0;
  border-left: 8px solid #06200E;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-left: 2px;
}

/* ============== CREDIBILITY ============== */

.credibility { padding: 60px 0; position: relative; }

.cred-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.cred-stat {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  background:
    radial-gradient(80% 100% at 0% 100%, rgba(255,46,83,0.1) 0%, rgba(0,0,0,0) 70%),
    var(--surface);
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.cred-stat.green-bg {
  background:
    radial-gradient(80% 100% at 100% 100%, rgba(34,206,94,0.12) 0%, rgba(0,0,0,0) 70%),
    var(--surface);
}
.cred-stat.violet-bg {
  background:
    radial-gradient(80% 100% at 50% 100%, rgba(168,85,247,0.16) 0%, rgba(0,0,0,0) 70%),
    var(--surface);
}
.cred-stat .top {
  display: flex; align-items: flex-start; justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--ink-3); text-transform: uppercase;
}
.cred-stat .v {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 6.5vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.005em;
}
.cred-stat .v.red { color: var(--red); }
.cred-stat .v.green { color: var(--green); }
.cred-stat .v.pink { color: var(--pink); }
.cred-stat .l { color: var(--ink-2); font-size: 13px; line-height: 1.55; max-width: 260px; }

.cred-diff {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.diff-card {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--surface);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 200px;
}
.diff-card .icn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,46,83,0.1);
  border: 1px solid rgba(255,46,83,0.3);
  color: var(--red);
  display: grid; place-items: center;
  margin-bottom: 8px;
}
.diff-card.green .icn { background: rgba(34,206,94,0.12); border-color: rgba(34,206,94,0.3); color: var(--green); }
.diff-card.pink .icn { background: rgba(255,64,141,0.12); border-color: rgba(255,64,141,0.3); color: var(--pink); }
.diff-card.violet .icn { background: rgba(168,85,247,0.12); border-color: rgba(168,85,247,0.3); color: var(--violet); }
.diff-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.diff-card p { color: var(--ink-3); font-size: 13px; line-height: 1.55; }

/* ============== CTA ============== */

.cta {
  padding: 100px 0 120px;
  position: relative;
  background:
    radial-gradient(60% 100% at 50% 50%, rgba(255,46,83,0.18) 0%, rgba(0,0,0,0) 60%),
    radial-gradient(40% 100% at 0% 100%, rgba(34,206,94,0.06) 0%, rgba(0,0,0,0) 60%),
    var(--bg);
  border-top: 1px solid var(--hairline);
  overflow: hidden;
}

.cta-card {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(255,46,83,0.2) 0%, rgba(0,0,0,0) 60%),
    linear-gradient(180deg, #15080F 0%, #060208 100%);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -10%; left: -8%;
  width: 320px; height: 320px;
  background: radial-gradient(circle at 30% 30%, var(--red) 0%, var(--red-deep) 60%, rgba(0,0,0,0) 80%);
  filter: blur(2px);
  opacity: 0.5;
  border-radius: 50%;
}
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -15%; right: -8%;
  width: 360px; height: 360px;
  background: radial-gradient(circle at 30% 30%, var(--green) 0%, var(--green-deep) 60%, rgba(0,0,0,0) 80%);
  filter: blur(2px);
  opacity: 0.18;
  border-radius: 50%;
}

.cta-eyebrow { margin-bottom: 36px; justify-content: center; display: inline-flex; }
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 7.5vw, 140px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative; z-index: 2;
  margin-bottom: 28px;
}
.cta-title .red { color: var(--red); }
.cta-title .green { color: var(--green); }
.cta-sub {
  position: relative; z-index: 2;
  max-width: 600px; margin: 0 auto 44px;
  color: var(--ink-2);
  font-size: 17px;
}
.cta-actions {
  position: relative; z-index: 2;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px;
}
.cta-tags {
  position: relative; z-index: 2;
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--ink-3); text-transform: uppercase;
}
.cta-tags span { display: inline-flex; align-items: center; gap: 8px; }
.cta-tags span::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

/* ============== FOOTER ============== */

.footer {
  padding: 80px var(--gutter) 40px;
  background: var(--bg);
  border-top: 1px solid var(--hairline);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max);
  margin: 0 auto;
}
.footer-brand .logo { font-size: 32px; margin-bottom: 18px; }
.footer-brand p { color: var(--ink-3); font-size: 13px; line-height: 1.55; max-width: 260px; }
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 8px 0; font-size: 14px; }
.footer-col a { color: var(--ink-2); text-decoration: none; }

.footer-bottom {
  max-width: var(--max);
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink-3);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  display: grid; place-items: center;
  color: var(--ink-2);
  background: rgba(255,255,255,0.02);
}

/* ============== HERO WATERMELON ANIMATION ============== */

/* ============== HERO SHOWCASE (Fox + Packshot) ============== */
.hero-showcase {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

/* Glows d'ambiance */
.hs-glow-pink {
  position: absolute;
  width: 70%; height: 70%;
  right: -10%; bottom: -10%;
  background: radial-gradient(circle, rgba(255,46,83,.35) 0%, transparent 70%);
  pointer-events: none;
}
.hs-glow-green {
  position: absolute;
  width: 40%; height: 40%;
  left: 5%; top: 10%;
  background: radial-gradient(circle, rgba(34,206,94,.2) 0%, transparent 70%);
  pointer-events: none;
}

/* Fond décor — derrière tout */
.hs-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hs-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.7;
}
/* Overlay sombre sur le fond pour garder la lisibilité */
.hs-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 100%);
}

/* Logo — centre, gros, héro principal */
.hs-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52%;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: logo-float 5s ease-in-out infinite;
  animation-fill-mode: both;
  will-change: transform;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,.8)) drop-shadow(0 0 60px rgba(255,46,83,.4));
}
.hs-logo.ready { opacity: 1; }
.hs-logo img {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes logo-float {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%       { transform: translate(-50%, calc(-50% - 8px)) scale(1.02); }
}

/* Pochon — gauche, secondaire */
.hs-pack {
  position: absolute;
  left: -4%;
  bottom: 10%;
  width: 38%;
  z-index: 5;
  animation: pack-float 4.5s ease-in-out infinite;
  filter: drop-shadow(8px 20px 40px rgba(0,0,0,.9)) drop-shadow(0 0 24px rgba(255,46,83,.2));
}
.hs-pack img {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes pack-float {
  0%, 100% { transform: rotate(-8deg) translateY(0px); }
  50%       { transform: rotate(-5deg) translateY(-10px); }
}

/* Vitrine Instagram — droite, secondaire */
.hs-insta {
  position: absolute;
  right: -2%;
  bottom: 8%;
  width: 34%;
  z-index: 5;
  animation: insta-float 6s ease-in-out infinite;
  filter: drop-shadow(-8px 20px 40px rgba(0,0,0,.9));
}
.hs-insta-screen {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 0 0 1px rgba(255,255,255,.05), 0 0 30px rgba(34,206,94,.15);
  transform: rotate(6deg);
}
.hs-insta-screen img {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes insta-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* Site web — haut droite */
.hs-site {
  position: absolute;
  top: 6%;
  right: 4%;
  width: 36%;
  z-index: 5;
  animation: site-float 5.5s ease-in-out infinite;
  filter: drop-shadow(-6px 16px 32px rgba(0,0,0,.85));
  transform: rotate(3deg);
}
.hs-site-bar {
  background: #1a1a1a;
  border-radius: 8px 8px 0 0;
  padding: 7px 10px;
  display: flex;
  gap: 5px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.1);
  border-bottom: none;
}
.hs-site-bar span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: block;
}
.hs-site-bar span:first-child { background: #FF5F57; }
.hs-site-bar span:nth-child(2) { background: #FFBD2E; }
.hs-site-bar span:nth-child(3) { background: #28CA41; }
.hs-site-screen {
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-top: none;
}
.hs-site-screen img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 180px;
  object-fit: cover;
  object-position: top;
}
@keyframes site-float {
  0%, 100% { transform: rotate(3deg) translateY(0px); }
  50%       { transform: rotate(2deg) translateY(-8px); }
}

/* Badge bas */
.hs-brand-tag {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 8px 18px;
  backdrop-filter: blur(12px);
  z-index: 7;
  white-space: nowrap;
}
.hs-brand-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hs-brand-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #fff;
  letter-spacing: .02em;
}
.hs-brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* ============== ancien watermelon (conservé mais inutilisé) ============== */
.hero-wm-scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow: hidden;
}

.wm-fruit {
  position: relative;
  width: 170px; height: 170px;
  flex-shrink: 0;
}
.wm-top {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 50%;
  overflow: hidden;
  transform-origin: bottom center;
  transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 0.2s;
}
.wm-top-inner {
  width: 100%; height: 200%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 60% 50% at 50% 68%, #FF2E53 0%, #CC1A3A 55%, transparent 72%),
    linear-gradient(180deg, #1A6B1A 0%, #22891A 35%, #2DB32D 55%, #1A6B1A 100%);
}
.wm-bot {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 50%;
  overflow: hidden;
  transform-origin: top center;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 0.3s;
}
.wm-bot-inner {
  width: 100%; height: 200%;
  position: absolute; bottom: 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 60% 50% at 50% 32%, #FF2E53 0%, #CC1A3A 55%, transparent 72%),
    linear-gradient(0deg, #1A6B1A 0%, #22891A 35%, #2DB32D 55%, #1A6B1A 100%);
}
.wm-seed {
  position: absolute;
  width: 9px; height: 15px;
  background: #0A0500;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s 1.1s;
}
.wm-seed.s1 { top: 27%; left: 26%; transform: rotate(-18deg); }
.wm-seed.s2 { top: 25%; left: 46%; transform: rotate(5deg); }
.wm-seed.s3 { top: 29%; right: 22%; transform: rotate(22deg); }
.wm-divider {
  position: absolute;
  top: 50%; left: -4px; right: -4px; height: 4px;
  background: #0A0500;
  z-index: 2;
}

/* State: open */
.hero-wm-scene.is-open .wm-top { transform: translateY(-68px) rotate(-8deg); }
.hero-wm-scene.is-open .wm-bot { transform: translateY(22px) rotate(3deg); }
.hero-wm-scene.is-open .wm-seed { opacity: 1; }

/* Popup items */
.wm-popup {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0;
  transform: translateY(30px) scale(0.7);
  transition: opacity 0.5s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wm-popup-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: 0 8px 32px -8px rgba(0,0,0,.6);
}
.wm-popup-icon img { width: 48px; height: 48px; object-fit: contain; }
.wm-popup-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.6); white-space: nowrap;
}
.wm-p1 { top: 14%; left: 8%; }
.wm-p2 { top: 4%; left: 50%; transform: translateX(-50%) translateY(30px) scale(0.7); }
.wm-p3 { top: 14%; right: 8%; }

.hero-wm-scene.is-open .wm-popup { opacity: 1; transform: translateY(0) scale(1); }
.hero-wm-scene.is-open .wm-p2 { transform: translateX(-50%) translateY(0) scale(1); }
.hero-wm-scene.is-open .wm-p1 { transition-delay: 0.65s; }
.hero-wm-scene.is-open .wm-p2 { transition-delay: 0.82s; }
.hero-wm-scene.is-open .wm-p3 { transition-delay: 0.99s; }

.wm-tagline {
  position: absolute;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.28); white-space: nowrap;
  opacity: 0; transition: opacity 0.5s 1.3s;
}
.hero-wm-scene.is-open .wm-tagline { opacity: 1; }

/* ============== PRICING ============== */

.pricing { padding: 60px 0 72px; position: relative; border-top: 1px solid var(--hairline); }

.pricing-pack {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,46,83,.35);
  background:
    radial-gradient(60% 80% at 0% 0%, rgba(255,46,83,.18) 0%, rgba(0,0,0,0) 60%),
    radial-gradient(60% 60% at 100% 100%, rgba(34,206,94,.08) 0%, rgba(0,0,0,0) 60%),
    linear-gradient(180deg, #15080F 0%, #060208 100%);
  padding: 52px 60px;
  margin-bottom: 48px;
  overflow: hidden;
  box-shadow: 0 0 100px -30px rgba(255,46,83,.4);
}
.pk-badge {
  position: absolute; top: 28px; right: 32px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  box-shadow: 0 0 30px -5px rgba(255,46,83,.7);
}
.pk-content { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.pk-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px; line-height: .95; letter-spacing: .02em; text-transform: uppercase;
  display: block; margin-bottom: 14px;
}
.pk-desc { color: var(--ink-2); font-size: 15px; margin-bottom: 28px; max-width: 420px; line-height: 1.55; }
.pk-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pk-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-2);
}
.pk-list li::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 12px; flex-shrink: 0; }
.pk-price-block { text-align: center; }
.pk-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px; line-height: .9; letter-spacing: .02em; color: var(--red);
}
.pk-price span { font-size: 60px; }
.pk-price-note { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; color: var(--ink-4); letter-spacing: .12em; text-transform: uppercase; margin-top: 8px; text-decoration: line-through; }
.pk-savings {
  display: inline-block; margin-top: 10px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(34,206,94,.12);
  border: 1px solid rgba(34,206,94,.3);
  color: var(--green);
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
}

.pricing-carte { overflow: visible; }
.pc-header { margin-bottom: 28px; }
.pc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pc-item {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 24px 20px 160px;
  background: var(--surface);
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s;
  position: relative;
  overflow: visible;
  min-height: 240px;
}
.pc-item:not(:has(.pc-asset)) { padding-bottom: 24px; min-height: unset; }
.pc-asset {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 130px;
  height: 130px;
  object-fit: contain;
  opacity: 1;
  pointer-events: none;
  animation: pc-float 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.75));
}
.pc-asset.screen {
  width: 160px;
  height: 108px;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
  transform: translateX(-50%) rotate(-2deg);
}
.pc-asset.square {
  width: 130px;
  height: 130px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  transform: translateX(-50%) rotate(-2deg);
}
.pc-asset.portrait {
  width: 100px;
  height: 158px;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
  transform: translateX(-50%) rotate(-2deg);
}
.pc-asset.vertical {
  width: 80px;
  height: 142px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  transform: translateX(-50%) rotate(-2deg);
}
@keyframes pc-float {
  0%, 100% { transform: translateX(-50%) translateY(0px) rotate(-4deg); }
  50%       { transform: translateX(-50%) translateY(-10px) rotate(-2deg); }
}
@keyframes pc-float-screen {
  0%, 100% { transform: translateX(-50%) translateY(0px) rotate(-2deg); }
  50%       { transform: translateX(-50%) translateY(-8px) rotate(-1deg); }
}
.pc-item:hover { border-color: rgba(255,46,83,.3); }
.pc-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; opacity: .55; color: var(--ink-2); }
.pc-name { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13px; color: var(--ink); line-height: 1.35; flex: 1; }
.pc-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: .02em; color: var(--red);
  margin-top: auto;
}

/* ============== RESPONSIVE ============== */

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .branding-grid { grid-template-columns: 1fr; }
  .cv-grid { grid-template-columns: 1fr; }
  .web-grid { grid-template-columns: 1fr; }
  .video-stage { grid-template-columns: 1fr; max-width: 460px; gap: 32px; }
  .video-hero { width: 100%; }
  .video-card { order: 3; }
  .video-thumbs { grid-template-columns: repeat(2, 1fr); }
  .cred-stats, .cred-diff { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .pk-content { grid-template-columns: 1fr; gap: 40px; }
  .pk-price-block { text-align: left; }
  .pc-grid { grid-template-columns: repeat(2, 1fr); }
  .section-header { flex-direction: column; align-items: flex-start; }
  .section-copy-card { max-width: 100%; align-self: stretch; }

  /* Packaging tablette : pack-stage en premier, sides masqués */
  .pack-hero {
    display: flex; flex-direction: column; height: auto;
  }
  .pack-stage { order: 1; padding: 32px 0; }
  .pack-side { display: none !important; }
  .pack-thumbs { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  :root { --gutter: 18px; }

  /* ── HERO MOBILE : image Pixar en fond ── */
  .hero {
    background-image:
      linear-gradient(to right, rgba(10,10,10,0.92) 38%, rgba(10,10,10,0.50) 62%, rgba(10,10,10,0.08) 100%),
      url('assets/hero/hero-mobile-bg.png?v=2');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .hero-bg { opacity: 0; }

  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cred-stats, .cred-diff { grid-template-columns: 1fr 1fr; }
  .video-thumbs { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .pc-grid { grid-template-columns: 1fr; }
  .pricing-pack { padding: 36px 28px; }
  .pk-name { font-size: 40px; }
  .pk-price { font-size: 80px; }

  /* ── TRANSITION : compact sur mobile ── */
  .transition { padding: 36px var(--gutter) 40px; }
  .transition-eyebrow { margin-bottom: 16px; }
  .transition-title { font-size: clamp(32px, 9vw, 52px); line-height: 1.08; }
  .transition-meta { flex-wrap: wrap; gap: 12px 18px; justify-content: center; overflow-x: visible; margin-top: 24px; }

  /* ── BRANDING : logos gauche / planche droite (image entière) ── */
  .branding-grid { grid-template-columns: 128px 1fr !important; gap: 10px; align-items: stretch; }
  .branding-main { padding: 6px; display: flex; flex-direction: column; }
  .logo-grid { grid-template-columns: 1fr; gap: 7px; margin-top: 6px; flex: 1; }
  .logo-card { aspect-ratio: auto !important; height: 70px; border-radius: 12px; touch-action: manipulation; }
  .logo-card img { max-height: 56%; }
  .logo-card .label { display: none !important; }
  .logo-grid-label { font-size: 9px; margin-bottom: 4px; color: rgba(255,255,255,.65); }
  .bp-planche img { object-fit: contain !important; object-position: center center !important; background: #0f0f0f; }
  .bp-deliverables { padding: 8px 10px; gap: 4px 6px; }
  .bp-deliverables span { font-size: 8px; letter-spacing: 0.08em; }
  .bp-planche-footer { padding: 10px 12px; gap: 8px; }
  .bp-planche-sub { font-size: 8px; }

  /* ── WEBDESIGN : preview pleine largeur en haut / tabs en dessous ── */
  .web-grid { display: flex !important; flex-direction: column; gap: 14px; }
  .web-mock { order: 1; padding: 14px; min-height: 0; }
  .web-types { order: 2; display: flex; flex-direction: row; gap: 10px; }
  .web-type { flex: 1; padding: 12px 10px; }
  .web-type .left p { display: none; }
  .web-type h4 { font-size: 12px; margin: 2px 0; line-height: 1.2; }
  .web-type .num { font-size: 8px; }
  .web-type .arrow { width: 28px; height: 28px; font-size: 13px; flex-shrink: 0; }
  .browser { transform: none !important; width: 100%; }
  .phone-mock { display: block; width: 65px; bottom: 10px; right: 10px; transform: none; border-radius: 10px; }
  .phone-mock::before { width: 28px; height: 8px; top: 4px; }

  /* ── VIDÉO : grand player centré + petites vignettes en dessous ── */
  .videos { display: block; }
  .video-stage { display: flex; justify-content: center; max-width: 250px; margin: 0 auto; }
  .video-info { display: none; }
  .video-card { display: none; }
  .video-hero { width: 100%; flex: 1; }
  .video-thumbs { display: flex !important; flex-direction: row !important; gap: 12px; justify-content: center; margin-top: 14px; grid-template-columns: unset !important; }
  .vt { width: 82px; flex: 0 0 82px; height: auto; aspect-ratio: 9/16; }
  .vt-meta .nm { font-size: 10px; }
  .vt-meta .dur { font-size: 7px; }

  /* ── PACKAGING : preview compacte + grille 3 colonnes juste en dessous ── */
  .pack-stage { padding: 20px 0; }
  #packaging-featured { width: 175px; }
  .pack-thumbs {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px;
    margin-top: 12px;
  }
  .pack-thumb {
    aspect-ratio: auto !important;
    height: 120px;
    padding: 8px 6px;
  }
  .pack-thumb .pt-img-wrap { margin-bottom: 4px; }
  .pack-thumb .pt-brand-name { font-size: 8px; letter-spacing: 0.08em; }
  .pack-thumb .pt-meta { font-size: 7px; }

  /* ── VIDÉO : taille réduite sur mobile — déjà géré ci-dessus ── */

/* ── INSTAGRAM : fusionner carte kpi + cv-list en un seul bloc ── */
  .cv-side { gap: 0; }
  .cv-side .cv-card.kpi {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
  }
  .cv-side .cv-list {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-bottom: 24px;
  }

  /* ── ASSETS SERVICES À LA CARTE : plus grands sur mobile ── */
  .pc-item { padding-bottom: 190px; }
  .pc-asset { width: 160px; height: 160px; }
  .pc-asset.square { width: 160px; height: 160px; }
  .pc-asset.portrait { width: 120px; height: 190px; }
  .pc-asset.vertical { width: 95px; height: 170px; }
  .pc-asset.screen { width: 200px; height: 134px; }

  /* ── CTA : compact sur mobile ── */
  .cta { padding: 48px 0 52px; }
  .cta-card { padding: 40px 24px; }
  .cta-eyebrow { margin-bottom: 20px; }
  .cta-title { font-size: clamp(48px, 12vw, 80px); margin-bottom: 16px; }
  .cta-sub { font-size: 14px; margin-bottom: 28px; }
  .cta-actions { margin-bottom: 32px; gap: 10px; }
  .cta-tags { gap: 14px 20px; }
}
