/* =====================================================================
   SITE "LINE EDIT" — fichier CSS (les COULEURS et la MISE EN FORME).
   Le CSS décide de l'apparence : couleurs, tailles, espacements, polices.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1) LES VARIABLES DE COULEUR
   Modifie tes couleurs ICI, en un seul endroit. Elles sont réutilisées
   partout plus bas avec la forme  var(--nom-de-la-couleur).
   --------------------------------------------------------------------- */
:root {
  --blue-950: #04122b; /* fond très foncé */
  --blue-900: #06183a;
  --blue-800: #0a2350;
  --blue-700: #0f3a86;
  --blue-500: #1d6cff; /* bleu principal (comme ton logo) */
  --blue-400: #3f8bff;
  --blue-300: #7fb4ff;
  --ice: #dbe9ff;      /* texte clair */
  --paper: #f3f7ff;
  --ink: #04122b;
  --accent: #ff3b30;   /* touche rouge "américaine" (à utiliser avec parcimonie) */
  --line: rgba(127, 180, 255, .18); /* couleur des fines bordures */

  /* PHOTO D'ACCUEIL :
     Ici pour mettre ta photo : remplace "none" par  url("hero.jpg")
     (place le fichier image à côté de index.html). */
  --hero-photo: none;
}

/* ---------------------------------------------------------------------
   2) RÉGLAGES DE BASE (reset)
   --------------------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  font-family: 'Archivo', sans-serif; /* police du texte courant */
  background: var(--blue-950);
  color: var(--ice);
  overflow-x: hidden; /* empêche le défilement horizontal */
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--blue-500); color: #fff; }

/* Effet de "grain" léger par-dessus tout le site (côté cinéma) */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 60;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =====================================================================
   3) BARRE DU HAUT (NAV)
   ===================================================================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50; /* reste en haut */
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px clamp(20px, 5vw, 64px);
  mix-blend-mode: difference; /* le texte reste lisible sur fond clair ou foncé */
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 10px; overflow: hidden;
  display: grid; place-items: center; background: var(--blue-500);
}
/* L'image du logo remplit le petit carré arrondi */
.logo-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-name { font-family: 'Anton'; font-size: 20px; letter-spacing: 3px; color: #fff; }
.nav-contact {
  font-family: 'Space Mono'; font-weight: 700; font-size: 13px; letter-spacing: 3px; color: #fff;
  border: 1.5px solid #fff; padding: 11px 20px; border-radius: 40px; cursor: pointer;
  background: transparent; transition: transform .25s;
}
.nav-contact:hover { transform: translateY(-2px); } /* léger soulèvement au survol */

/* =====================================================================
   4) ÉCRAN D'ACCUEIL (HERO)
   ===================================================================== */
.hero {
  height: 100vh; /* occupe tout l'écran */
  position: relative; display: grid; place-items: center; text-align: center; overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(29,108,255,.35), transparent 60%),
    linear-gradient(180deg, var(--blue-900), var(--blue-950));
}
.hero-photo {
  position: absolute; inset: 0;
  background-image: var(--hero-photo); /* <- ta photo (voir variable --hero-photo) */
  background-size: cover; background-position: center;
  opacity: .55; filter: saturate(1.05) contrast(1.05);
}
/* Fond décoratif affiché tant qu'AUCUNE photo n'est mise (classe "empty") */
.hero-photo.empty {
  opacity: 1;
  background:
    repeating-linear-gradient(135deg, rgba(29,108,255,.06) 0 2px, transparent 2px 22px),
    radial-gradient(70% 60% at 50% 40%, rgba(63,139,255,.25), transparent 70%);
}
.hero-photo.empty::before {
  /*content: "PHOTO D'ACCUEIL";*/
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: 'Space Mono'; font-size: 13px; letter-spacing: 4px; color: rgba(127,180,255,.35);
}
.hero-vign { /* léger assombrissement des bords pour mettre le titre en valeur */
  position: absolute; inset: 0;
  background: radial-gradient(70% 70% at 50% 50%, transparent 40%, var(--blue-950) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 0 20px; }
/* Ta photo au-dessus du titre : Ici pour changer sa taille (clamp = mini, idéal, maxi) */
.hero-logo {
  width: clamp(96px, 15vw, 168px); height: auto; display: block; margin: 0 auto 22px;
  border-radius: 24px; /* coins arrondis */
  box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(127,180,255,.25); /* ombre + léger contour */
}
.hero h1 {
  font-family: 'Anton'; font-weight: 400; line-height: .86; color: #fff;
  font-size: clamp(70px, 18vw, 260px); /* la taille s'adapte à l'écran */
  letter-spacing: -2px; text-shadow: 0 0 60px rgba(29,108,255,.5);
}
.hero h1 span { display: inline; color: var(--blue-400); } /* EDIT sur la même ligne que LINE */
.hero-sub {
  font-family: 'Space Mono'; margin-top: 26px; font-size: clamp(12px, 1.6vw, 16px);
  letter-spacing: 6px; color: var(--blue-300); text-transform: uppercase;
}
/* Indicateur de défilement animé (la petite molette) */
.scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 3;
  font-family: 'Space Mono'; font-size: 11px; letter-spacing: 4px; color: var(--blue-300); text-align: center;
}
.scroll-hint .wheel {
  width: 26px; height: 42px; border: 2px solid var(--blue-300); border-radius: 16px;
  margin: 0 auto 12px; position: relative;
}
.scroll-hint .wheel::after {
  content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 3px; background: var(--blue-300);
  animation: wheel 1.6s infinite;
}
@keyframes wheel {
  0% { opacity: 0; top: 8px; }
  40% { opacity: 1; }
  80% { opacity: 0; top: 20px; }
  100% { opacity: 0; }
}

/* =====================================================================
   5) ZONE DE ZOOM (écran de PC -> tarifs)
   ===================================================================== */
.zoom-stage {
  /* IMPORTANT : cette hauteur règle la DURÉE du zoom au scroll.
     Ici pour rendre le zoom plus lent (augmente) ou plus rapide (diminue). */
  height: 460vh;
  position: relative; background: var(--blue-950);
}
.sticky-wrap {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: grid; place-items: center;
  background:
    radial-gradient(90% 70% at 50% 30%, rgba(15,58,134,.55), transparent 70%),
    linear-gradient(180deg, var(--blue-950), var(--blue-900) 60%, var(--blue-950));
}
.room-glow { /* halo de lumière bleue derrière l'écran */
  position: absolute; width: 80vw; height: 55vh; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,108,255,.45), transparent 70%);
  filter: blur(60px); will-change: transform, opacity;
}

/* ---- L'écran de PC ---- */
.monitor {
  position: relative; width: min(880px, 80vw);
  will-change: transform, opacity, filter;
  transform-origin: center center; /* le zoom part du centre */
}
.monitor .bezel {
  background: linear-gradient(160deg, #0c1830, #060d1d);
  border-radius: 18px; padding: 16px;
  box-shadow: 0 40px 120px rgba(0,0,0,.6), 0 0 0 1px rgba(127,180,255,.12), inset 0 0 0 1px rgba(255,255,255,.03);
}
.monitor .stand {
  width: 120px; height: 60px; margin: 0 auto;
  background: linear-gradient(180deg, #0c1830, #05101f);
  clip-path: polygon(30% 0, 70% 0, 100% 100%, 0 100%);
}
.monitor .stand-base { width: 200px; height: 12px; margin: 0 auto; background: #0c1830; border-radius: 6px; }

.screen {
  background: #11131a; border-radius: 8px; overflow: hidden;
  aspect-ratio: 16 / 10; position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.screen-layer { position: absolute; inset: 0; }

/* ---- Interface façon DaVinci Resolve ---- */
.dv { display: flex; flex-direction: column; height: 100%; font-family: 'Space Mono'; color: #aab6c9; }
.dv-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px; background: #1b1e27; border-bottom: 1px solid #000; font-size: 10px; letter-spacing: 1px;
}
.dv-top .dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 5px; }
.dv-pages { display: flex; gap: 14px; color: #5d6b80; font-size: 9px; letter-spacing: 1px; }
.dv-pages b { color: var(--blue-400); } /* page active (Edit) */
.dv-mid { display: flex; flex: 1; min-height: 0; }
.dv-viewer {
  flex: 1.4; background: #05070c; margin: 8px; border-radius: 4px;
  position: relative; overflow: hidden; display: grid; place-items: center;
}
.dv-viewer .frame {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 30% 30%, rgba(63,139,255,.5), transparent 60%),
    radial-gradient(50% 60% at 80% 70%, rgba(255,59,48,.35), transparent 60%),
    linear-gradient(120deg, #0a1a3a, #02060f);
}
.dv-viewer .tc { position: absolute; bottom: 8px; left: 10px; font-size: 10px; color: #9fd0ff; letter-spacing: 1px; }
.dv-viewer .play {
  width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.12);
  display: grid; place-items: center; backdrop-filter: blur(4px); position: relative; z-index: 2;
}
.dv-viewer .play::after {
  content: ""; border-left: 14px solid #fff;
  border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 4px;
}
.dv-side {
  flex: .7; background: #1b1e27; margin: 8px 8px 8px 0; border-radius: 4px; padding: 8px;
  font-size: 9px; display: flex; flex-direction: column; gap: 6px;
}
.dv-side .thumb { height: 34px; border-radius: 3px; background: linear-gradient(120deg, #123a86, #0a1730); }
.dv-side .thumb:nth-child(2) { background: linear-gradient(120deg, #3f8bff, #0a1730); }
.dv-side .thumb:nth-child(3) { background: linear-gradient(120deg, #1d6cff, #2a0a0a); }
.dv-time {
  background: #15171f; border-top: 1px solid #000; padding: 8px 10px;
  display: flex; flex-direction: column; gap: 6px; position: relative;
}
.dv-ruler { display: flex; justify-content: space-between; font-size: 8px; color: #56627a; border-bottom: 1px solid #2a2e3a; padding-bottom: 4px; }
.dv-track { display: flex; align-items: center; gap: 6px; height: 20px; }
.dv-track .lbl { width: 26px; font-size: 8px; color: #56627a; flex-shrink: 0; }
.dv-track .lane { flex: 1; height: 100%; background: #0e1016; border-radius: 3px; position: relative; overflow: hidden; }
.clip { position: absolute; top: 2px; bottom: 2px; border-radius: 3px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.15); }
.clip.v  { background: linear-gradient(180deg, #2d6fd6, #1b4fa0); } /* clip vidéo */
.clip.v2 { background: linear-gradient(180deg, #e0533f, #9c3526); } /* 2e piste vidéo */
.clip.a  { background: repeating-linear-gradient(90deg, #1f6f4a 0 3px, #1a5d3e 3px 6px); } /* audio */
.dv-playhead {
  position: absolute; top: 24px; bottom: 8px; width: 2px; background: #ff3b30; left: 38%; box-shadow: 0 0 8px #ff3b30;
}
.dv-playhead::before {
  content: ""; position: absolute; top: -6px; left: -4px;
  border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 7px solid #ff3b30;
}

/* ---- LES TARIFS (3 packs) ---- */
.pricing-screen {
  position: fixed; inset: 0; z-index: 5; display: grid; place-items: center;
  will-change: opacity, transform;
  opacity: 0; /* invisible au départ : script.js le fait apparaître au scroll */
  pointer-events: none; padding: 90px 20px 40px;
}
.pricing-inner { width: min(1100px, 94vw); }
.pricing-head { text-align: center; margin-bottom: 38px; }
.pricing-head h2 { font-family: 'Anton'; font-size: clamp(40px, 7vw, 86px); color: #fff; letter-spacing: -1px; line-height: .9; }
.pricing-head p { font-family: 'Space Mono'; letter-spacing: 4px; color: var(--blue-300); font-size: 13px; margin-top: 14px; text-transform: uppercase; }
.packs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; } /* 3 colonnes */
.pack {
  background: linear-gradient(180deg, rgba(15,58,134,.4), rgba(6,24,58,.7));
  border: 1px solid var(--line); border-radius: 18px; padding: 30px 26px;
  position: relative; overflow: hidden; backdrop-filter: blur(6px);
}
.pack.featured { border-color: var(--blue-400); box-shadow: 0 0 50px rgba(29,108,255,.35); transform: translateY(-10px); }
.pack .tag {
  position: absolute; top: 16px; right: 16px; font-family: 'Space Mono'; font-size: 9px; letter-spacing: 2px;
  background: var(--accent); color: #fff; padding: 5px 10px; border-radius: 20px;
}
.pack .pname { font-family: 'Anton'; font-size: 26px; color: #fff; letter-spacing: 1px; }
.pack .price { font-family: 'Anton'; font-size: 54px; color: var(--blue-400); margin: 14px 0 4px; }
.pack .desc { font-size: 13px; color: var(--blue-300); font-family: 'Space Mono'; margin-bottom: 18px; min-height: 34px; }
.pack ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; }
.pack li { font-size: 14px; display: flex; gap: 10px; align-items: flex-start; color: var(--ice); }
.pack li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--blue-400); margin-top: 6px; flex-shrink: 0; }
.pack .cta {
  display: block; text-align: center; font-family: 'Space Mono'; font-weight: 700; letter-spacing: 2px; font-size: 12px;
  padding: 14px; border-radius: 40px; text-decoration: none; color: #fff; border: 1.5px solid var(--blue-400); transition: background .25s;
}
.pack .cta:hover { background: var(--blue-500); }
.pack.featured .cta { background: var(--blue-500); border-color: var(--blue-500); }

/* =====================================================================
   6) SECTIONS CLASSIQUES (outils + vidéos)
   ===================================================================== */
.section { padding: clamp(80px, 12vh, 160px) clamp(20px, 6vw, 90px); position: relative; }
.sec-kicker { font-family: 'Space Mono'; letter-spacing: 5px; font-size: 13px; color: var(--blue-400); text-transform: uppercase; margin-bottom: 16px; }
.sec-title { font-family: 'Anton'; font-size: clamp(40px, 8vw, 96px); color: #fff; line-height: .9; letter-spacing: -1px; margin-bottom: 50px; }

/* ---- Les cartes d'outils ---- */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.tool {
  background: linear-gradient(180deg, rgba(15,58,134,.3), rgba(6,24,58,.55));
  border: 1px solid var(--line); border-radius: 20px; padding: 34px;
  display: flex; gap: 22px; align-items: center;
  opacity: 0; transform: translateY(60px) scale(.96);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.tool.in { opacity: 1; transform: none; }
.tool .ic { width: 74px; height: 74px; border-radius: 16px; flex-shrink: 0; overflow: hidden; display: grid; place-items: center; background: transparent; }
/* Les vraies icônes (DaVinci, Photoshop, Fusion) s'affichent en entier, sans bord noir */
.tool .ic img { width: 100%; height: 100%; object-fit: contain; display: block; }
.tool .meta h3 { font-family: 'Anton'; font-size: 24px; color: #fff; letter-spacing: 1px; }
.tool .meta p { font-family: 'Space Mono'; font-size: 12px; color: var(--blue-300); margin-top: 6px; line-height: 1.6; }

/* ---- Les cartes vidéo ---- */
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.vid {
  display: block; text-decoration: none; border-radius: 16px; overflow: hidden;
  background: rgba(6,24,58,.6); border: 1px solid var(--line);
  opacity: 0; transform: translateY(60px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.vid.in { opacity: 1; transform: none; }
.vid:hover .thumb img, .vid:hover .thumb-ph { transform: scale(1.06); }
.vid:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); background: var(--accent); }
.vid .thumb { aspect-ratio: 16 / 9; position: relative; overflow: hidden; background: #0a1730; }
.vid .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.thumb-ph {
  position: absolute; inset: 0; transition: transform .5s;
  background:
    repeating-linear-gradient(135deg, rgba(29,108,255,.08) 0 2px, transparent 2px 20px),
    radial-gradient(60% 70% at 50% 40%, rgba(63,139,255,.4), #0a1730 75%);
  display: grid; place-items: center; font-family: 'Space Mono'; font-size: 11px; letter-spacing: 3px; color: rgba(219,233,255,.5);
}
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60px; height: 60px; border-radius: 50%; background: rgba(29,108,255,.85);
  display: grid; place-items: center; transition: transform .35s, background .35s; z-index: 2;
}
.play-btn::after { content: ""; border-left: 20px solid #fff; border-top: 12px solid transparent; border-bottom: 12px solid transparent; margin-left: 5px; }
.vid .dur { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,.8); color: #fff; font-family: 'Space Mono'; font-size: 11px; padding: 3px 8px; border-radius: 5px; z-index: 2; }
.vid .vmeta { padding: 18px 20px; }
.vid .vmeta h3 { font-family: 'Archivo'; font-weight: 800; font-size: 17px; color: #fff; line-height: 1.25; }
.vid .vmeta span { font-family: 'Space Mono'; font-size: 11px; color: var(--blue-300); letter-spacing: 1px; display: block; margin-top: 8px; }
.yt-cta { margin-top: 46px; text-align: center; }
.yt-cta a {
  font-family: 'Space Mono'; font-weight: 700; letter-spacing: 3px; font-size: 13px; color: #fff; text-decoration: none;
  border: 1.5px solid var(--blue-400); padding: 16px 34px; border-radius: 40px; display: inline-block; transition: background .25s;
}
.yt-cta a:hover { background: var(--blue-500); }

/* =====================================================================
   7) BAS DE PAGE (FOOTER)
   ===================================================================== */
footer { padding: 60px; text-align: center; border-top: 1px solid var(--line); background: var(--blue-950); }
footer .fbrand { font-family: 'Anton'; font-size: 30px; letter-spacing: 4px; color: #fff; }
footer p { font-family: 'Space Mono'; font-size: 11px; letter-spacing: 2px; color: var(--blue-300); margin-top: 12px; }

/* =====================================================================
   8) FENÊTRE CONTACT (la "modale")
   ===================================================================== */
.contact-overlay {
  position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center;
  background: rgba(2,8,22,.75); backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none; transition: opacity .4s; /* caché par défaut */
}
.contact-overlay.open { opacity: 1; pointer-events: auto; }
.contact-overlay.open .contact-card { transform: none; }
.contact-card {
  display: flex; align-items: stretch; background: linear-gradient(160deg, #0a2350, #06183a);
  border: 1px solid var(--blue-400); border-radius: 22px; overflow: hidden; max-width: min(720px, 92vw);
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
  transform: translateY(30px) scale(.96); /* position de départ (animation) */
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.contact-logo { background: linear-gradient(160deg, var(--blue-700), var(--blue-500)); display: grid; place-items: center; padding: 50px; min-width: 200px; }
.contact-logo .big-mark {
  width: 120px; height: 120px; border: 3px solid #fff; border-radius: 24px; overflow: hidden;
  display: grid; place-items: center;
}
/* L'image du logo remplit le grand carré arrondi */
.contact-logo .big-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.contact-body { padding: 46px 44px; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.contact-body .k { font-family: 'Space Mono'; letter-spacing: 4px; font-size: 12px; color: var(--blue-300); text-transform: uppercase; }
.contact-body h3 { font-family: 'Anton'; font-size: 34px; color: #fff; letter-spacing: 1px; margin-bottom: 6px; }
.contact-body a.mail {
  font-family: 'Space Mono'; font-size: clamp(15px, 2.4vw, 22px); color: var(--blue-300); text-decoration: none;
  border-bottom: 2px solid var(--blue-400); padding-bottom: 4px; width: fit-content; transition: color .25s;
}
.contact-body a.mail:hover { color: #fff; }
.contact-close { position: absolute; top: 24px; right: 28px; font-family: 'Space Mono'; color: #fff; font-size: 24px; cursor: pointer; background: none; border: none; }

/* =====================================================================
   9) ADAPTATION TÉLÉPHONE (petits écrans)
   ===================================================================== */
@media (max-width: 760px) {
  .packs { grid-template-columns: 1fr; }     /* les tarifs s'empilent */
  .pack.featured { transform: none; }
  .contact-card { flex-direction: column; }  /* logo au-dessus, infos dessous */
  .contact-logo { padding: 34px; min-width: 0; }
  .contact-logo .big-mark { width: 80px; height: 80px; }
  .brand-name { display: none; }             /* on cache le nom pour gagner de la place */

  /* ---- TARIFS EN VERTICAL : on rend le bloc défilable et plus compact ----
     Sur mobile, les 3 packs empilés sont plus hauts que l'écran. Avant, le bloc
     était centré et "coupé" en haut/bas sans pouvoir tout voir. Maintenant :
     - le bloc démarre en haut (au lieu d'être centré) ;
     - il devient défilable À L'INTÉRIEUR de lui-même (overflow-y: auto) ;
     - les packs sont un peu plus compacts pour limiter le défilement. */
  .pricing-screen {
    display: block;                 /* on retire le centrage en grille */
    overflow-y: auto;               /* on peut scroller dans le bloc des tarifs */
    -webkit-overflow-scrolling: touch;
    padding: 96px 18px 50px;
  }
  .pricing-inner { width: 100%; margin: 0 auto; }
  .pricing-head { margin-bottom: 26px; }
  .packs { gap: 16px; }
  .pack { padding: 22px 20px; }
  .pack .price { font-size: 38px; margin: 10px 0 2px; }
  .pack .desc { min-height: 0; margin-bottom: 14px; }
  .pack ul { gap: 8px; margin-bottom: 18px; }
  .pack li { font-size: 13px; }
}

/* Respecte les personnes qui ont désactivé les animations sur leur appareil */
@media (prefers-reduced-motion: reduce) { * { animation: none !important; } }
