
  :root{
    --overlay: rgba(41,15,202,0.58); /* #290FCA94 */
    --white: #fff;
    --right-width: 520px; /* width of the right service column area */
  }
  *{box-sizing:border-box;margin:0;padding:0}
  body{font-family:Inter, "Segoe UI", Roboto, Arial, sans-serif;background:#fff;color:#111}

  /* ---------- Header + nav ---------- */
  .topbar{display:flex;align-items:center;padding:14px 28px;background:#fff;gap:16px}
.logo{
    width:72px;height:72px;border-radius:50%;overflow:hidden;flex:0 0 72px;
    display:grid;place-items:center;background:#fff;
  }
  .brand{
    line-height:1;
  }
  .brand h1{margin:0;font-size:26px;letter-spacing:1px}
  .brand p{margin:0;font-size:12px;color:#333}
  .search-wrap{margin-left:auto;max-width:520px;width:50%}
  .search{
    width:100%;height:44px;border-radius:24px;border:2px solid #222;padding:6px 14px;display:flex;align-items:center;
    background:#fff;
  }
  .search input{flex:1;border:0;outline:none;font-size:14px}
  .search button{background:transparent;border:0;font-size:18px;cursor:pointer}


  .divider{height:6px;background:#290FCA} /* long blue line */
nav {
  display: flex;
  justify-content: center;
  gap: 56px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav a {
  position: relative;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  padding: 4px 0;
  transition: color 0.3s ease;
}

/* text color change on hover */
nav a:hover {
  color: #0056d2; /* nice blue shade */
}

/* underline effect */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #0056d2; /* same blue as text hover */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

/* animate underline on hover */
nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


  /* ---------- Hero ---------- */
  .hero{
    position:relative;
    min-height:500px;           /* match tall hero in screenshot */
    background-image: url('img/a1165502cc6e8a21add2f963037a66e1c31c22e7.jpg');
    background-size: cover;
    background-position:center;
    transition: background-image .36s ease-in-out;
    overflow:hidden;
  }
  .hero::before{
    content:""; position:absolute; inset:0; background:var(--overlay); pointer-events:none;
  }

  .hero-inner{
    position:relative; z-index:2;
    max-width:1220px; margin:0 auto; padding:36px 20px; height:100%;
    display:grid; grid-template-columns: 1fr var(--right-width); gap:20px; align-items:stretch;

  }

  /* Left large headline area */
  .hero-left{ display:flex; align-items:flex-start; }

  .hero-left h1{
    color:var(--white);
    font-weight:300;
    font-size:64px;
    line-height:0.95;
    margin:0;
    letter-spacing:1px;
    max-width:640px;
  }

  /* Right service area: grid 3 x 2 */
  .hero-right{
    position:relative;
    width:var(--right-width);
    height:100%;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap:0;
    background:transparent;
    /* thick outer white border like screenshot (optional) */
    border-left:0px; /* design uses separators, outer frame not necessary */
  }

  /* separators as absolute lines so they exactly split the container */
  .vline{
    position:absolute; top:0; bottom:0; width:3px; background:var(--white); z-index:4; transform:translateX(-50%);
    box-shadow:0 0 0 1px rgba(255,255,255,0.02) inset;
  }
  .vline.v1{ left: calc(100% / 3); }
  .vline.v2{ left: calc((100% / 3) * 2); }
.hline {
  position: absolute;
  left: 0px;
  right: -20px;
  height: 3px;
  background: var(--white);     /* base thin line */
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
}

/* m

  /* nodes */
  .node{
    position:absolute; top:50%; transform:translate(-50%, -50%); background:var(--white); border-radius:50%;
    z-index:5; box-shadow:0 6px 18px rgba(0,0,0,0.22);
  }
  .node.n1{ left: calc(100% / 3); width:28px; height:28px; }
  .node.n2{ left: calc((100% / 3) * 2); width:28px; height:28px; }
  .node.n3{ left: calc(100% + 22px); width:28px; height:28px; } /* rounds outside right edge */

  /* service tiles (6 total) */
  .service-tile{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:12px;
    text-transform:uppercase;
    font-weight:700;
    color:var(--white);
    background:transparent;
    padding:30px 12px;
    cursor:pointer;
    transition: background .18s ease, transform .16s ease;
    border:0;
    outline:none;
  }.service-tile {
  transition: 
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.service-tile:hover,
.service-tile:focus {
  background: rgba(255,255,255,0.06);

  box-shadow: 0 10px 24px rgba(0,0,0,0.25), 
              0 0 8px rgba(255,255,255,0.08); /* depth + glow */
  color: #fff;  /* brighten text slightly */
}

/* extra feedback on icon */
.service-tile:hover .service-icon,
.service-tile:focus .service-icon {

  background: rgba(255,255,255,0.12);
  transition: transform 0.25s ease, background 0.25s ease;
}

  
/* small label: confined to tile width, can wrap up to 2 lines, clipped with ellipsis */
.service-tile .small-label{
  position: absolute;
  top: 8px;
  left: 12px;
  right: 12px;             /* crucial — prevents overflowing past the tile */
  font-size: 11px;
  letter-spacing: 0.6px;
  line-height: 1.15;
  text-align: center;
  white-space: normal;     /* allow wrapping */
  word-break: break-word;
  /* clamp to 2 lines (works in modern browsers) */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 6;  
              /* keep label above faint separators */


 }.service-icon {
  width: 78px;
  height: 78px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.07);
  margin-top: 8px;
  overflow: hidden; /* ensures the image fits inside cleanly */
}

.service-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain; /* keeps aspect ratio without stretching */
  display: block;
}

.service-name {
  font-size: 14px;
  text-align: center;
  max-width: 140px;
  margin-top: 12px;          /* creates extra space below icon */
  line-height: 1.35;
}


  /* empty cells bottom row: still occupy the grid to match 3x2, but keep invisible */
  .empty-cell{ background:transparent; pointer-events:none; }

  /* small screens: stack */
  @media (max-width:900px){
    .hero-inner{grid-template-columns: 1fr 360px}
    .hero-left h1{font-size:42px}
    .node,.vline,.hline{display:flex}
  }
  @media (max-width:640px){
    .hero-inner{grid-template-columns:1fr;grid-auto-rows:auto;padding:22px}
    .hero-right{width:100%;height:auto;display:grid;grid-template-columns:repeat(3,1fr);grid-auto-rows:120px;margin-top:20px}
    .hero-left h1{font-size:30px}
  }
/* 📱 Responsive styling for phone screens */
@media (min-width: 321px) and (max-width: 540px) {
  /* make hero a single column: headline on top, services below */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 12px;
    align-items: start;
  }

  /* headline: smaller but still prominent */
  .hero-left {
    order: 1;
    display: flex;
    align-items: flex-start;
    padding: 0;
  }
  .hero-left h1 {
    font-size: 28px;
    line-height: 1.05;
    font-weight: 300;
    max-width: 100%;
    margin: 0 0 4px 0;
    letter-spacing: 0.6px;
  }

  /* services area: keep 3 columns × 2 rows */
  .hero-right {
    order: 2;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);    /* keep horizontal = 3 */
    grid-template-rows: repeat(2, minmax(72px, auto)); /* vertical = 2 */
    gap: 8px;
    padding: 6px 0 8px 0;
    align-content: start;
  }

  /* each tile: reduced padding, touch-friendly minimum height */
  .hero-right > .service-tile {
    padding: 10px 6px;
    gap: 8px;
    min-height: 92px;             /* comfortable touch area */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  /* small top label: confined, readable, max 2 lines */
  .service-tile .small-label {
    position: absolute;
    top: 6px;
    left: 8px;
    right: 8px;
    font-size: 10px;
    line-height: 1.1;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 6;
  }

  /* icon size scaled down */
  .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    margin-top: 4px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.06);
  }
  .service-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
  }

  /* service name smaller */
  .service-name {
    font-size: 12px;
    max-width: 100%;
    margin-top: 6px;
    line-height: 1.2;
    padding: 0 4px;
  }

  /* hide decorative separators & nodes on small screens to avoid overlap */
  .vline, .hline, .node {

  }

  .vline { width: 2.5px; }
  .hline { height: 2.5px; right: -10px; }
 .node.n3{
    display: none; left: calc(100% + 22px); width:28px; height:28px; } /* rounds outside right edge */
  /* keep empty-cells present to maintain the 3×2 grid shape, but visually neutral */

  /* remove the empty helper cells so they don't affect layout */
  .empty-cell {
    display: none;
  }

  /* tweak hero itself so the background doesn't crop awkwardly */
  .hero {
    min-height: 380px;
    background-position: center 30%;
  }

  /* ensure focus / hover visual is still visible on small screens */
  .service-tile:focus,
  .service-tile:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
  }
}
/* 📱 Responsive styling for iPad / tablet screens
   Keeps the services grid exactly 3 columns × 2 rows and aligns the layout */
@media (min-width: 550px) and (max-width: 1025px) {
  /* tune the right column width for tablets (adjust --right-width to taste) */
  :root {
    --right-width: 520px; /* good baseline for most tablets */
  }

  /* hero layout stays two-column: headline left, services right */
  .hero-inner {
    grid-template-columns: 1fr var(--right-width);
    gap: 18px;
    padding: 28px 20px;
    align-items: center; /* vertically center headline & services */
    min-height: 420px;
  }

  /* headline sizing for tablet */
  .hero-left {
    display: flex;
    align-items: flex-start;
    padding-right: 6px;
  }
  .hero-left h1 {
    font-size: 44px;
    line-height: 1.02;
    font-weight: 300;
    max-width: 540px;
    margin: 0;
  }

  /* services container: explicit 3 × 2 grid and centered content */
  .hero-right {
    width: var(--right-width);
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);   /* horizontal = 3 */
    grid-template-rows: repeat(2, minmax(120px, auto)); /* vertical = 2 */
    gap: 12px;
    padding: 10px;
    align-content: center;
    justify-items: center;
  }

  /* service tiles: comfortable touch size + neat alignment */
  .hero-right > .service-tile {
    padding: 16px 10px;
    gap: 10px;
    min-height: 130px;            /* comfortable touch target */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  /* small label (top) */
  .service-tile .small-label {
    position: absolute;
    top: 10px;
    left: 12px;
    right: 12px;
    font-size: 12px;
    line-height: 1.1;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 6;
  }

  /* icon sizes tuned for tablet */
  .service-icon {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    margin-top: 6px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.06);
  }
  .service-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
  }

  .service-name {
    font-size: 13px;
    max-width: 100%;
    margin-top: 10px;
    line-height: 1.25;
  }

  /* show separators at tablet sizes but make them subtle */
  .vline, .hline {
    display: block;
    background: rgba(255,255,255,0.08);
    box-shadow: none;
  }
  .vline { width: 2.5px; }
  .hline { height: 2.5px; right: -10px; }





   /* separators as absolute lines so they exactly split the container */
  .vline{
    position:absolute; top:0; bottom:0; width:3px; background:var(--white); z-index:4; transform:translateX(-50%);
    box-shadow:0 0 0 1px rgba(255,255,255,0.02) inset;
  }

.hline {
  position: absolute;
  left: 0px;
  right: -20px;
  height: 3px;
  background: var(--white);     /* base thin line */
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
}

  /* nodes slightly smaller on tablet to avoid visual crowding */
  .node { display: block; width: 22px; height: 22px; box-shadow:0 6px 14px rgba(0,0,0,0.18); }
  .node.n3{
    display: none; left: calc(100% + 22px); width:28px; height:28px; } /* rounds outside right edge */
  /* keep empty-cells present to maintain the 3×2 grid shape, but visually neutral */
  .empty-cell { background: transparent; pointer-events: none; }

  /* subtle hover/focus feedback preserved for tablet */
  .service-tile:focus,
  .service-tile:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  }
}

/* Optional: slightly larger tablet / landscape tweak for widths >= 900px */
@media (min-width: 900px) and (max-width: 1025px) {
  :root { --right-width: 580px; } /* give the services more room in wide tablet landscape */
  .hero-left h1 { font-size: 48px; }
  .hero-right { gap: 14px; }
  .hero-right > .service-tile { min-height: 140px; }
  .service-icon { width: 78px; height: 78px; }
  .service-icon img { width: 46px; height: 46px; }
}

    :root{
      --primary: #6A7AFF;         /* user-preferred blue for button */
      --grad-left:  #3f2ad0;     /* sampled from screenshot */
      --grad-mid:   #3d4ad4;
      --grad-right: #279dde;
      --text-dark:  #0b0b0b;
      --grid-size:  72px;        /* square size for the grid */
    }

    /* Reset & base */
    *{box-sizing:border-box}
    html,body{height:100%;margin:0;font-family: "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;}
    a{color:inherit;text-decoration:none}
    img{display:block;max-width:100%;height:auto}

   /* Page layout wrapper */
    .page {
      background: #ffffff;
      color: var(--text-dark);
    
    }

    /* HERO / FIRST SECTION */
    .hero1{
      padding: 28px 24px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .hero1-grid{
      display: flex;
      gap: 36px;
      align-items: flex-start;
      justify-content: space-between;
      flex-wrap: nowrap;
    }

    /* Left column */
    .hero1-left{
      flex: 1 1 52%;
      min-width: 320px;
    }

    .accent {
      width: 72px;
      height: 6px;
      border-radius: 6px;
      background: linear-gradient(90deg,var(--grad-left), var(--grad-right));
      margin-bottom: 18px;
      box-shadow: 0 2px 0 rgba(0,0,0,0.05);
    }

    .hero1-title{
      font-family: "Nunito Sans", sans-serif;
      font-weight: 900;
      font-size: clamp(32px, 4.8vw, 48px);
      line-height: 1.05;
      margin: 6px 0 18px 0;
      color: #0b0b0b;
      letter-spacing: -0.6px;
    }

    .hero1-lead{
      font-family: "JetBrains Mono", monospace;
      font-style: italic;
      font-weight: 700;
      color: #111;
      font-size: 15px;
      line-height: 1.45;
      margin: 0 0 20px 0;
      max-width: 560px; /* control line length to match screenshot */
      white-space: normal;
    }

    /* Button (blue pill with shadow). Default background uses user's preferred blue and a gradient */
    .btn {
      display:inline-flex;
      align-items:center;
      gap:12px;
      padding: 12px 22px;
      border-radius: 34px;
      background: linear-gradient(135deg, var(--primary), #279dde);
      color: #fff;
      font-weight:700;
      box-shadow: 0 10px 22px rgba(54,79,179,0.18);
      border: none;
      cursor:pointer;
      transition: all 160ms ease;
      font-family: "Nunito Sans", sans-serif;
      font-size: 16px;
    }
    /* When clicked/tapped — swap to white bg with primary text (as you prefer in earlier context) */
    

    .btn .arrow {
      margin-left: 6px;
      opacity: 0.95;
      font-weight: 800;
    }

    /* Right column (image) */
    .hero1-right{
      flex: 0 0 44%;
      max-width: 540px;
      min-width: 280px;
      display:flex;
      justify-content:flex-end;
      align-items:flex-start;
    }

    .hero1-right .hero1-image{
      width: 100%;
      height: 220px;                /* match screenshot height visually */
      object-fit: cover;
      border-radius: 14px;
      box-shadow: 0 12px 36px rgba(10,20,40,0.12);
      border: 1px solid rgba(0,0,0,0.03);
    }
    /* Scroll Animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for a smoother reveal */
.fade-delay-0 { transition-delay: 0.1s; }
.fade-delay-1 { transition-delay: 0.4s; }

/* SECOND SECTION: Impeccable solutions */
.impeccable {
  position: relative;
  margin-top: 30px;
  /* main gradient */
  background: linear-gradient(90deg, var(--grad-left) 0%, var(--grad-mid) 45%, var(--grad-right) 100%);
  min-height: 340px;
  overflow: hidden;
}

/* white grid lines overlay */
.impeccable::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    /* vertical lines */
    repeating-linear-gradient(
      to right,
      rgba(255,255,255,0.25) 0 1px,
      transparent 1px var(--grid-size)
    ),
    /* horizontal lines */
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.25) 0 1px,
      transparent 1px var(--grid-size)
    );
  z-index: 1;
}

/* left dark overlay to make text pop */
.impeccable::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events:none;
  background: linear-gradient(90deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.08) 20%, rgba(0,0,0,0) 60%);
  z-index: 2;
}

.impeccable-inner{
  position: relative;
  z-index: 3; /* make sure text is above lines + overlay */
  max-width: 620px;
  padding: 60px 40px;
  padding-left: 120px;
  color: #fff;
}

    .im-kicker{
      display:block;
      font-family: "Nunito Sans", sans-serif;
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: 1px;
      margin-bottom: 14px;
      opacity: 0.95;
      color: rgba(255,255,255,0.95);
    }

    .im-title{
      font-family: "Nunito Sans", sans-serif;
      font-weight: 900;
      color: white;
      font-size: clamp(32px, 6.6vw, 56px);
      line-height: 1.02;
      margin: 0;
      letter-spacing: -0.6px;
      max-width: 520px;
    }

    /* Responsive adjustments */
    @media (max-width: 980px){
      .hero1-grid{flex-wrap:wrap;}
      .hero1-left{flex: 1 1 100%; order: 1}
      .hero1-right{flex: 1 1 100%; order: 2; justify-content:center; margin-top:16px}
      .hero1-right .hero-image{height:260px}
      .impeccable-inner{padding-left:36px;padding-right:36px}
      :root{ --grid-size: 56px; }
    }

   @media (min-width: 321px) and (max-width: 540px) {
      .hero1-right .hero-image{height:200px;border-radius:12px}
      .hero1-title{font-size: clamp(24px,6.8vw,36px);}
      .im-title{font-size: clamp(22px,8.5vw,34px)}
      :root{ --grid-size: 48px; }
    }

     .section {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      padding: 60px 10%;
    }

    .section img {
      width: 612px;
      height: 408px;
      object-fit: cover;
      border-radius: 20px;
    }

    .text-content {
      max-width: 500px;
    }

    .text-content small {
      font-size: 14px;
      color: #555;
    }

    .text-content h2 {
      font-size: 28px;
      font-weight: 700;
      margin: 10px 0;
    }

    .text-content p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .btn {
      background: linear-gradient(90deg, #3b82f6, #06b6d4);
      color: #fff;
      padding: 12px 28px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      transition: 0.3s;
    }

    .btn:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }
/* --- Animation Base --- */
.fade-slide-left, .fade-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-slide-left {
  transform: translateX(-50px) scale(0.95);
}

.fade-slide-left.show {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.fade-slide-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered Delays for Text */
.delay-0 { transition-delay: 0.1s; }
.delay-1 { transition-delay: 0.3s; }
.delay-2 { transition-delay: 0.5s; }
.delay-3 { transition-delay: 0.7s; }

    @media (max-width: 900px) {
      .section {
        flex-direction: column;
        text-align: center;
      }
      .section img {
        width: 100%;
        height: auto;
      }
    }
    
/* Footer */
.footer {
  background: linear-gradient(to right, #009fe3, #003b6f);
  color: white;
  padding: 50px 10% 20px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: flex-start;
}

.footer-logo img {
  max-width: 70px;
  margin-bottom: 10px;
}

.footer-logo h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.footer-links p, .footer-company ul li, .footer-help p {
  margin: 8px 0;
  font-size: 0.9rem;
}

.footer-company ul {
  list-style: none;
  padding: 0;
}

.footer-company ul li a {
  color: white;
  text-decoration: none;
}

.newsletter {
  display: flex;
  margin: 15px 0;
}

.newsletter input {
  padding: 10px;
  border-radius: 20px 0 0 20px;
  border: none;
  outline: none;
  flex: 1;
}

.newsletter button {
  padding: 10px 15px;
  border-radius: 0 20px 20px 0;
  border: none;
  background: #5e2ff5;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.faq-link {
  color: white;
  font-weight: bold;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
}
  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 900px){
    .row{grid-template-columns:1fr; gap:22px}
    .footer-grid{grid-template-columns:1fr 1fr}
  }
  @media (max-width: 600px){
    .nav{gap:18px}
    .bubbles{display:none}
    .bubbles-small{display:none}
    .footer-grid{grid-template-columns:1fr}
  }
