/* ==========================================================================
   SUPERDAD — DESIGN SYSTEM v2
   Athletic · Heroic · Bold
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ==========================================================================
   Tokens — palette tirée des logos
   ========================================================================== */
:root {
  /* Noirs */
  --black: #0B0B0F;
  --black-2: #16161C;
  --black-3: #22232B;
  --black-line: #2D2E38;

  /* Blancs */
  --white: #FFFFFF;
  --off-white: #F5F5F7;
  --gray: #8B8D98;
  --gray-soft: #C7C8D1;

  /* Couleurs marque */
  --red: #E63027;          /* Rouge principal (était cape) */
  --red-deep: #B81E18;
  --red-glow: #FF3D33;
  --red-soft: #C72924;     /* Rouge un peu plus profond pour surfaces */
  --gold: #FFC857;

  /* Aliases pour compat — orange devient rouge partout */
  --orange: #E63027;
  --orange-bright: #FF3D33;
  --orange-deep: #B81E18;

  /* Gradients */
  --rays: radial-gradient(ellipse at center, var(--orange-bright) 0%, var(--orange) 35%, var(--orange-deep) 70%, transparent 100%);
  --hero-gradient: linear-gradient(180deg, #0B0B0F 0%, #1A1208 50%, #0B0B0F 100%);

  /* Typo */
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;

  /* Spacing (réduit de 25% pour rapprocher les sections) */
  --space-xs: 0.375rem;
  --space-sm: 0.75rem;
  --space-md: 1.125rem;
  --space-lg: 1.875rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --space-3xl: 6.75rem;

  --container-max: 1380px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Accent dynamique (modifiable par .page-superdad / .page-b2b) */
  --accent: var(--red);
  --accent-2: var(--orange);
}

/* ==========================================================================
   Base
   ========================================================================== */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--off-white);
  background: var(--black);
  font-weight: 400;
  overflow-x: hidden;
}

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

/* Background ray pattern (réutilisable) - très subtil */
.rays-bg {
  position: relative;
  overflow: hidden;
}
.rays-bg::before {
  content: '';
  position: absolute;
  inset: -20% -10%;
  background:
    repeating-conic-gradient(
      from 0deg at 50% 100%,
      rgba(230, 48, 39, 0.04) 0deg 8deg,
      transparent 8deg 16deg
    );
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}
.rays-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(230, 48, 39, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.rays-bg > * { position: relative; z-index: 1; }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}
h1 .accent { color: var(--orange); }
h1 .red { color: var(--red); }

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
}
h2 .accent { color: var(--orange); }
h2 .red { color: var(--red); }

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
}
h4 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}
.eyebrow.light { color: var(--gray-soft); }

p { max-width: 60ch; line-height: 1.65; }
.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--gray-soft);
  max-width: 56ch;
  font-weight: 400;
}

/* On dark backgrounds */
.dark p { color: var(--gray-soft); }

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-narrow {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: var(--space-3xl) 0; position: relative; }

/* Light section variant - DÉSACTIVÉ : tout reste sur fond noir
   On utilise plutôt black-2 comme variation de fond */
section.light {
  background: var(--black-2);
  color: var(--off-white);
}
section.light h1, section.light h2, section.light h3, section.light h4 { color: var(--white); }
section.light p { color: var(--gray-soft); }
section.light .lede { color: var(--gray-soft); }
section.light .eyebrow { color: var(--orange); }
section.light .eyebrow::before { background: var(--orange); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: var(--black);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--black-line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo img {
  height: 72px;
  width: auto;
}
@media (max-width: 768px) {
  .nav-logo img { height: 56px; }
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.nav-logo-text small {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--orange);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gray-soft);
  transition: color 0.2s;
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--orange);
}

.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(230, 48, 39, 0.2);
}
.nav-cta:hover {
  background: var(--orange-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 48, 39, 0.35);
}

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.menu-toggle span {
  height: 2px;
  background: var(--white);
  transition: transform 0.3s;
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem var(--gutter);
    background: var(--black);
    border-top: 1px solid var(--black-line);
    gap: 1.25rem;
  }
}

/* Mobile : cacher le bouton Réserver dans la nav */
@media (max-width: 768px) {
  .nav-cta { display: none; }

  /* Hero meta : 4 lignes au lieu d'une ligne avec wrap */
  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .hero-meta-item { font-size: 0.85rem; }

  /* Réduire les paddings de section sur mobile */
  section { padding: var(--space-xl) 0; }
  .hero { padding-top: 1rem; padding-bottom: var(--space-xl); }
  .page-header { padding-top: 1rem; padding-bottom: var(--space-xl); }
  .cta-strip { padding: var(--space-xl) 0; }
  .stat-strip { padding: var(--space-lg) 0; }
  .footer { padding: var(--space-2xl) 0 var(--space-md); }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.85rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-display);
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(230, 48, 39, 0.3);
}
.btn-red:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 48, 39, 0.45);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(230, 48, 39, 0.3);
}
.btn-orange:hover {
  background: var(--orange-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 48, 39, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--black);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-ghost-dark:hover {
  background: var(--white);
  color: var(--black);
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.25s;
  font-size: 1.1em;
}
.btn:hover .btn-arrow::after,
.btn-arrow:hover::after { transform: translateX(4px); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding-top: calc(var(--space-3xl) + 5rem);
  padding-bottom: var(--space-3xl);
  background: var(--black);
  position: relative;
  overflow: hidden;
}

/* Rays effect on hero - très subtil */
.hero::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  width: 140%;
  height: 100%;
  transform: translateX(-50%);
  background:
    repeating-conic-gradient(
      from 180deg at 50% 100%,
      rgba(230, 48, 39, 0.025) 0deg 5deg,
      transparent 5deg 12deg
    );
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 50%;
  width: 90%;
  height: 110%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(230, 48, 39, 0.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.hero > .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: end;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-2xl);
  }
}

.hero-title {
  font-size: clamp(2.75rem, 9vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 1.5rem;
}
.hero-title .accent { color: var(--orange); }
.hero-title .red { color: var(--red); }
.hero-title .stroke {
  -webkit-text-stroke: 2px var(--orange);
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-aside {
  border-left: 2px solid var(--orange);
  padding-left: var(--space-md);
  padding-bottom: 0.5rem;
}
@media (max-width: 1023px) {
  .hero-aside {
    border-left: none;
    border-top: 2px solid var(--orange);
    padding-top: var(--space-md);
    padding-left: 0;
  }
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-2xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--black-line);
  flex-wrap: wrap;
  gap: 2rem;
}
.hero-meta-item {
  font-size: 0.9rem;
  color: var(--gray);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-meta-item strong {
  color: var(--orange);
  font-weight: 800;
}

/* ==========================================================================
   Hero variant — avec vidéo (page superdad)
   ========================================================================== */
.hero--video {
  padding-top: calc(var(--space-2xl) + 5rem);
  padding-bottom: var(--space-2xl);
  text-align: center;
}
.hero--video .hero__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--orange);
  text-transform: none;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(230, 48, 39, 0.4);
  border-radius: 999px;
  background: rgba(230, 48, 39, 0.06);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  max-width: 22ch;
  margin: 0 auto;
}
.hero__hl { color: var(--orange); }

.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.55;
  color: var(--gray-soft);
  max-width: 60ch;
  margin: 1.5rem auto 0;
}
.hero__sub strong { color: var(--white); font-weight: 700; }

/* Video wrapper */
.hero__video-wrap {
  width: 100%;
  max-width: 900px;
  margin: var(--space-xl) auto 0;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(230, 48, 39, 0.25);
  background: var(--black);
}
.hero__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: var(--black);
}

/* Overlay "Regarder la vidéo" sur le poster */
.hero__play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(11,11,15,0.30) 0%, rgba(11,11,15,0.65) 100%);
  border: 0;
  cursor: pointer;
  z-index: 2;
  padding: 1rem;
  transition: background 0.3s ease;
  font-family: var(--font-display);
}
.hero__play:hover {
  background: linear-gradient(180deg, rgba(11,11,15,0.40) 0%, rgba(11,11,15,0.75) 100%);
}
.hero__play:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: -3px;
}
.hero__play[hidden] { display: none; }

.hero__play-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px rgba(230, 48, 39, 0.55);
  animation: hero-play-pulse 2.2s ease-in-out infinite;
  transition: transform 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}
.hero__play:hover .hero__play-icon {
  transform: scale(1.08);
  background: var(--orange-bright);
  animation-play-state: paused;
}
.hero__play-icon svg {
  margin-left: 4px; /* visuellement centrer la flèche play */
}

@keyframes hero-play-pulse {
  0%, 100% { box-shadow: 0 12px 35px rgba(230, 48, 39, 0.55), 0 0 0 0 rgba(230, 48, 39, 0.6); }
  50%      { box-shadow: 0 12px 35px rgba(230, 48, 39, 0.65), 0 0 0 24px rgba(230, 48, 39, 0); }
}

.hero__play-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
  text-align: center;
  max-width: 28ch;
}
.hero__play-label strong {
  font-size: clamp(1.05rem, 1.9vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}
.hero__play-label small {
  font-size: clamp(0.78rem, 1.1vw, 0.92rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gray-soft);
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  text-transform: none;
}

@media (max-width: 600px) {
  .hero__play-icon { width: 68px; height: 68px; }
  .hero__play-icon svg { width: 24px; height: 24px; }
}

/* Social proof bar */
.hero__proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  background: var(--black-2);
  border: 1px solid var(--black-line);
  border-radius: 10px;
  width: 100%;
  max-width: 880px;
}
@media (min-width: 700px) {
  .hero__proof { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .hero__proof-item { border-left: 1px solid var(--black-line); padding: 0 1.25rem; }
  .hero__proof-item:first-child { border-left: 0; }
}

.hero__proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}
.hero__proof-number {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--orange);
  line-height: 1.05;
}
.hero__proof-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
}

/* CTA block */
.hero__cta-block {
  margin-top: var(--space-xl);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__cta-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.85rem;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1.2rem 2.4rem;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(230, 48, 39, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
  max-width: 100%;
}
.hero__btn:hover {
  background: var(--orange-bright);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(230, 48, 39, 0.6);
}
.hero__micro {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--gray);
  max-width: 50ch;
  text-align: center;
}

/* ==========================================================================
   Marquee (rotating tagline)
   ========================================================================== */
.marquee {
  background: var(--black);
  color: var(--white);
  padding: 1.25rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--orange);
  border-bottom: 1px solid var(--orange);
}
.marquee-track {
  display: inline-block;
  animation: scroll 30s linear infinite;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.marquee-track span { padding: 0 1.25rem; }
.marquee-track .star { color: var(--orange); padding: 0 0.5rem; font-size: 1.2em; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Stat strip
   ========================================================================== */
.stat-strip {
  background: var(--black);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--black-line);
  border-bottom: 1px solid var(--black-line);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item {
  border-left: 2px solid var(--black-line);
  padding-left: 1.25rem;
}
.stat-item:first-child { border-left: 2px solid var(--orange); }
@media (max-width: 767px) {
  .stat-item:nth-child(odd) { border-left: 2px solid var(--orange); }
  .stat-item:nth-child(even) { border-left: 2px solid var(--black-line); }
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--white);
  letter-spacing: -0.03em;
}
.stat-number .accent { color: var(--orange); }
.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  line-height: 1.4;
}

/* ==========================================================================
   Two-track (SuperDad / B2B)
   ========================================================================== */
.tracks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: var(--space-xl);
}
@media (min-width: 900px) { .tracks { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.track {
  background: var(--black-2);
  padding: var(--space-xl);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
  min-height: 520px;
  border: 1px solid var(--black-line);
}
.track:hover { transform: translateY(-6px); }
.track-superdad { border-top: 3px solid var(--orange); }
.track-superdad:hover { box-shadow: 0 20px 60px rgba(230, 48, 39, 0.15); }
.track-b2b { border-top: 3px solid var(--white); }
.track-b2b:hover { box-shadow: 0 20px 60px rgba(255, 255, 255, 0.08); }

.track::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 100%;
  background: radial-gradient(circle, rgba(230, 48, 39, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.track-b2b::before { background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 60%); }

.track-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: var(--space-md);
}
.track-superdad .track-tag { background: var(--orange); color: var(--black); }
.track-b2b .track-tag { background: var(--white); color: var(--black); }

.track h3 { margin-bottom: 0.75rem; color: var(--white); }
.track-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  margin: var(--space-md) 0;
  padding-left: 1rem;
  border-left: 3px solid;
  font-style: italic;
}
.track-superdad .track-quote { border-color: var(--orange); }
.track-b2b .track-quote { border-color: var(--white); }

.track-list {
  list-style: none;
  margin: var(--space-md) 0;
  flex-grow: 1;
}
.track-list li {
  padding: 0.7rem 0;
  font-size: 0.95rem;
  color: var(--gray-soft);
  border-bottom: 1px solid var(--black-line);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.track-list li::before {
  content: '▸';
  color: var(--orange);
  font-weight: 700;
}
.track-b2b .track-list li::before { color: var(--orange); }

/* ==========================================================================
   Pillars
   ========================================================================== */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: var(--space-xl);
  background: var(--black-line);
  border: 1px solid var(--black-line);
  border-radius: 6px;
  overflow: hidden;
}
@media (min-width: 768px) { .pillars { grid-template-columns: repeat(5, 1fr); } }
.pillars-4 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .pillars-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pillars-4 { grid-template-columns: repeat(4, 1fr); } }

.pillar {
  background: var(--black-2);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: background 0.3s;
  position: relative;
}
.pillar:hover { background: var(--black-3); }


.pillar-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.05em;
}

.pillar h4 {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--white);
}

.pillar p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ==========================================================================
   Section headers
   ========================================================================== */
.section-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  align-items: end;
}
@media (min-width: 1024px) {
  .section-header {
    grid-template-columns: 1.3fr 1fr;
    gap: var(--space-2xl);
  }
}
.section-header h2 { max-width: 16ch; }
.section-header .lede { margin-bottom: 0.25rem; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-card {
  background: var(--black-2);
  padding: var(--space-lg);
  border: 1px solid var(--black-line);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  height: 100%;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--white);
  flex-grow: 1;
}

.testimonial-quote::before {
  content: '"';
  display: block;
  font-size: 4rem;
  line-height: 0.5;
  color: var(--orange);
  margin-bottom: 1rem;
  font-weight: 900;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--black-line);
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--black-3);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  border: 1px solid var(--orange);
}

.testimonial-meta strong {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.testimonial-meta span {
  font-size: 0.82rem;
  color: var(--gray);
}

.t-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: var(--space-xl);
}
@media (min-width: 700px) { .t-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .t-grid { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */
.page-header {
  padding-top: calc(var(--space-3xl) + 5rem);
  padding-bottom: var(--space-2xl);
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  background:
    repeating-conic-gradient(
      from 180deg at 50% 100%,
      rgba(230, 48, 39, 0.03) 0deg 6deg,
      transparent 6deg 14deg
    );
  pointer-events: none;
}
.page-header > .container { position: relative; z-index: 1; }

.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-top: 1rem;
  max-width: 18ch;
}
.page-header .lede { margin-top: var(--space-md); color: var(--gray-soft); }

/* ==========================================================================
   Editorial / prose
   ========================================================================== */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}
@media (min-width: 1024px) {
  .editorial-split { grid-template-columns: 280px 1fr; gap: var(--space-2xl); }
}
.editorial-split .meta {
  position: sticky;
  top: 6rem;
}
.editorial-split .meta h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 1rem;
}

.prose {
  max-width: 720px;
}
.prose p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: var(--gray-soft);
}

.prose p strong { color: var(--white); font-weight: 700; }

/* ==========================================================================
   Timeline
   ========================================================================== */
.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--black-line);
  margin-top: var(--space-xl);
}

.timeline-item {
  padding-bottom: var(--space-xl);
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.6rem;
  top: 0.6rem;
  width: 14px; height: 14px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--black);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}
.timeline-item h4 {
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.timeline-item p {
  font-size: 1rem;
  color: var(--gray-soft);
  line-height: 1.65;
}

/* ==========================================================================
   Pricing cards
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: var(--space-xl);
}
@media (min-width: 700px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

/* Variante 4 colonnes pour Forfaits Direction */
.pricing-grid.pricing-grid-4 { grid-template-columns: 1fr; gap: 1rem; width: 100%; }
@media (min-width: 600px) { .pricing-grid.pricing-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .pricing-grid.pricing-grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Cartes plus compactes en grille 4 */
@media (min-width: 1100px) {
  .pricing-grid-4 .price-card { padding: 1.25rem 1.1rem; }
  .pricing-grid-4 .price-card h3 { font-size: 1.15rem; }
  .pricing-grid-4 .price-card p { font-size: 0.85rem; line-height: 1.5; }
  .pricing-grid-4 .price-card .price-list li { font-size: 0.85rem; padding: 0.6rem 0; }
  .pricing-grid-4 .price-card .price-tier { font-size: 0.65rem; }
  .pricing-grid-4 .price-card .btn { padding: 0.85rem 1rem; font-size: 0.7rem; letter-spacing: 0.05em; }
}

.price-card {
  background: var(--black-2);
  border: 2px solid var(--black-line);
  border-radius: 6px;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 16px 40px rgba(230, 48, 39, 0.15);
}
.price-card.featured {
  background: var(--black-3);
  border-color: var(--orange);
  position: relative;
}
.price-card.featured::before {
  content: '★ POPULAIRE';
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
}


.price-tier {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 0.5rem;
  display: block;
}

.price-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1;
  color: var(--orange);
  margin: var(--space-sm) 0;
  letter-spacing: -0.03em;
}
.price-amount small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0;
  display: inline-block;
  margin-left: 0.25rem;
}

.price-list {
  list-style: none;
  margin: var(--space-md) 0;
  flex-grow: 1;
}
.price-list li {
  padding: 0.65rem 0;
  font-size: 0.92rem;
  color: var(--gray-soft);
  border-bottom: 1px solid var(--black-line);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.price-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 900;
  font-size: 0.85rem;
}

/* ==========================================================================
   Form
   ========================================================================== */
.form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 620px;
}
.form-row {
  display: grid;
  gap: var(--space-md);
}
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.85rem 1rem;
  background: var(--black-2);
  border: 2px solid var(--black-line);
  border-radius: 4px;
  font-size: 1rem;
  color: var(--white);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--orange); }
.form-field textarea { resize: vertical; min-height: 110px; }

/* ==========================================================================
   CTA strip
   ========================================================================== */
.cta-strip {
  background: var(--black);
  color: var(--white);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--orange);
  border-bottom: 1px solid var(--orange);
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-conic-gradient(
      from 180deg at 50% 100%,
      rgba(230, 48, 39, 0.04) 0deg 5deg,
      transparent 5deg 12deg
    );
  pointer-events: none;
}
.cta-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(230, 48, 39, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-strip-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}
.cta-strip h2 {
  color: var(--white);
  max-width: 18ch;
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.cta-strip h2 .accent { color: var(--orange); }
.cta-strip .lede { color: var(--gray-soft); }
.cta-strip .eyebrow { color: var(--orange); }
.cta-strip .eyebrow::before { background: var(--orange); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--black);
  color: var(--gray-soft);
  padding: var(--space-3xl) 0 var(--space-lg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--black-line);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-xl); } }

.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: var(--space-md);
}
.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
  max-width: 36ch;
}

.footer h5 {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.footer-list { list-style: none; }
.footer-list li { margin-bottom: 0.7rem; }
.footer-list a {
  font-size: 0.92rem;
  color: var(--gray-soft);
  transition: color 0.2s;
}
.footer-list a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  font-size: 0.8rem;
  color: var(--gray);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   Inclus grid
   ========================================================================== */
.included {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: var(--space-xl);
  background: var(--black-line);
  border: 1px solid var(--black-line);
  border-radius: 6px;
  overflow: hidden;
}
@media (min-width: 600px) { .included { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .included { grid-template-columns: 1fr 1fr 1fr; } }

.included-item {
  background: var(--black-2);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 0.3s;
}
.included-item:hover { background: var(--black-3); }

.included-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.included-item h4 {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
}
.included-item p { font-size: 0.92rem; color: var(--gray); }

/* ==========================================================================
   B2B masqué — projet futur
   Pour réactiver « Pour les entreprises » partout :
     1. Supprimer ce bloc CSS
     2. Retirer la classe "is-future" des <li>/boutons dans les fichiers HTML
   ========================================================================== */
.is-future,
.track-b2b {
  display: none !important;
}
/* Sans la track-b2b, on centre la track-superdad seule plutôt que de laisser un trou */
.tracks { grid-template-columns: 1fr !important; max-width: 720px; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Outils gratuits (.tools)
   ========================================================================== */
.tools {
  background: var(--black-2);
  padding: var(--space-3xl) 0;
}
.tools__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: var(--space-xl);
}
@media (min-width: 700px)  { .tools__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
@media (min-width: 1100px) { .tools__grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

.tools__card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: var(--space-lg);
  background: var(--black);
  border: 1px solid var(--black-line);
  border-radius: 8px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.tools__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.tools__card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 16px 40px rgba(230, 48, 39, 0.18);
}
.tools__card:hover::before { transform: scaleX(1); }
.tools__card:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.tools__icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.tools__card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.2;
}
.tools__card p {
  font-size: 0.92rem;
  color: var(--gray-soft);
  line-height: 1.55;
  flex-grow: 1;
}
.tools__link {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
}
.tools__card:hover .tools__link { gap: 0.7rem; }

/* ==========================================================================
   Transformations avant/après (.ba — Before/After)
   ========================================================================== */
.ba {
  background: var(--black-2);
  padding: var(--space-3xl) var(--gutter);
  position: relative;
}

.ba__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-xl);
}
.ba__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.ba__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 auto;
}
.ba__title span { color: var(--orange); }
.ba__sub {
  margin: 1rem auto 0;
  color: var(--gray-soft);
  font-size: 1rem;
  max-width: 56ch;
}

.ba__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  max-width: var(--container-max);
  margin: 0 auto;
}
@media (min-width: 700px)  { .ba__grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1100px) { .ba__grid { grid-template-columns: repeat(5, 1fr); gap: 1.1rem; } }

.ba__card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--black-3);
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: zoom-in;
  border: 0;
  padding: 0;
}
.ba__card:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}
.ba__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(230, 48, 39, 0.28);
}

.ba__card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.ba__card:hover img { transform: scale(1.04); }

/* Badge en overlay sur le bas de l'image */
.ba__badge {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.7rem 0.85rem;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.75) 60%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}

.ba__name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

.ba__result {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--red);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(230, 48, 39, 0.45);
}

/* CTA sous la grille */
.ba__cta-wrap {
  text-align: center;
  margin-top: var(--space-xl);
}
.ba__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1.05rem 2.1rem;
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(230, 48, 39, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.ba__btn:hover {
  background: var(--orange-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(230, 48, 39, 0.55);
}
.ba__micro {
  margin: 0.85rem auto 0;
  font-size: 0.85rem;
  color: var(--gray);
  max-width: 50ch;
}

/* ==========================================================================
   Modal lightbox (.ba__modal)
   ========================================================================== */
.ba__modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  animation: ba-modal-fade 0.25s ease;
}
.ba__modal[hidden] { display: none; }

@keyframes ba-modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes ba-modal-zoom {
  from { transform: scale(0.94); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.ba__modal-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: min(90vw, 1100px);
  animation: ba-modal-zoom 0.3s ease;
}

.ba__modal-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 12rem);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  background: var(--black);
}

.ba__modal-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.25rem;
}
.ba__modal-caption .ba__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.ba__modal-caption .ba__result {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--white);
  background: var(--red);
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(230, 48, 39, 0.5);
}

.ba__modal-close,
.ba__modal-prev,
.ba__modal-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  font-family: var(--font-display);
  z-index: 1;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.ba__modal-close:hover,
.ba__modal-prev:hover,
.ba__modal-next:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.ba__modal-close:focus-visible,
.ba__modal-prev:focus-visible,
.ba__modal-next:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.ba__modal-close { top: 1.5rem; right: 1.5rem; }
.ba__modal-prev  { left: 1.5rem;  top: 50%; transform: translateY(-50%); }
.ba__modal-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.ba__modal-prev:hover  { transform: translateY(-50%) scale(1.06); }
.ba__modal-next:hover  { transform: translateY(-50%) scale(1.06); }

@media (max-width: 700px) {
  .ba__modal { padding: 3rem 0.75rem; }
  .ba__modal-close { top: 0.75rem; right: 0.75rem; width: 44px; height: 44px; font-size: 1.5rem; }
  .ba__modal-prev  { left: 0.5rem;  width: 44px; height: 44px; font-size: 1.5rem; }
  .ba__modal-next  { right: 0.5rem; width: 44px; height: 44px; font-size: 1.5rem; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: var(--space-xl);
  max-width: 900px;
}
.faq-item {
  border-top: 1px solid var(--black-line);
  padding: 1.5rem 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--black-line); }

.faq-item summary {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--orange);
  font-weight: 900;
  font-size: 1.6rem;
  transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 1rem;
  color: var(--gray-soft);
  line-height: 1.65;
}

/* ==========================================================================
   Page accent variants
   ========================================================================== */
.page-superdad .nav-cta { background: var(--orange); color: var(--white); }
.page-superdad .nav-cta:hover { background: var(--orange-bright); }
.page-superdad .nav-links a.active::after { background: var(--orange); }
.page-superdad .hero-aside { border-color: var(--orange); }

.page-b2b .nav-cta { background: var(--orange); color: var(--white); }
.page-b2b .nav-cta:hover { background: var(--orange-bright); }

/* ==========================================================================
   Logo block
   ========================================================================== */
.logo-display {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}
.logo-display img {
  height: 200px;
  width: auto;
  filter: drop-shadow(0 20px 60px rgba(230, 48, 39, 0.3));
}
@media (max-width: 768px) {
  .logo-display img { height: 140px; }
}
