:root {
  --lime: #9cff00;
  --lime-dark: #78c900;
  --ink: #080a0b;
  --ink-soft: #121517;
  --paper: #ffffff;
  --paper-soft: #f4f5f5;
  --line: #dfe2e3;
  --muted: #62686d;
  --radius: 20px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .18);
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

img { max-width: 100%; height: auto; }

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

button, input, textarea, select { font: inherit; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--paper);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

/* Marquesina */
.top-marquee {
  position: sticky;
  top: 0;
  z-index: 1200;
  overflow: hidden;
  background: var(--lime);
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,.18);
}

.top-marquee__track {
  display: flex;
  width: max-content;
  gap: 28px;
  padding: 9px 0;
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
  animation: marquee-left 32s linear infinite;
}

.top-marquee__track span::after {
  content: "•";
  margin-left: 28px;
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Header */
.site-header {
  position: sticky;
  top: 37px;
  z-index: 1100;
  background: rgba(8, 10, 11, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: white;
}

.site-header__inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand img { display: block; max-width: 180px; }

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  font-size: .92rem;
  font-weight: 700;
}

.main-nav a { opacity: .85; }
.main-nav a:hover { color: var(--lime); opacity: 1; }

.menu-button {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  background: white;
  margin: 5px 0;
}


.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}

.hero-visual__image {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.35));

  /* difuminado de bordes */
  -webkit-mask-image: radial-gradient(circle at center,
    rgba(0,0,0,1) 68%,
    rgba(0,0,0,0.92) 78%,
    rgba(0,0,0,0.65) 88%,
    rgba(0,0,0,0.18) 96%,
    transparent 100%);
  mask-image: radial-gradient(circle at center,
    rgba(0,0,0,1) 68%,
    rgba(0,0,0,0.92) 78%,
    rgba(0,0,0,0.65) 88%,
    rgba(0,0,0,0.18) 96%,
    transparent 100%);
}

/* Buttons */
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button--primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 10px 28px rgba(156,255,0,.15);
}

.button--primary:hover { background: #b0ff3d; }

.button--ghost {
  color: white;
  border-color: rgba(255,255,255,.45);
  background: transparent;
}

.button--dark {
  color: white;
  background: var(--ink);
}

.button--full { width: 100%; }

/* Hero */
.hero {
  color: white;
  background:
    radial-gradient(circle at 72% 32%, rgba(156,255,0,.13), transparent 22%),
    linear-gradient(135deg, #090b0c 0%, #111517 58%, #080a0b 100%);
  padding: 72px 0 0;
}

.hero__grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 50px;
}

.eyebrow, .kicker {
  margin: 0 0 14px;
  color: var(--lime-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  padding: 7px 10px;
  color: var(--lime);
  border: 1px solid rgba(156,255,0,.45);
  border-radius: 999px;
  letter-spacing: 0;
  text-transform: none;
}

.hero h1 {
  max-width: 680px;
  margin: 15px 0 18px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: .94;
  letter-spacing: -.065em;
}

.hero h1 span { color: var(--lime); }

.hero__lead {
  max-width: 610px;
  margin: 0;
  color: #c8cdcf;
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.trust-row__avatars { display: flex; }

.trust-row__avatars span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-left: -7px;
  border: 2px solid #101315;
  border-radius: 50%;
  color: var(--ink);
  background: #dfe3e5;
  font-size: .65rem;
  font-weight: 900;
}

.trust-row__avatars span:first-child { margin-left: 0; }
.trust-row strong { display: block; color: var(--lime); letter-spacing: .1em; }
.trust-row small { color: #c6cbce; }

.hero-visual {
  position: relative;
  min-height: 460px;
}

.hero-visual__glow {
  position: absolute;
  inset: 15% 8% 12%;
  border-radius: 50%;
  background: rgba(156,255,0,.12);
  filter: blur(65px);
}

.laptop {
  position: absolute;
  width: 78%;
  right: 8%;
  top: 13%;
  transform: perspective(1000px) rotateY(-7deg) rotateX(2deg);
}

.laptop__screen {
  padding: 11px;
  border: 2px solid #4b5053;
  border-radius: 18px 18px 9px 9px;
  background: #121516;
  box-shadow: var(--shadow);
}

.site-preview {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 9px;
  background:
    linear-gradient(rgba(7,8,8,.25), rgba(7,8,8,.78)),
    linear-gradient(135deg, #7a6956, #1d2324 50%, #8a7055);
}

.site-preview__nav {
  height: 10%;
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.site-preview__copy {
  position: absolute;
  left: 9%;
  bottom: 18%;
  max-width: 58%;
}

.site-preview__copy span {
  color: var(--lime);
  font-size: .65rem;
  font-weight: 900;
}

.site-preview__copy strong {
  display: block;
  font-size: clamp(1rem, 2.3vw, 2.2rem);
  line-height: 1;
}

.site-preview__copy i {
  display: block;
  width: 90px;
  height: 24px;
  margin-top: 16px;
  border-radius: 5px;
  background: var(--lime);
}

.laptop__base {
  width: 112%;
  height: 18px;
  margin-left: -6%;
  border-radius: 3px 3px 40px 40px;
  background: linear-gradient(#686e70, #232627);
}

.phone {
  position: absolute;
  z-index: 3;
  width: 26%;
  right: 0;
  bottom: 12%;
  padding: 8px;
  border: 2px solid #4b5053;
  border-radius: 24px;
  background: #111415;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.phone__speaker {
  width: 28%;
  height: 4px;
  margin: 2px auto 8px;
  border-radius: 999px;
  background: #444a4d;
}

.phone__screen {
  min-height: 245px;
  padding: 14px 8px;
  border-radius: 17px;
  background: #edf1ee;
}

.chat {
  width: 78%;
  margin-bottom: 10px;
  padding: 9px;
  border-radius: 9px;
  color: var(--ink);
  font-size: .63rem;
}

.chat--left { background: white; }
.chat--right { margin-left: auto; background: #d9ffc1; }

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.12);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: rgba(255,255,255,.035);
}

.benefits article {
  display: flex;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.benefits article:last-child { border-right: 0; }

.benefit-icon {
  flex: 0 0 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--lime);
  border: 1px solid rgba(156,255,0,.4);
  border-radius: 50%;
  font-weight: 900;
}

.benefits h2 {
  margin: 0;
  font-size: .95rem;
}

.benefits p {
  margin: 3px 0 0;
  color: #adb3b6;
  font-size: .78rem;
}



/* AI CARDS */
    .ai-agent-card {
      margin-top: 28px;
      display: grid;
      grid-template-columns: minmax(220px, 320px) 1fr;
      gap: 34px;
      align-items: stretch;
      background: #fff;
      border: 1px solid rgba(17, 24, 39, .08);
      border-radius: 28px;
      padding: 28px;
      box-shadow: 0 18px 45px rgba(17, 24, 39, .06);
    }

    .ai-agent-card__media {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .ai-agent-card__video {
      width: 100%;
      max-width: 290px;
      aspect-ratio: 9 / 16;
      object-fit: cover;
      border-radius: 24px;
      background: #050505;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .20);
    }

    .ai-agent-card__content {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, .95fr);
      gap: 42px;
      align-items: center;
    }

    .ai-agent-card__intro h3 {
      margin: 4px 0 2px;
      font-size: clamp(2.2rem, 4vw, 4.2rem);
      line-height: .98;
      letter-spacing: -.04em;
    }

    .ai-agent-card__subtitle {
      margin: 14px 0 16px;
      color: #73d400;
      font-size: clamp(1.6rem, 2.4vw, 2.5rem);
      font-weight: 800;
    }

    .ai-agent-card__price {
      margin: 0 0 22px;
      color: #73d400;
      font-size: clamp(2.2rem, 4vw, 4.2rem);
      font-weight: 900;
      line-height: 1;
      letter-spacing: -.04em;
    }

    .ai-agent-card__price small {
      display: block;
      margin-bottom: 8px;
      color: #374151;
      font-size: .36em;
      font-weight: 700;
      letter-spacing: 0;
    }

    .ai-agent-card__price span {
      color: #111827;
      font-size: .32em;
      font-weight: 700;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .ai-agent-card__description {
      max-width: 560px;
      margin: 0;
      color: #374151;
      font-size: 1.08rem;
      line-height: 1.65;
    }

    .ai-agent-card__features ul {
      list-style: none;
      padding: 0;
      margin: 0 0 26px;
    }

    .ai-agent-card__features li {
      position: relative;
      padding: 16px 0 16px 38px;
      border-bottom: 1px solid #e5e7eb;
      color: #111827;
      font-size: 1.03rem;
    }

    .ai-agent-card__features li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 15px;
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #73d400;
      color: #fff;
      font-size: .85rem;
      font-weight: 900;
    }

    @media (max-width: 980px) {
      .ai-agent-card {
        grid-template-columns: 1fr;
      }

      .ai-agent-card__media {
        justify-content: flex-start;
      }

      .ai-agent-card__video {
        max-width: 250px;
      }

      .ai-agent-card__content {
        grid-template-columns: 1fr;
        gap: 24px;
      }
    }

    @media (max-width: 640px) {
      .ai-agent-card {
        padding: 20px;
        border-radius: 22px;
      }

      .ai-agent-card__media {
        justify-content: center;
      }

      .ai-agent-card__video {
        max-width: 220px;
      }
    }

/* reviews */
/* =========================
   GOOGLE REVIEWS / NFC CARD
========================= */

.reviews-card {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 36% 64%;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.reviews-card__media {
  min-height: 330px;
  overflow: hidden;
  background: #f2f2f2;
}

.reviews-card__media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.reviews-card__content {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 55px;
  align-items: center;
  padding: 45px 50px;
}

.reviews-card__intro .kicker {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: #72d000;
}

.reviews-card__intro h3 {
  margin: 0 0 12px;
  font-size: 36px;
  line-height: 1.05;
  font-weight: 800;
  color: #080808;
}

.reviews-card__price {
  margin: 0 0 4px;
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
  color: #72d000;
}

.reviews-card__price span {
  font-size: 15px;
  font-weight: 700;
  color: #555;
}

.reviews-card__subtitle {
  margin: 12px 0 18px;
  font-size: 18px;
  font-weight: 700;
  color: #6b6b6b;
}

.reviews-card__description {
  margin: 0;
  max-width: 430px;
  font-size: 17px;
  line-height: 1.55;
  color: #222;
}

.reviews-card__features ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.reviews-card__features li {
  position: relative;
  padding: 14px 0 14px 38px;
  border-bottom: 1px solid #ededed;
  font-size: 17px;
  color: #111;
}

.reviews-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;

  width: 24px;
  height: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #72d000;
  color: #fff;

  font-size: 14px;
  font-weight: 900;
}

.reviews-card__features .button {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
}

/* TABLET */
@media (max-width: 1000px) {
  .reviews-card {
    grid-template-columns: 1fr;
  }

  .reviews-card__media {
    height: 420px;
  }

  .reviews-card__content {
    grid-template-columns: 1fr 1fr;
    padding: 36px;
    gap: 35px;
  }
}

/* CELULAR */
@media (max-width: 700px) {
  .reviews-card {
    border-radius: 18px;
  }

  .reviews-card__media {
    height: 360px;
    min-height: 0;
  }

  .reviews-card__media img {
    min-height: 0;
  }

  .reviews-card__content {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    gap: 25px;
  }

  .reviews-card__intro h3 {
    font-size: 31px;
  }

  .reviews-card__price {
    font-size: 46px;
  }

  .reviews-card__description {
    font-size: 16px;
  }

  .reviews-card__features li {
    font-size: 16px;
  }
}

/* Sections */
.section { padding: 90px 0; }
.section--light { background: var(--paper-soft); }

.section-heading { margin-bottom: 38px; }
.section-heading--center { text-align: center; }
.section-heading--center > p:last-child { max-width: 680px; margin-inline: auto; }
.section-heading--split { display: flex; justify-content: space-between; align-items: end; gap: 24px; }

.section-heading h2,
.about-grid h2,
.final-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.section-heading p { color: var(--muted); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 45px rgba(0,0,0,.06);
}

.price-card--featured {
  border-color: var(--lime-dark);
  transform: translateY(-10px);
}

.price-card__badge {
  position: absolute;
  top: 0;
  right: 20px;
  transform: translateY(-50%);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--lime);
  font-size: .72rem;
  font-weight: 900;
}

.price-card__name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 900;
}

.price-card__price {
  margin: 14px 0;
  color: var(--lime-dark);
  font-size: 2.25rem;
  font-weight: 950;
  letter-spacing: -.04em;
}

.price-card__price small,
.price-card__price span {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
}

.price-card ul {
  min-height: 145px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding: 8px 0 8px 24px;
  border-bottom: 1px solid #edf0f1;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime-dark);
  font-weight: 900;
}

.delivery {
  display: block;
  margin-top: 12px;
  text-align: center;
  color: var(--muted);
}

/* Testimonials */
.social-proof { background: #0b0d0e; color: white; }
.social-proof .section-heading p { color: #abb1b4; }

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

blockquote {
  margin: 0;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
}

blockquote div { color: var(--lime); }
blockquote p { color: #d6dadc; }
blockquote footer { color: #90979a; font-size: .85rem; }

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

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
}

.project-card__image {
  aspect-ratio: 16/10;
  background:
    linear-gradient(135deg, rgba(156,255,0,.35), transparent 40%),
    linear-gradient(145deg, #16191a, #474f51);
}

.project-card__image--two { background: linear-gradient(145deg, #d9d4ca, #596163); }
.project-card__image--three { background: linear-gradient(145deg, #eedadf, #8a5e6b); }
.project-card__image--four { background: linear-gradient(145deg, #101313, #87908b); }

.project-card h3 { margin: 17px 17px 2px; font-size: 1rem; }
.project-card p { margin: 0 17px 17px; color: var(--muted); font-size: .83rem; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.services-grid article {
  padding: 30px;
  border-top: 1px solid var(--ink);
  background: #fff;
}

.services-grid span {
  color: var(--lime-dark);
  font-weight: 900;
}

.services-grid h3 { font-size: 1.35rem; }
.services-grid p { color: var(--muted); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.about-grid p { color: var(--muted); }

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 11px 0 11px 30px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime-dark);
  font-weight: 900;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 65px;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child { border-bottom: 1px solid var(--line); }

summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 850;
}

details p {
  margin: -5px 0 22px;
  color: var(--muted);
}

/* Final CTA */
.final-cta {
  padding: 72px 0;
  background: var(--lime);
}

.final-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.final-cta .kicker { color: var(--ink); }
.final-cta p { max-width: 640px; }

/* Footer */
.site-footer {
  padding: 65px 0 20px;
  color: white;
  background: #090b0c;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr .9fr;
  gap: 40px;
}

.site-footer h2 {
  margin: 0 0 13px;
  font-size: .9rem;
}

.site-footer p,
.site-footer span,
.site-footer a:not(.button) {
  display: block;
  margin: 8px 0;
  color: #9da4a7;
  font-size: .86rem;
}

.site-footer a:not(.button):hover { color: var(--lime); }

.site-footer__bottom {
  margin-top: 45px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
}

/* Responsive */
@media (max-width: 980px) {
  .site-header__inner { grid-template-columns: auto auto 1fr; }
  .menu-button { display: block; order: 2; }
  .header-cta { justify-self: end; order: 3; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    background: #101314;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .main-nav.is-open { display: flex; }
  .hero__grid { grid-template-columns: 1fr; padding-bottom: 50px; }
  .hero-visual { min-height: 390px; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefits article:nth-child(2) { border-right: 0; }
  .benefits article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .pricing-grid, .testimonials { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid, .faq-layout { grid-template-columns: 1fr; gap: 35px; }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .top-marquee__track { font-size: .72rem; }
  .site-header { top: 35px; }
  .site-header__inner { min-height: 68px; gap: 12px; }
  .brand img { max-width: 140px; }
  .header-cta { display: none; }
  .hero { padding-top: 45px; }
  .hero h1 { font-size: 3.1rem; }
  .hero__actions { flex-direction: column; }
  .hero-visual { min-height: 310px; }
  .laptop { width: 92%; right: 5%; }
  .phone { width: 30%; }
  .benefits { grid-template-columns: 1fr; border-radius: 0; }
  .benefits article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .section { padding: 65px 0; }
  .section-heading--split, .final-cta__inner { align-items: stretch; flex-direction: column; }
  .projects-grid, .site-footer__grid { grid-template-columns: 1fr; }
}
