/* ========================================
   VARIABLES CSS
   ======================================== */

:root {
  --bg: #0a0a0a;
  --violet: #7c3aed;
  --teal: #10b981;
  --glass: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.08);
  --text-muted: #b3b3b3;
  --header-height: 110px;
}

/* ========================================
   RESET & BASE
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  color: #ffffff;
  position: relative;
}

/* Canvas pour l'animation circuit */
#wave-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

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

.site-header {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 28px 0;
  position: relative;
  z-index: 100;
  background: #09090f;
}

.site-nav {
  width: 90%;
  max-width: 1060px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  border-radius: 999px;
  background: none;
  
  
  
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}

.nav-logo-name {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.part-white { color: #f8fafc; }

.part-gold {
  background: linear-gradient(135deg, #EF9F27, #FAC775);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-slogan {
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  background: linear-gradient(135deg, #EF9F27, #FAC775);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Liens */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-link.active { color: #fff; background: rgba(187,62,253,0.15); }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-chevron { transition: transform 0.2s; opacity: 0.5; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #111827;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 6px;
  min-width: 190px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 200;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown.open .nav-chevron { transform: rotate(180deg); opacity: 1; }
.nav-dropdown.open .nav-dropdown-btn { color: #fff; background: rgba(255,255,255,0.07); }

.nav-dropdown-item {
  display: flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-size: 0.83rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
}

.nav-dropdown-item:hover { background: rgba(187,62,253,0.12); color: #fff; }

.nav-dropdown-sep {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 4px 6px;
}



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

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  position: relative;
  z-index: 1;
}

/* ========================================
   CARDS SECTION
   ======================================== */

/* .cards-container — remplacé par .cards-grid dans index.html */
.cards-container {
  position: relative;
  z-index: 10;
}

/* .card base — surclassé par les styles spécifiques dans la section INDEX ci-dessous */
.card {
  border-radius: 16px;
  transition: transform 0.3s ease;
}

/* card rules — gérées par la section INDEX ci-dessous */

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

/* Footer → styles gérés par les classes .footer-* ci-dessous */

/* ========================================
   BOUTON HAMBURGER MOBILE
   ======================================== */

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  .mobile-menu-toggle { display: flex; }

  .site-header {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 15, 0.95);
    padding: 15px 0;
  }

  .site-nav {
    width: 95%;
    padding: 10px 20px;
    border-radius: 16px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #111827;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 16px 20px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    overflow-y: auto;
    z-index: 1001;
    gap: 4px;
    border-radius: 0;
  }

  .nav-links.active { right: 0; }

  .nav-link { width: 100%; padding: 12px 16px; }

  .nav-dropdown { width: 100%; }
  .nav-dropdown-btn { width: 100%; justify-content: space-between; }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    margin-top: 4px;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu { display: block; }

  .nav-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    cursor: pointer;
  }

  .nav-menu-overlay.active { display: block; }

  body.menu-open { overflow: hidden; }

  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1rem; padding: 0 20px; }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  nav {
    padding: 10px 15px;
  }
  
  .site-name {
    font-size: 1rem;
  }
}

/* ========================================
   INDEX — HERO & CARDS (page d'accueil)
   ======================================== */

:root {
      --violet: #bb3efd;
      --cyan:   #25fde9;
      --dark:   #07070f;
    }

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

    body {
      background: var(--dark);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      overflow-x: hidden;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */
    .hero {
      position: relative;
      width: 100%;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    /* Fond */
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 90% 55% at 50% 115%, rgba(187,62,253,0.2) 0%, transparent 60%),
        radial-gradient(ellipse 55% 35% at 82% 18%,  rgba(37,253,233,0.09) 0%, transparent 60%),
        linear-gradient(180deg, #07070f 0%, #0c0c1e 100%);
    }

    /* Grille perspective animée */
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(187,62,253,0.11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(187,62,253,0.11) 1px, transparent 1px);
      background-size: 52px 52px;
      transform: perspective(650px) rotateX(57deg) translateY(22%) scale(1.5);
      transform-origin: center bottom;
      animation: gridScroll 9s linear infinite;
      mask-image: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.45) 38%, transparent 62%);
      -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.45) 38%, transparent 62%);
    }

    @keyframes gridScroll {
      from { background-position: 0 0; }
      to   { background-position: 0 52px; }
    }

    /* Étoiles */
    .hero-stars { position: absolute; inset: 0; pointer-events: none; }

    .star {
      position: absolute;
      border-radius: 50%;
      background: #fff;
      animation: starPulse var(--d,3s) ease-in-out infinite var(--del,0s);
    }

    @keyframes starPulse {
      0%,100% { opacity: var(--lo,0.07); }
      50%      { opacity: var(--hi,0.65); }
    }

    /* Scan lines */
    .scan-line {
      position: absolute;
      left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg,
        transparent 0%,
        rgba(187,62,253,0.45) 20%,
        rgba(37,253,233,0.9)  50%,
        rgba(187,62,253,0.45) 80%,
        transparent 100%);
      animation: scanDown var(--sd,9s) ease-in-out infinite var(--sdel,0s);
      top: 0;
    }

    @keyframes scanDown {
      0%   { top: -1px; opacity: 0; }
      3%   { opacity: 1; }
      97%  { opacity: 1; }
      100% { top: 100%; opacity: 0; }
    }

    /* Orbes */
    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(72px);
      pointer-events: none;
      animation: orbFloat var(--od,12s) ease-in-out infinite var(--odel,0s);
    }

    @keyframes orbFloat {
      0%,100% { transform: translate(0,0); }
      50%      { transform: translate(var(--ox,20px), var(--oy,-15px)); }
    }

    /* Overlay lisibilité */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(7,7,15,0.0)  0%,
        rgba(7,7,15,0.0)  35%,
        rgba(7,7,15,0.6)  78%,
        rgba(7,7,15,1.0) 100%
      );
    }

    /* Contenu */
    .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      padding: 0 24px;
      max-width: 850px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.67rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--cyan);
      border: 1px solid rgba(37,253,233,0.22);
      background: rgba(37,253,233,0.05);
      padding: 7px 18px;
      border-radius: 100px;
      margin-bottom: 30px;
      animation: riseUp 0.8s ease both;
    }

    .badge-dot {
      width: 5px; height: 5px;
      background: var(--cyan);
      border-radius: 50%;
      box-shadow: 0 0 8px var(--cyan);
      animation: blink 2s ease-in-out infinite;
    }

    @keyframes blink {
      0%,100% { opacity: 1; }
      50%      { opacity: 0.25; }
    }

    .hero-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.75rem, 5vw, 5rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.035em;
      color: #ffffff;
      margin-bottom: 22px;
      animation: riseUp 0.8s ease 0.1s both;
    }

    .hero-title .grad {
      background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: 1.05rem;
      font-weight: 300;
      color: rgba(255,255,255,0.46);
      line-height: 1.75;
      max-width: 490px;
      margin-bottom: 44px;
      animation: riseUp 0.8s ease 0.2s both;
    }

    .hero-btns {
      display: flex;
      gap: 13px;
      flex-wrap: wrap;
      justify-content: center;
      animation: riseUp 0.8s ease 0.3s both;
    }

    .btn-main {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 30px;
      background: linear-gradient(135deg, var(--violet), var(--cyan));
      color: #07070f;
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
      text-decoration: none;
      border-radius: 10px;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 0 28px rgba(187,62,253,0.38);
    }

    .btn-main:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 40px rgba(187,62,253,0.6);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: rgba(255,255,255,0.04);
      color: rgba(255,255,255,0.68);
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.88rem;
      text-decoration: none;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.1);
      transition: all 0.2s;
    }

    .btn-ghost:hover {
      background: rgba(255,255,255,0.08);
      color: #fff;
      border-color: rgba(255,255,255,0.18);
    }

    /* Stats bar */
    .hero-stats {
      display: flex;
      align-items: stretch;
      margin-top: 60px;
      animation: riseUp 0.8s ease 0.42s both;
      
      border-radius: 14px;
      background: rgba(255,255,255,0.025);
      backdrop-filter: blur(12px);
      overflow: hidden;
    }

    .stat-item {
      padding: 18px 38px;
      text-align: center;
    }

    .stat-item + .stat-item {
      border-left: 1px solid rgba(255,255,255,0.07);
    }

    .stat-num {
      font-family: 'Syne', sans-serif;
      font-size: 1.75rem;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 5px;
      background: linear-gradient(135deg, var(--violet), var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-lbl {
      font-size: 0.66rem;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.28);
    }

    @keyframes riseUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ══════════════════════════════════════
       CARDS
    ══════════════════════════════════════ */
    .cards-section {
      flex: 1;
      position: relative;
      z-index: 10;
      padding: 72px 24px 88px;
      background: var(--dark);
    }

    .section-label {
      text-align: center;
      font-size: 0.66rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.18);
      margin-bottom: 46px;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      max-width: 1060px;
      margin: 0 auto;
    }

    .card {
      position: relative;
      background: rgba(255,255,255,0.025);
      
      border-radius: 18px;
      padding: 28px 22px 24px;
      overflow: hidden;
      transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
      text-align: left;
    }

    /* Lueur coin au hover */
    .card::before {
      content: '';
      position: absolute;
      top: -40%; left: -40%;
      width: 120%; height: 120%;
      background: radial-gradient(circle at 30% 30%, rgba(187,62,253,0.12) 0%, transparent 55%);
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }

    .card:nth-child(even)::before {
      background: radial-gradient(circle at 30% 30%, rgba(37,253,233,0.09) 0%, transparent 55%);
    }

    .card:hover {
      transform: translateY(-5px);
      background: rgba(255,255,255,0.04);
      border-color: rgba(187,62,253,0.2);
    }

    .card:nth-child(even):hover { border-color: rgba(37,253,233,0.16); }
    .card:hover::before { opacity: 1; }

    /* Numéro décoratif */
    .card-num {
      position: absolute;
      top: 16px; right: 18px;
      font-family: 'Syne', sans-serif;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.07);
      user-select: none;
    }

    /* Icône */
    .card-icon {
      width: 42px; height: 42px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .card:nth-child(odd)  .card-icon { background: rgba(187,62,253,0.11); }
    .card:nth-child(even) .card-icon { background: rgba(37,253,233,0.08); }

    .card:nth-child(odd)  .card-icon i { color: var(--violet); stroke: var(--violet); }
    .card:nth-child(even) .card-icon i { color: var(--cyan);   stroke: var(--cyan); }

    .card-icon i { width: 20px; height: 20px; stroke-width: 1.8; }

    .card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: #efefef;
      letter-spacing: -0.01em;
      margin-bottom: 8px;
    }

    .card p {
      font-size: 0.83rem;
      font-weight: 300;
      color: rgba(255,255,255,0.36);
      line-height: 1.65;
      margin-bottom: 20px;
    }

    .card-btn {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 8px 17px;
      background: linear-gradient(135deg, #bb3efd, #25fde9);
      color: #07070f;
      text-decoration: none;
      border-radius: 8px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 0.79rem;
      letter-spacing: 0.01em;
      transition: opacity 0.2s, transform 0.2s;
    }

    .card-btn:hover {
      opacity: 0.84;
      transform: translateX(3px);
    }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 880px) {
      .cards-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-item  { padding: 16px 26px; }
    }

    @media (max-width: 560px) {
      .cards-grid  { grid-template-columns: 1fr; }
      .hero-stats  { flex-direction: column; }
      .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.07); }
      .hero-btns   { flex-direction: column; align-items: stretch; width: 100%; max-width: 280px; }
      .btn-main, .btn-ghost { justify-content: center; }
    }

/* ========================================
   FOOTER UNIFIÉ — RoboSelect360
   ======================================== */

.footer-wrap {
  background: #09090f;
  border-top: 1px solid rgba(187, 62, 253, 0.25);
  font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
  padding: 2.5rem 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  background-image:
    linear-gradient(rgba(187, 62, 253, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 253, 233, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 260px;
}

.footer-logo {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #bb3efd, #25fde9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo-accent {
  -webkit-text-fill-color: #25fde9;
  color: #25fde9;
}

.footer-tagline {
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.6rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-col-title {
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.55rem;
  color: #25fde9;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
}

.footer-bar {
  width: 3px;
  height: 16px;
  background: linear-gradient(135deg, #bb3efd, #25fde9);
  border-radius: 2px;
  display: inline-block;
  margin-right: 0.6rem;
  flex-shrink: 0;
}

.footer-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col ul li {
  margin-bottom: 0 !important;
  line-height: 1 !important;
  color: inherit !important;
}

.footer-col ul li a {
  font-size: 0.82rem;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.02em;
}

.footer-col ul li a:hover {
  color: #bb3efd;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.58rem;
  color: #334155;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-family: 'Space Mono', monospace, sans-serif;
  font-size: 0.58rem;
  color: #334155;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #64748b;
}

@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
  }
  .footer-nav {
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
