*---- Code dark mode /light mode 
        /* Thème light (défaut)
        :root {
          --bg: #ffffff;
          --txt: #1a1a1a;
          --accent: #0066cc;
          --surface: #f5f5f5;
            font-family:inter, 
        }
 
        /* Thème dark 
        [data-theme="dark"] {
          --bg: #121212;
          --txt: #e8e8e8;
          --accent: #4da6ff;
          --surface: #1e1e1e;
        }
 
        /* Transition douce au changement 
        body { transition: background 0.2s ease, 
            color 0.2s ease; 
        font-family:; }
 
----*/
 
/* Balise style */
    
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
 
/* outline debug supprimé */
    :root {
      --white: #ffffff;
      --off-white: #e8e8e8;
      --muted: #a2a2a2;
      --accent: #ffffff;
      --border: rgba(255,255,255,0.12);
      --bg: #080808;
    }
 
    html, body {
      background: var(--bg);
      color: var(--white);
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      -webkit-font-smoothing: antialiased;
    }
 
 
body{
    position:relative;  
    overflow: visible;
}
 
    .content {
      width: 80%;
      margin: auto;
      overflow: hidden;
    }
 
   /* ── NAVBAR FIXE ── */
   .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      background: transparent;
      transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease;
      animation: fadeUp 0.8s 0.15s ease both;
    }
 
    /* Ajouté par JS au scroll */
    .navbar.scrolled {
      background: rgba(8, 8, 8, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
 
   .menu {
        width:80%;
        height: 100px;
padding:0px 10%;
        border: solid 0.1px;
        border-color: rgba(255, 255, 255, 0.5);
        animation: fadeUp 0.8s 0.20s ease both;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
 
.logo {
    width:50%;
}
 
 .logo img {
     display:block;
      height:100px;
    }
 
ul {
        display: flex;
        flex-direction: row;
        animation: fadeUp 0.8s 0.20s ease both;
 
justify-content:space-around;
margin:auto;
    }
 
 
ul li{
        display: block;
        animation: fadeUp 0.8s 0.20s ease both;
        text-align:right;
        margin-right:30px;
    }
 
 ul li a{
    color:#ffffff;
     text-decoration:none;
 
    }
 
 
 
 
 
    /* ── HEADER ── */
 
header {
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 0px; /* compense la navbar fixe */
}
 
.main-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  width: 100%;
  animation: fadeUp 0.9s 0.3s ease both;
}
 
/* Image produit en haut du header */
.main-block-image {
  width: 100%;
  margin-bottom: 40px;
}
 
.main-block-image img {
  width:80%;
  margin:auto;
  display: block;
  margin-left:27%;
  animation: fadeUp 0.9s 0.35s ease both;
}
 
/* Texte en dessous de l'image */
.main-block-text {
  max-width:700px;
  margin-top:-320px;
}
 
    .eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      display: flex;
      align-items:center;
   animation: fadeUp 0.8s 0.30s ease both;
        
    }
 
    .eyebrow::before,
    .eyebrow::after {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--muted);
  animation: fadeUp 0.8s 0.30s ease both;
    }
 
    h1, h2 {
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      font-size: clamp(38px, 7vw, 64px);
      line-height: 1.08;
      letter-spacing: -0.02em;
      color: var(--white);
        padding-bottom:0px;
   animation: fadeUp 0.8s 0.30s ease both;
    }
 
    h1 em, h2em {
      font-style: normal;
      color: black;
      background-color: #00D8EF;
   animation: fadeUp 0.8s 0.30s ease both;
    }
 
h3{
  font-size: clamp(24px, 4vw, 32px);
   animation: fadeUp 0.8s 0.30s ease both;
}
 
h3 span{
text-transform:uppercase;
   animation: fadeUp 0.8s 0.30s ease both;
}
 
    p {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.7;
      color: var(--muted);
        padding-bottom:20px;
   animation: fadeUp 0.8s 0.15s ease both;
    }
 
.main-block p{
  max-width:100%;
}
 
.cta{
display:flex;
flex-direction:row;
margin-top:20px;
   animation: fadeUp 0.9s 0.30s ease both;
}
 
#cta1{
margin-right:30px;
}
 
.button,
.ctarange{
display:block;
border:solid 0.1px;
border-color:#FFFFFF;
padding:20px 30px;
   animation: fadeUp 0.9s 0.30s ease both;
}

.button,
.ctarange {
  /* Existant — assurez-vous d'avoir ces deux propriétés */
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;           /* ← ajouter */
  text-decoration: none;    /* ← ajouter */
}

.button a{
    text-decoration:none;
Color:white;
}


/* ── HOVER ── */
.button:hover,
.ctarange:hover {
  border-color: #12d0ed;
  color: #12d0ed;
  box-shadow: 0 0 12px rgba(0, 255, 250, 0.25);
}

/* ── ACTIVE (clic) ── */
.button:active,
.ctarange:active {
  border-color: #12d0ed;
  color: #12d0ed;
  box-shadow: 0 0 20px rgba(0, 255, 250, 0.5);
  transform: scale(0.98);
}

 
.section{
padding:0;
height:100%;
margin:50px auto;
   animation: fadeUp 0.9s 0.15s ease both;}
 
#prez p{width:50%;
}



#prez .txt{
display:flex;
flex-direction:row;
}

#prez{


}
/* Carte en background sur .map */
#prez .map {
  position: relative;
/*
  background-image: url('../svg/worldmap_web.svg');
  background-size: 80%;
  background-position: center bottom;
  background-repeat: no-repeat;*/
}

#prez .map img{
width:60%;
display:block;
margin:auto;
}

#prez .txt p{
    width:80%;
}


#prez .map .offices{
display:flex;
flex-direction:row;
justify-content:space-between;
width:60%;
margin:auto;
padding-top:20px;
}

#prez .map .offices .state{
padding-top:0px!important;
margin-top:0!important;
}

#prez .map .offices .state p{
text-align:center;
    width:100%;
padding:0px;
}

#prez .map .offices .state p b{
color:white;
}

#prez .map .offices .separator{
display:block;
width:10px;
height:10px;
border-radius:15px;
background-color:white;
margin-top:30px;
}

/***ANIMATION DE LA MAP*******/
/* Animation map au scroll */
    .map img {
      opacity: 0;
      transform: scale(0.97);
      transition: opacity 1s 0.2s ease, transform 1s 0.2s ease;
    }
    .map.visible img {
      opacity: 1;
      transform: scale(1);
    }

    /* Points des offices qui apparaissent en cascade */
    .map .offices {
      opacity: 0;
      transform: translateY(10px);
  transition: opacity 0.6s 0.9s ease, transform 0.6s 0.9s ease;
    }
    .map.visible .offices {
      opacity: 1;
      transform: translateY(0);
    }

    .map .offices .state {
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .map.visible .offices .state:nth-child(1)  { opacity: 1; transform: translateY(0); transition-delay: 1.0s; }
    .map.visible .offices .state:nth-child(3)  { opacity: 1; transform: translateY(0); transition-delay: 1.2s; }
    .map.visible .offices .state:nth-child(5)  { opacity: 1; transform: translateY(0); transition-delay: 1.4s; }
    .map.visible .offices .state:nth-child(7)  { opacity: 1; transform: translateY(0); transition-delay: 1.6s; }
    .map.visible .offices .state:nth-child(9)  { opacity: 1; transform: translateY(0); transition-delay: 1.8s; }

    .map .offices .separator {
      opacity: 0;
      transition: opacity 1.3s 2s ease;
    }
    .map.visible .offices .separator {
      opacity: 1;
    }

#range{
Padding-top:20px;
}

#range h2{
padding-top:0px;

}
#range .products{
display:flex;
flex-direction:row;
}

#range .block-img,
#range .block-txt{
width:50%;
}

#range .block-img img{
height:600px;
}

#range .block-txt p{
text-align:left;
width:80%;
margin:auto;
margin-left:0px;
padding-top:20px;
}
 
#range .datasheets{
padding-top:20px;
}


#range .button{
text-decoration:none;
color:white;
}
 
#range .ctarange{
display:block;
border:solid 0.1px;
border-color:#FFFFFF;
padding:20px 20px;
margin-bottom:20px;
animation: fadeUp 0.9s 0.50s ease both;
}

#range .ctarange .technic{
font-family: 'IBM Plex Mono';
font-size: 11px;
font-weight: 400;
font-weight:400;
color:#ffffff;
float:right;
}

/* Avant */
#range .ctarange {
  animation: fadeUp 0.9s 0.50s ease both;
}

/* Après */
#range .ctarange {
  animation: fadeUp 0.9s 0.30s ease both;
}

#range .ctarange:hover,
#range .ctarange a:hover {
  color: #12d0ed;
border-color:#12d0ed;
}


#charts {
padding:0px;
height:100%;
margin:100px auto 50px auto;
width:100%;
animation: fadeUp 0.9s 0.30s ease both;
}
 
.benefits{
display:flex;
flex-direction:row;
justify-content:space-between;
width:100%;
margin:30px auto 0px auto;
animation: fadeUp 0.9s 0.45s ease both;
}
 
.keybenef{
display:flex;
flex-direction:column;
align-items:left;
animation: fadeUp 0.9s 0.45s ease both;
width:25%;
}
 
.picto {
height:15%;
}
 
h4{
  font-size: clamp(18px, 4vw, 24px);
}
 
h4 span{
  font-family: 'IBM Plex Mono', monospace;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
   animation: fadeUp 0.8s 0.30s ease both;
margin-bottom:0px;
padding-bottom:0px;
}
 
.keybenef p{
width:100%;
line-height:24px;
padding-bottom:0px!important;
}
 
 
.keybenef {
      border: 1px solid var(--border);
      border-radius: 0px;
      padding: 30px 30px 0px 30px;
      background: rgba(255,255,255,0.025);
      backdrop-filter: blur(12px);
      grid-template-columns: 1fr auto;
      align-items: start;
      gap: 24px;
      text-align: left;
      animation: fadeUp 0.8s 0.3s ease both;
      position: relative;
      overflow: hidden;
      margin-right:20px;
 }
 
    .keybenef::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    }

.keybenef h4{
margin:10px 0px 0px 0px;}


.keybenef .picto{
margin-bottom:0px;
padding-left:0px;
    margin-left:0px;
}

/* Animation pictos--------*/


/* Après */
.keybenef.animated .bar { animation: barRise 3s ease forwards; }

/*________________*/
 
.reassurance {
width:100%;

}

/*.footer{
width:100%;
display:flex;
flex-direction:row;
justify-content:space-between;
}*/

.footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  align-items: start;
  padding: 60px 0 0px 0px;
  border-top: 1px solid var(--border);
}

.footer .block-left{
width:50%;
display:flex;
flex-direction:row;
}


.footer .logofooter img{
width:35%;
display:block;
Margin-left:0px;
}
 
.footer-txt{
font-family:'IBM Plex Mono';
color:white;
}

.footer-txt p{
font-family:'IBM Plex Mono';
font-size:12px;
text-align:left;
padding-bottom:0px;
}

.footer .links a{
text-decoration:none;
color:white;
}

.footer .footer-contact a{
text-decoration:none;
color:white;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 0;
}

.links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.links a,
.footer-contact a,
.footer-col p {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color:white;
  text-decoration: none;
  transition: color 0.2s;
}

.links a:hover,
.footer-contact a:hover {
  color: #00FFFA;
}

.links a,
.footer-contact a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s;
}

.links a:hover,
.footer-contact a:hover {
  color: #00FFFA;
}

.footer-col p {
    padding-top:0px;
margin-top:0px;
}

.footer #col2{
    margin-left:0px;
padding-left:0px;
}

.footer-contact a img {
  width: 20px;
  height: 20px;
  display: block;
  opacity: 1;
}

.footer-contact a:hover img {
  opacity: 0.6;

  transition: opacity 0.2s;
}

.footer-contact a img {
  filter: invert(1); /* si le SVG est noir, le passe en blanc */
}





/* Responsive */
@media (max-width: 900px) {
  .footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .footer {
    grid-template-columns: 1fr;
  }
}


    /* ── SALON CARD ── */
    .salon-card {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 0px;
      padding: 32px 36px;
      background: rgba(255,255,255,0.025);
      backdrop-filter: blur(12px);
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: start;
      gap: 24px;
      text-align: left;
      animation: fadeUp 0.8s 0.3s ease both;
      position: relative;
      overflow: hidden;
    }
 
    .salon-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    }
 
    .salon-info {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
 
    .salon-tag {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }
 
    .salon-name {
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 20px;
      letter-spacing: -0.01em;
      color: var(--white);
      line-height: 1.2;
    }
 
    .salon-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px 20px;
      margin-top: 4px;
    }
 
    .meta-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      font-weight: 400;
      color: var(--off-white);
    }
 
    .meta-item svg {
      opacity: 0.5;
      flex-shrink: 0;
    }
 
    .stand-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--border);
      border-radius: 0px;
      padding: 16px 20px;
      gap: 3px;
      background: rgba(255,255,255,0.03);
      min-width: 90px;
      align-self: center;
    }
 
    .stand-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
    }
 
    .stand-number {
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 26px;
      color: var(--white);
      letter-spacing: -0.02em;
      line-height: 1;
    }
 
    /* ── FOOTER ── */
    .footer {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      color: rgba(255,255,255,0.2);
      letter-spacing: 0.08em;
      animation: fadeUp 0.8s 0.45s ease both;
    }
 
    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
 
    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
 
    /* ── RESPONSIVE ── */
    @media (max-width: 520px) {
      .salon-card {
        grid-template-columns: 1fr;
        padding: 24px;
      }
      .stand-badge {
        flex-direction: row;
        gap: 10px;
        justify-content: flex-start;
        padding: 12px 16px;
      }
    }
  /*_____________________________ */



/* ══════════════════════════════════════════
   RESPONSIVE — TABLETTE (max 1024px)
══════════════════════════════════════════ */
 
@media (max-width: 1024px) {
 
  .content {
    width: 90%;
  }
 
  /* Navbar */
  .menu {
    width: 100%;
    padding: 0 5%;
    height: 80px;
  }
 
  .logo img {
    height: 70px;
  }
 
  ul li {
    margin-right: 40px;
  }
 
  /* Header */
  header {
    min-height: 80vh;
    padding-top: 80px;
  }
 
  .main-block-image img {
    width: 90%;
    margin-left: 20%;
  }
 
  .main-block-text {
    max-width: 520px;
    margin-top: -300px;
  }
 
  /* Section prez */
  #prez p {
    width: 100%;
  }
 
  #prez .txt p {
    width: 90%;
  }
 
  #prez .map img {
    width: 80%;
  }
 
  #prez .map .offices {
    width: 80%;
  }
 
  /* Range */
  #range .block-img img {
    height: 450px;
  }
 
  #range .block-txt p {
    width: 95%;
  }
 
  /* Benefits */
  .benefits {
    flex-wrap: wrap;
    gap: 16px;
  }
 
  .keybenef {
    width: calc(50% - 10px);
    margin-right: 0;
  }
 
  /* Footer */
  .footer {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 50px 0 0 0;
  }
}
 
 
/* ══════════════════════════════════════════
   RESPONSIVE — TABLETTE PORTRAIT (max 960px)
══════════════════════════════════════════ */
 
@media (max-width: 960px) {
 
  /* ── Header ── */
  header {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 60px;
  }
 
  .main-block {
    flex-direction: column;
  }
 
  .main-block-image {
    margin-bottom: 0;
  }
 
  .main-block-image img {
    width: 85%;
    margin: 0 auto;
    display: block;
  }
 
  .main-block-text {
    max-width: 100%;
    margin-top: 32px;
  }
 
  /* ── Section range ── */
  #range .products {
    flex-direction: column;
  }
 
  #range .block-img,
  #range .block-txt {
    width: 100%;
  }
 
  #range .block-img img {
    height: auto;
    width: 65%;
    display: block;
    margin: 0 auto 36px auto;
  }
 
  #range .block-txt p {
    width: 100%;
    margin-left: 0;
  }
 
  #range .ctarange .technic {
    float: none;
    display: block;
    margin-top: 4px;
  }
}
 
 
/* ══════════════════════════════════════════
   RESPONSIVE — SMARTPHONE (max 768px)
══════════════════════════════════════════ */
 
@media (max-width: 768px) {
 
  .content {
    width: 92%;
    overflow: hidden;
  }
 
  /* ── Navbar ── */
  .menu {
    width: 100%;
    padding: 0 4%;
    height: 70px;
    justify-content: space-between;
  }
 
  .logo {
    width: auto;
  }
 
  .logo img {
    height: 55px;
  }
 
  ul {
    gap: 0;
  }
 
  ul li {
    margin-right: 20px;
  }
 
  ul li a {
    font-size: 11px;
    letter-spacing: 0.08em;
  }
 
  /* ── Header ── */
  header {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 60px;
  }
 
  .main-block {
    flex-direction: column;
  }
 
  .main-block-image {
    margin-bottom: 0;
  }
 
  .main-block-image img {
    width: 100%;
    margin-left: 0;
    margin: 0 auto;
    display: block;
  }
 
  .main-block-text {
    max-width: 100%;
    margin-top: 30px;
  }
 
  h1, h2 {
    font-size: clamp(28px, 8vw, 42px);
  }
 
  .cta {
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
  }
 
  #cta1 {
    margin-right: 0;
  }
 
  .button,
  .ctarange {
    text-align: center;
    padding: 16px 20px;
  }
 
  /* ── Section prez ── */
  #prez {
    margin: 40px auto;
  }
 
  #prez .txt {
    flex-direction: column;
    gap: 30px;
  }
 
  #prez p,
  #prez .txt p {
    width: 100%;
  }
 
  #prez .map img {
    width: 100%;
  }
 
  #prez .map .offices {
    flex-wrap: wrap;
    width: 100%;
    gap: 16px;
    justify-content: center;
  }
 
  #prez .map .offices .state {
    min-width: 80px;
  }
 
  #prez .map .offices .separator {
    display: none;
  }
 
  /* ── Section range ── */
  #range {
    padding-top: 10px;
  }
 
  #range .products {
    flex-direction: column;
  }
 
  #range .block-img,
  #range .block-txt {
    width: 100%;
  }
 
  #range .block-img img {
    height: auto;
    width: 80%;
    display: block;
    margin: 0 auto 30px auto;
  }
 
  #range .block-txt p {
    width: 100%;
    margin-left: 0;
  }
 
  #range .datasheets {
    padding-top: 10px;
  }
 
  #range .ctarange {
    padding: 16px 16px;
  }
 
  #range .ctarange .technic {
    float: none;
    display: block;
    margin-top: 4px;
  }
 
  /* ── Section charts / benefits ── */
  #charts {
    margin: 60px auto 40px auto;
  }
 
  .benefits {
    flex-direction: column;
    gap: 16px;
  }
 
  .keybenef {
    width: 100%;
    margin-right: 0;
    padding: 24px 20px 20px 20px;
  }
 
  .picto {
    height: auto;
    width: 40px;
  }
 
  /* ── Footer ── */
  .footer {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
    padding: 40px 0 0 0;
  }
 
  .footer .logofooter img {
    width: 50%;
  }
 
  /* ── Legal ── */
  .legal {
    padding: 20px 0 30px 0;
    display: block;
  }
 
  .legal .footer {
    display: block;
    border-top: none;
    padding: 0;
    font-size: 10px;
    color: rgba(255,255,255,0.2);
  }
}
 
 
/* ══════════════════════════════════════════
   RESPONSIVE — PETIT SMARTPHONE (max 480px)
══════════════════════════════════════════ */
 
@media (max-width: 480px) {
 
  .content {
    width: 94%;
  }
 
  /* Navbar : masquer les liens texte, garder le logo */
  ul li {
    margin-right: 12px;
  }
 
  ul li a {
    font-size: 10px;
  }
 
  /* Header */
  .main-block-image img {
    width: 100%;
    margin-left: 0;
  }
 
  h1, h2 {
    font-size: clamp(26px, 9vw, 36px);
  }
 
  /* Footer */
  .footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}