/* ===========================================================
   ParkTracker — Feuille de style partagée
   Thème sombre, accent orange, design premium épuré
   =========================================================== */

:root {
  --bg: #0F1115;
  --surface: #181B22;
  --surface-2: #1E222B;
  --border: #262A33;
  --accent: #FF5A36;
  --accent-soft: rgba(255, 90, 54, 0.12);
  --accent-glow: rgba(255, 90, 54, 0.35);
  --text: #FFFFFF;
  --text-muted: #9AA1AD;
  --text-dim: #6B7280;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --maxw: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Halo d'ambiance en fond */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% -10%, rgba(255, 90, 54, 0.18), transparent 70%),
    radial-gradient(40% 40% at 90% 10%, rgba(255, 90, 54, 0.07), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---------- Conteneur ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ---------- Typographie ---------- */
h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(255, 90, 54, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-head .section-subtitle {
  margin: 0 auto;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(15, 17, 21, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand .logo {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand .logo svg,
.brand .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand .accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  transition: color 0.25s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

/* Marque dans la barre de nav : tout en blanc */
.site-header .brand,
.site-header .brand .accent {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.97rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease),
    background 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px -8px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px var(--accent-glow);
}

.btn-ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: #3a3f4b;
  background: var(--surface-2);
}

.btn-store {
  background: #fff;
  color: #0a0a0a;
  padding: 14px 22px;
}

.btn-store:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(255, 255, 255, 0.25);
}

/* Bouton désactivé (App Store : bientôt disponible) */
.btn-disabled {
  background: rgba(255, 255, 255, 0.6);
  color: #4a4f59;
  border-color: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
  position: relative;
}
.btn-disabled svg {
  fill: #4a4f59;
  opacity: 0.85;
}
.btn-disabled .store-text small,
.btn-disabled .store-text strong {
  color: #4a4f59;
}

.btn-store svg {
  width: 22px;
  height: 22px;
}

.btn-store .store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}
.btn-store .store-text small {
  font-size: 0.62rem;
  font-weight: 500;
  opacity: 0.7;
}
.btn-store .store-text strong {
  font-size: 1.02rem;
  font-weight: 700;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 170px 0 110px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 22px;
}

.hero h1 .grad {
  background: linear-gradient(120deg, var(--accent), #ff8a6b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 38px;
  margin-top: 46px;
  flex-wrap: wrap;
}

.hero-stats .stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-stats .stat span {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Mockup téléphone */
.hero-visual {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.phone {
  position: relative;
  width: 290px;
  height: 590px;
  background: linear-gradient(160deg, #20242e, #14171d);
  border: 1px solid var(--border);
  border-radius: 42px;
  padding: 14px;
  box-shadow: var(--shadow), 0 0 80px -30px var(--accent-glow);
  will-change: transform;
}

.phone::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 22px;
  background: #0b0d11;
  border-radius: 999px;
  z-index: 3;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: radial-gradient(120% 80% at 50% 0%, #1b1f28, #0d0f14);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 48px 18px 18px;
  gap: 14px;
}

/* Capture d'écran d'accueil affichée dans le téléphone */
.phone-screen.has-img {
  padding: 0;
}
.phone-screen.has-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
}

.phone-card .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-xp-bar {
  height: 8px;
  border-radius: 999px;
  background: #2a2f3a;
  margin-top: 10px;
  overflow: hidden;
}
.phone-xp-bar i {
  display: block;
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--accent), #ff8a6b);
  border-radius: 999px;
}

.phone-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.phone-metric {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
}
.phone-metric strong {
  font-size: 1.3rem;
  display: block;
}
.phone-metric span {
  font-size: 0.72rem;
  color: var(--text-dim);
}
.phone-metric .accent {
  color: var(--accent);
}

.phone-badge {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.phone small.muted {
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* ---------- Cartes fonctionnalités ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 80% at 0% 0%,
    var(--accent-soft),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 54, 0.4);
  box-shadow: var(--shadow);
}
.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 90, 54, 0.25);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  position: relative;
  z-index: 1;
}

/* ---------- Premium ---------- */
.premium {
  position: relative;
}

.premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.plan:hover {
  transform: translateY(-6px);
}

.plan.featured {
  border-color: rgba(255, 90, 54, 0.5);
  background: linear-gradient(180deg, rgba(255, 90, 54, 0.08), var(--surface) 55%);
  box-shadow: 0 30px 70px -30px var(--accent-glow);
}

.plan .plan-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.plan h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.plan .price {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 14px 0 4px;
}
.plan .price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dim);
}
.plan .price-alt {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.plan ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 30px;
  flex: 1;
}
.plan li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.96rem;
}
.plan li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--accent);
  margin-top: 2px;
}
.plan.basic li svg {
  stroke: var(--text-dim);
}

/* ---------- Parcs ---------- */
.parks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.park-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
    background 0.35s var(--ease);
}
.park-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 54, 0.4);
  background: var(--surface-2);
}
.park-card .pin {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  flex-shrink: 0;
}
.park-card .pin svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}
.park-card strong {
  font-size: 0.97rem;
  font-weight: 600;
}
.park-card small {
  display: block;
  color: var(--text-dim);
  font-size: 0.78rem;
}

.parks-note {
  text-align: center;
  margin-top: 34px;
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* ---------- CTA bandeau ---------- */
.cta-band {
  background: linear-gradient(135deg, rgba(255, 90, 54, 0.14), rgba(255, 90, 54, 0.04));
  border: 1px solid rgba(255, 90, 54, 0.3);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 14px;
}
.cta-band p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 28px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: #0c0e12;
  padding: 64px 0 32px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 14px;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col a,
.footer-col span {
  color: var(--text-muted);
  font-size: 0.94rem;
  transition: color 0.25s var(--ease);
}
.footer-col a:hover {
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom small {
  color: var(--text-dim);
  font-size: 0.84rem;
}
.disclaimer {
  color: var(--text-dim);
  font-size: 0.8rem;
  line-height: 1.55;
  max-width: 760px;
  margin-top: 18px;
}

/* ===========================================================
   Pages de contenu (assistance, légal)
   =========================================================== */
.page-hero {
  padding: 150px 0 60px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 14px;
}
.page-hero p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.content {
  padding: 20px 0 110px;
}
.content-narrow {
  max-width: 820px;
  margin: 0 auto;
}

.prose h2 {
  font-size: 1.5rem;
  margin: 44px 0 14px;
  scroll-margin-top: 100px;
}
.prose h3 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
}
.prose p,
.prose li {
  color: var(--text-muted);
  margin-bottom: 12px;
}
.prose ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
}
.prose ul li {
  margin-bottom: 8px;
}
.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose strong {
  color: var(--text);
}
.prose .updated {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 30px;
}

.callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 22px 0;
}
.callout p {
  margin: 0;
}

/* Sommaire (table des matières) */
.toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 40px;
}
.toc h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.toc ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.toc a {
  color: var(--text-muted);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.toc a:hover {
  color: var(--accent);
}

/* ---------- Contact (assistance) ---------- */
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}
.contact-card .ct-info h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.contact-card .ct-info p {
  color: var(--text-muted);
}
.contact-card .mail {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.05rem;
}

/* ---------- FAQ (accordéon) ---------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.faq-item.open {
  border-color: rgba(255, 90, 54, 0.4);
}
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  color: var(--text);
  text-align: left;
  font-size: 1.02rem;
  font-weight: 600;
  font-family: inherit;
  padding: 20px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-q .chev {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.35s var(--ease);
  stroke: var(--accent);
}
.faq-item.open .chev {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a-inner {
  padding: 0 22px 20px;
  color: var(--text-muted);
}
.faq-a-inner ol {
  padding-left: 20px;
  margin-top: 8px;
}
.faq-a-inner li {
  margin-bottom: 6px;
}

/* ===========================================================
   Animations au scroll
   =========================================================== */
/* Décalage d'ancrage : le scroll s'arrête sous le header fixe */
section[id] {
  scroll-margin-top: 84px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-visual {
    order: -1;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .parks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 80px 0;
  }
  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    background: rgba(15, 17, 21, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 22px;
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease);
    align-items: flex-start;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-toggle {
    display: flex;
  }
  .premium-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .toc ul {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cta-band {
    padding: 40px 24px;
  }
}

@media (max-width: 460px) {
  .parks-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 24px;
  }
}
