@import url('main.css');
    
    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      height: 72px;
      background: transparent;
      transition: background 0.4s ease, box-shadow 0.4s ease;
    }
    nav.scrolled {
      background: rgba(7, 37, 18, 0.97);
      box-shadow: 0 2px 24px rgba(0,0,0,0.4);
    }
    .nav-logo {
      display: flex;
      align-items: center;
      height: 160px;
      background-color: #fff;
      text-decoration: none;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
      z-index: 9999;
    }

    .nav-logo img{
      width: 50%;
      margin: 0px auto;
      margin-top: 40px;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      color: rgba(255,255,255,0.85);
      font-size: 0.9rem;
      font-weight: 400;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      position: relative;
      transition: color 0.3s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 2px;
      background: var(--green-light);
      transition: width 0.3s ease;
    }
    .nav-links a:hover { color: var(--green-light); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      background: var(--green-light);
      color: var(--green-dark) !important;
      padding: 8px 20px;
      border-radius: 4px;
      font-weight: 700 !important;
      transition: background 0.3s, transform 0.2s !important;
    }
    .nav-cta:hover {
      background: #a0df60 !important;
      transform: translateY(-2px);
    }
    .nav-cta::after { display: none !important; }

    /* ─── HAMBURGER ─── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block; width: 26px; height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    /* ─── HERO ─── */
    #inicio {
      position: relative;
      height: 100vh;
      min-height: 620px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(7,90,48,0.88) 0%, rgba(0,0,0,0.55) 60%, rgba(0,30,15,0.8) 100%),
        url('../imgs/photo-1504307651254-35680f356dfd.webp') center/cover no-repeat;
    }
    .hero-particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .hero-particles span {
      position: absolute;
      border-radius: 50%;
      background: rgba(128,191,70,0.15);
      animation: float 8s ease-in-out infinite;
    }
    @keyframes float {
      0%,100% { transform: translateY(0) scale(1); opacity: 0.3; }
      50%      { transform: translateY(-40px) scale(1.1); opacity: 0.6; }
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 860px;
      padding: 0 5%;
      animation: heroIn 1s ease forwards;
    }
    @keyframes heroIn {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-content h1 {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 900;
      line-height: 1.13;
      margin-top: 1.4rem;
      margin-bottom: 1.4rem;
      text-shadow: 0 2px 24px rgba(0,0,0,0.5);
    }
    .hero-content h1 span { color: var(--green-light); }
    .hero-content p {
      font-size: clamp(1rem, 2vw, 1.2rem);
      font-weight: 300;
      color: rgba(255,255,255,0.88);
      line-height: 1.7;
      max-width: 560px;
      margin-bottom: 2.4rem;
    }
    .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--green-light);
      color: var(--green-dark);
      font-family: var(--font);
      font-size: 0.95rem;
      font-weight: 700;
      padding: 14px 32px;
      border-radius: 6px;
      border: none;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(128,191,70,0.35);
    }
    .btn-primary:hover {
      background: #a0df60;
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(128,191,70,0.5);
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--white);
      font-family: var(--font);
      font-size: 0.95rem;
      font-weight: 400;
      padding: 14px 32px;
      border-radius: 6px;
      border: 1px solid rgba(255,255,255,0.4);
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .btn-outline:hover {
      border-color: var(--white);
      background: rgba(255,255,255,0.08);
      transform: translateY(-3px);
    }
    .hero-scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.5);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      animation: bounce 2s ease-in-out infinite;
      z-index: 2;
    }
    .hero-scroll i { font-size: 1.1rem; }
    @keyframes bounce {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50%      { transform: translateX(-50%) translateY(8px); }
    }

    /* ─── SECTION BASE ─── */
    section { padding: 90px 5%; }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--green-light);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 0.9rem;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 28px; height: 2px;
      background: var(--green-light);
    }
    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 900;
      color: var(--green-dark);
      line-height: 1.2;
      margin-bottom: 1.2rem;
    }
    .about-content .section-title { color: var(--white); }
    .section-title span { color: var(--green-light); }
    .section-sub {
      font-size: 1rem;
      font-weight: 300;
      color: var(--green-dark);
      line-height: 1.3;
      max-width: 750px;
    }
    .about-content .section-sub{ color: var(--green-light); }

    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── QUEM SOMOS ─── */
    #quem-somos {
      background: #0f1f14;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5%;
      align-items: center;
    }
    .about-img {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
    }
    .about-img img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: 12px;
      display: block;
    }
    .about-img::before {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--green-light), var(--teal));
      z-index: -1;
    }
    .about-badge {
      position: absolute;
      bottom: 28px; left: 28px;
      background: var(--green-dark);
      border: 1px solid rgba(128,191,70,0.3);
      border-radius: 10px;
      padding: 16px 22px;
    }
    .about-badge .num {
      font-size: 2.4rem;
      font-weight: 900;
      color: var(--green-light);
      line-height: 1;
    }
    .about-badge p {
      font-size: 0.8rem;
      font-weight: 300;
      color: rgba(255,255,255,0.7);
      margin-top: 3px;
    }
    .about-content { }
    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2rem;
    }
    .about-feature {
      background: rgba(128,191,70,0.06);
      border: 1px solid rgba(128,191,70,0.15);
      border-radius: 8px;
      padding: 16px;
      transition: border-color 0.3s, transform 0.3s;
    }
    .about-feature:hover {
      border-color: rgba(128,191,70,0.4);
      transform: translateY(-3px);
    }
    .about-feature i {
      font-size: 1.4rem;
      color: var(--green-light);
      margin-bottom: 8px;
    }
    .about-feature h4 {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 4px;
    }
    .about-feature p {
      font-size: 1rem;
      color: rgba(255,255,255,0.55);
      font-weight: 300;
    }

    /* ─── SERVIÇOS ─── */
    #servicos {
      padding: 90px 0 0;
      background: #fff;
    }
    #servicos .sec-head, #servicos .area-txt {
      padding: 0 5% 10px;
    }
    #servicos .area-txt p{
      margin: 1% 0px;
      color: #777;
      font-size: 1.1em;
      display: block;
    }
    #servicos .area-txt div{
      margin: 1.1% 0px;
    }

    #servicos .area-txt div ul{
      margin-left: 20px;
    }
    #servicos .area-txt div ul li{
      line-height: 20px;
      color: #777;
    }
    #servicos .area-txt h3{ color:#777; }
    .services-grid {
      display: flex;
      flex-wrap: wrap;
    }
    .service-box {
      flex: 1 1 calc(20%);
      min-width: 160px;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: transform 0.35s ease, filter 0.3s;
    }
    .service-box a{
      padding: 46px 20px 40px;
      display: block;
      text-decoration: none;
    }
    /*.service-box::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0);
      transition: background 0.3s;
    }*/
    .service-box:hover::before { background: rgba(255,255,255,0.07); }
    .service-box:hover { transform: translateY(-6px); filter: brightness(1.1); }
    .sb-c1 { background: #80bf46; }
    .sb-c2 { background: #1e503b; }
    .sb-c3 { background: #5c7673; }
    .sb-c4 { background: #00af9a; }

    .service-box .svc-icon {
      font-size: 2.4rem;
      margin-bottom: 14px;
      display: block;
    }
    .service-box h3 {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      line-height: 1.3;
    }
    .service-box p {
      font-size: 1rem;
      font-weight: 300;
      color: rgba(255,255,255,0.75);
      margin-top: 8px;
      line-height: 1.5;
    }

    /* ─── NUMBERS ─── */
    .numbers-strip {
      background: var(--green-dark);
      padding: 60px 5%;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      text-align: center;
      gap: 1rem;
    }
    .num-item { }
    .num-item .big {
      font-size: 3rem;
      font-weight: 900;
      color: var(--green-light);
      line-height: 1;
    }
    .num-item p {
      font-size: 0.85rem;
      font-weight: 300;
      color: rgba(255,255,255,0.65);
      margin-top: 6px;
      letter-spacing: 0.06em;
    }

    /* ─── PARCERIAS ─── */
    #parcerias {
      background: #fff;
    }
    .carousel-wrapper {
      position: relative;
      margin-top: 3rem;
      overflow: hidden;
    }
    .carousel-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .carousel-slide {
      min-width: calc(100% / 4);
      padding: 0 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .partner-logo {
      border: 1px solid #b6b6b6;
      overflow: hidden;
      border-radius: 10px;
      width: 100%;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.3s, background 0.3s, transform 0.3s;
    }
    .partner-logo.quei{ background-color: #e5e6e8; }
    .partner-logo.blk{ background-color: #000; }
    .partner-logo.ble{ background-color: #173ba9; }
    .partner-logo span {
      font-size: 1rem;
      font-weight: 700;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .carousel-btn {
      position: absolute;
      top: 50%; transform: translateY(-50%);
      width: 46px; height: 46px;
      border-radius: 50%;
      background: var(--green-dark);
      border: 1px solid rgba(128,191,70,0.35);
      color: var(--green-light);
      font-size: 1rem;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      z-index: 5;
      transition: background 0.3s, border-color 0.3s, transform 0.2s;
    }
    .carousel-btn:hover {
      background: var(--green-light);
      color: var(--green-dark);
      border-color: var(--green-light);
      transform: translateY(-50%) scale(1.1);
    }
    .carousel-btn.prev { left: -10px; }
    .carousel-btn.next { right: -10px; }
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 2rem;
    }
    .carousel-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      cursor: pointer;
      transition: background 0.3s, width 0.3s;
    }
    .carousel-dot.active {
      background: var(--green-light);
      width: 24px;
      border-radius: 4px;
    }

    /* ─── DEPOIMENTOS ─── */
    #depoimentos {
      background: #fff;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }
    .testimonial-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 12px;
      padding: 28px;
      transition: border-color 0.3s, transform 0.3s;
      position: relative;
    }
    .testimonial-card:hover {
      border-color: rgba(128,191,70,0.3);
      transform: translateY(-5px);
    }
    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 16px; right: 22px;
      font-size: 5rem;
      font-weight: 900;
      color: rgba(128,191,70,0.12);
      line-height: 1;
      font-family: Georgia, serif;
    }
    .tc-stars { color: var(--green-light); font-size: 0.85rem; margin-bottom: 14px; }
    .tc-text {
      font-size: 0.92rem;
      font-weight: 300;
      color: var(--green-dark);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .tc-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .tc-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green-mid), var(--teal));
      display: flex; align-items: center; justify-content: center;
      font-weight: 700;
      font-size: 1rem;
      color: var(--white);
      flex-shrink: 0;
    }
    .tc-name {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--green-dark);
    }
    .tc-role {
      font-size: 0.75rem;
      color: var(--green-dark);
      margin-top: 2px;
    }

    /* ─── CTA STRIP ─── */
    .cta-strip {
      background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
      padding: 80px 5%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-strip::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: rgba(128,191,70,0.1);
    }
    .cta-strip::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -80px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: rgba(0,175,154,0.08);
    }
    .cta-strip h2 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 900;
      color: var(--white);
      margin-bottom: 1rem;
      position: relative; z-index: 1;
    }
    .cta-strip p {
      font-size: 1rem;
      font-weight: 300;
      color: rgba(255,255,255,0.75);
      margin-bottom: 2rem;
      position: relative; z-index: 1;
    }
    .cta-strip .btn-primary { position: relative; z-index: 1; margin: 0 auto; }

    /* ─── FOOTER ─── */
    footer {
      background: #050d08;
      padding: 60px 5% 30px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 2fr;
      gap: 3rem;
      padding-bottom: 50px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .footer-brand .logo-full {
      font-size: 1.4rem;
      font-weight: 900;
      color: var(--white);
    }
    .footer-brand .logo-full span { color: var(--green-light); }
    .footer-brand p {
      font-size: 1rem;
      font-weight: 300;
      color: rgba(255,255,255,0.5);
      line-height: 1.7;
      margin-top: 14px;
      max-width: 300px;
    }
    .footer-socials {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }
    .social-btn {
      width: 40px; height: 40px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.55);
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .social-btn:hover {
      border-color: var(--green-light);
      color: var(--green-light);
      background: rgba(128,191,70,0.08);
      transform: translateY(-3px);
    }
    .footer-col h5, .footer-brand h5 {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--green-light);
      margin-bottom: 18px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a {
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 300;
      transition: color 0.3s;
    }
    .footer-col ul li a:hover { color: var(--green-light); }
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 12px;
    }
    .footer-contact-item a{
      text-decoration: none;
    }
    .footer-contact-item a:hover{
      color: var(--green-light);
    }
    .footer-contact-item i {
      color: var(--green-light);
      font-size: 1rem;
      margin-top: 2px;
    }
    .footer-contact-item span {
      font-size: 1rem;
      font-weight: 300;
      color: rgba(255,255,255,0.5);
      line-height: 1.5;
    }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 24px;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-bottom p {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.3);
    }
    .footer-bottom p a {
      color: var(--green-light);
      text-decoration: none;
    }

    /* ─── WHATSAPP FAB ─── */
    .whatsapp-fab {
      position: fixed;
      bottom: 28px; right: 28px;
      width: 58px; height: 58px;
      background: #25d366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      color: #fff;
      text-decoration: none;
      z-index: 999;
      box-shadow: 0 4px 20px rgba(37,211,102,0.45);
      transition: transform 0.3s, box-shadow 0.3s;
      animation: pulse-green 2.5s ease-in-out infinite;
    }
    .whatsapp-fab:hover {
      transform: scale(1.12);
      box-shadow: 0 8px 30px rgba(37,211,102,0.6);
      animation: none;
    }
    @keyframes pulse-green {
      0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
      50%      { box-shadow: 0 4px 32px rgba(37,211,102,0.75); }
    }

    /* === MAPS ====  */
  #pontos{
    background: #0f1f14;
  }

  #app {
    display: flex;
    height: 400px;
    width: 100%;
  }

  /* Sidebar */
  #sidebar {
    width: 320px;
    min-width: 320px;
    background: var(--panel);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    z-index: 10;
  }

  #sidebar-header {
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--border);
  }

  #sidebar-header h1 {
    font-size: 18px;
    margin: 0 0 4px;
    letter-spacing: 0.2px;
  }

  #sidebar-header p {
    margin: 0;
    font-size: 13px;
    color: var(--text-dim);
  }

  #pin-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
  }

  .pin-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s ease;
    border: 1px solid transparent;
  }

  .pin-item:hover {
    background: rgba(255,255,255,0.03);
  }

  .pin-item.active {
    background: var(--accent-soft);
    border-color: var(--accent);
  }

  .pin-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 6px;
    flex-shrink: 0;
  }

  .pin-info h3 {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 600;
  }

  .pin-info p {
    margin: 0;
    font-size: 12.5px;
    color: var(--text-dim);
    line-height: 1.4;
  }

  /* Map */
  #map {
    flex: 1;
    height: 100%;
  }

  /* Leaflet dark tweaks */
  .leaflet-popup-content-wrapper {
    background: var(--panel);
    color: var(--text);
    border-radius: 10px;
    border: 1px solid var(--border);
  }
  .leaflet-popup-tip {
    background: var(--panel);
  }
  .leaflet-popup-content h3 {
    margin: 0 0 4px;
    font-size: 14px;
  }
  .leaflet-popup-content p {
    margin: 0;
    font-size: 12.5px;
    color: var(--text-dim);
  }

  .custom-pin {
    width: 26px;
    height: 26px;
    border-radius: 50% 50% 50% 0;
    background: var(--accent);
    transform: rotate(-45deg);
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .custom-pin::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--panel);
    border-radius: 50%;
  }

  @media (max-width: 720px) {
    #app { flex-direction: column; }
    #sidebar {
      width: 100%;
      min-width: 0;
      height: 52%;
      border-right: none;
      border-bottom: 1px solid var(--border);
    }
    #map { height: 60%; }
  }

    /* =====FIM STYLE MAPS ==== */

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .service-box { flex: 1 1 calc(25%); }
      .testimonials-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .numbers-strip { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
      #quem-somos { grid-template-columns: 1fr; }
      .about-img { max-width: 500px; }
    }
    @media (max-width: 768px) {
      nav { padding: 0 4%; }
      .nav-links { display: none; flex-direction: column; position: absolute; top: 50px; left: 0; right: 0; 
        background: rgba(7,37,18,0.98); padding: 20px 5%; gap: 1rem; text-align: right; }
      .nav-links.open { display: flex; }
      .hamburger { display: flex; }
      .hero-btns { flex-direction: column; }
      .service-box { flex: 1 1 calc(33.33%); }
      .carousel-slide { min-width: calc(100% / 2); }
      .testimonials-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .numbers-strip { grid-template-columns: repeat(2, 1fr); }
      .about-features { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .service-box { flex: 1 1 calc(50%); }
      .carousel-slide { min-width: 100%; }
      .numbers-strip { grid-template-columns: 1fr 1fr; }
    }
