:root {
  --blue-950: #001d3f;
  --blue-900: #002b5f;
  --blue-800: #073d78;
  --green-500: #08af59;
  --green-600: #058946;
  --yellow-400: #ffd51c;
  --yellow-500: #f4be00;
  --gray-50: #f7f9fc;
  --gray-100: #eef3f8;
  --gray-300: #d6e0ea;
  --gray-600: #5d6b7a;
  --white: #ffffff;
  --text: #0d2548;
  --shadow: 0 18px 45px rgba(13, 37, 72, 0.14);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(13, 37, 72, 0.1);
  box-shadow: 0 10px 28px rgba(13, 37, 72, 0.08);
  backdrop-filter: blur(14px);
}

.header-content {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  width: 250px;
}

.brand img,
.footer-logo {
  padding: 8px 10px;
  border-radius: var(--radius);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1;
}

.main-nav a {
  color: var(--blue-950);
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.96;
}

.main-nav a:hover {
  color: var(--green-500);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(13, 37, 72, 0.2);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-950);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary,
.btn-whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  box-shadow: 0 12px 24px rgba(8, 175, 89, 0.24);
}

.btn-yellow {
  color: var(--blue-950);
  background: linear-gradient(135deg, var(--yellow-400), var(--yellow-500));
  box-shadow: 0 12px 24px rgba(244, 190, 0, 0.24);
}

.btn-outline {
  color: var(--yellow-400);
  border: 2px solid var(--yellow-400);
  background: transparent;
}

.btn-outline.dark {
  color: var(--blue-900);
  border-color: var(--blue-800);
}

.btn-full {
  width: 100%;
}

.icon {
  font-size: 1.05rem;
}

.hero {
  position: relative;
  min-height: 560px;
  padding: 148px 0 70px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 29, 63, 0.98) 0%, rgba(0, 29, 63, 0.88) 39%, rgba(0, 29, 63, 0.22) 72%, rgba(0, 29, 63, 0.06) 100%),
    url("assets/hero-banner.png") center right 35% / cover no-repeat,
    var(--blue-950);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(25deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: 0.22;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 342px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(100%, 620px);
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green-500);
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(2.45rem, 4.7vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.hero p {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.section {
  padding: 70px 0;
  scroll-margin-top: 100px;
}

.plans-section,
.faq-section {
  background: linear-gradient(180deg, var(--gray-50), var(--white));
}

.section-title {
  margin-bottom: 34px;
}

.section-title.centered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.15;
  color: var(--blue-950);
}

.section-title strong,
.coverage-title strong {
  color: var(--green-500);
}

.title-line {
  width: 84px;
  height: 2px;
  background: var(--green-500);
  position: relative;
}

.title-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-500);
  transform: translateY(-50%);
}

.plan-promo-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: 42px;
  padding: clamp(32px, 5vw, 58px);
  border-radius: 18px;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 120, 255, 0.22), transparent 22%),
    radial-gradient(circle at 18% 18%, rgba(8, 175, 89, 0.16), transparent 24%),
    linear-gradient(135deg, var(--blue-950), #041d46 52%, #00142f);
  box-shadow: 0 28px 70px rgba(13, 37, 72, 0.22);
}

.promo-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green-500);
  font-weight: 900;
  text-transform: uppercase;
}

.promo-copy h3 {
  margin: 0;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.promo-copy,
.tv-copy {
  min-width: 0;
}

.promo-price {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 14px 0 8px;
  white-space: nowrap;
}

.promo-price span {
  margin-top: 18px;
  color: var(--green-500);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 900;
}

.promo-price strong {
  color: var(--green-500);
  font-size: clamp(3.7rem, 6vw, 5.45rem);
  line-height: 0.86;
}

.promo-price small {
  margin-top: 34px;
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  font-weight: 900;
}

.promo-highlight {
  margin: 0 0 22px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 900;
}

.promo-highlight strong,
.tv-copy strong {
  color: var(--yellow-400);
}

.promo-copy p,
.tv-copy p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.55;
}

.promo-copy .btn {
  margin-top: 18px;
}

.speed-orbit {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  aspect-ratio: 1;
  min-width: 260px;
  text-align: center;
  isolation: isolate;
}

.speed-orbit::before,
.speed-orbit::after {
  content: "";
  position: absolute;
  inset: 4%;
  z-index: -1;
  border-radius: 50%;
  background:
    conic-gradient(from 40deg, transparent 0 16%, #00d4ff 22%, #2b72ff 42%, transparent 58%, #7d5cff 72%, #00d4ff 86%, transparent 100%);
  filter: drop-shadow(0 0 18px rgba(0, 120, 255, 0.8));
  animation: slow-spin 14s linear infinite;
}

.speed-orbit::after {
  inset: 16%;
  background: radial-gradient(circle, rgba(0, 29, 63, 0.86), rgba(0, 29, 63, 0.5) 55%, transparent 70%);
  animation-direction: reverse;
}

.speed-orbit span,
.speed-orbit small {
  color: var(--white);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 900;
  text-transform: uppercase;
}

.speed-orbit strong {
  color: #63c7ff;
  font-size: clamp(3.6rem, 7vw, 6.2rem);
  line-height: 0.92;
  text-shadow: 0 8px 22px rgba(0, 92, 255, 0.44);
}

.tv-copy {
  padding-left: 44px;
  border-left: 1px solid rgba(8, 175, 89, 0.62);
}

.oletv-logo {
  width: min(100%, 280px);
  margin: 4px 0 18px;
}

.oletv-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.22));
}

.tv-copy ul {
  display: grid;
  gap: 16px;
  padding: 8px 0 22px;
  margin: 0;
  list-style: none;
}

.tv-copy li {
  font-size: 1.05rem;
  font-weight: 600;
}

.tv-copy li::before,
.business-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border-radius: 50%;
  color: var(--green-500);
  border: 2px solid currentColor;
  font-size: 0.72rem;
  font-weight: 900;
}

@keyframes slow-spin {
  to {
    transform: rotate(1turn);
  }
}

.coverage-band {
  padding: 30px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 29, 63, 0.96), rgba(0, 54, 112, 0.92)),
    linear-gradient(35deg, transparent 0 47%, rgba(255, 255, 255, 0.08) 48% 49%, transparent 50%),
    linear-gradient(145deg, transparent 0 47%, rgba(255, 255, 255, 0.06) 48% 49%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 28px);
  background-size: auto, 190px 190px, 230px 230px, auto;
}

.coverage-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: 38px;
}

.coverage-title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.coverage-title h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.16;
  font-weight: 900;
}

.pin {
  display: grid;
  place-items: center;
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 213, 28, 0.13);
}

.pin svg {
  width: 58px;
  height: 58px;
  fill: var(--yellow-400);
  stroke: var(--yellow-400);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.28));
}

.pin circle {
  fill: var(--blue-950);
  stroke: var(--blue-950);
}

.coverage-form {
  display: flex;
  min-height: 58px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.coverage-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 0 28px;
  color: var(--text);
  outline: none;
}

.coverage-form input::placeholder {
  color: #7a8798;
}

.coverage-form .btn {
  min-height: 58px;
  min-width: 230px;
  border-radius: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.benefits-grid article {
  padding: 10px 24px;
  text-align: center;
  border-right: 1px solid var(--gray-300);
}

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

.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 14px;
  color: var(--blue-800);
}

.benefit-icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-icon svg path:not(.accent)[d*="z"] {
  fill: rgba(7, 61, 120, 0.08);
}

.benefit-icon .accent {
  stroke: var(--green-500);
}

.benefits-grid h3 {
  min-height: 56px;
  margin: 0 0 12px;
  font-size: 1.08rem;
  color: var(--blue-950);
}

.benefits-grid p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

.business-section {
  padding: 74px 0;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 29, 63, 0.98) 0%, rgba(0, 29, 63, 0.9) 46%, rgba(0, 29, 63, 0.28) 78%, rgba(0, 29, 63, 0.08) 100%),
    url("assets/business-banner.png") center right 35% / cover no-repeat,
    var(--blue-950);
}

.business-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.86fr) minmax(260px, 1fr);
  align-items: center;
  gap: 46px;
  min-height: 310px;
}

.business-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.business-copy p {
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.business-list {
  display: grid;
  gap: 20px;
  padding: 18px 0 18px 34px;
  margin: 0;
  border-left: 2px solid var(--green-500);
  list-style: none;
}

.business-list li {
  font-weight: 700;
}

.business-list li::before {
  color: var(--green-500);
}

.service-shortcuts {
  padding-top: 38px;
}

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

.shortcut-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 14px;
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(13, 37, 72, 0.1);
}

.shortcut-card span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--green-500);
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 1.7rem;
}

.shortcut-card strong {
  color: var(--blue-950);
  font-size: 0.95rem;
}

.shortcut-card small {
  color: var(--gray-600);
  font-weight: 600;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
}

details {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  color: var(--blue-900);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "⌄";
  flex: 0 0 auto;
  color: var(--blue-900);
  transition: transform 0.2s ease;
}

details[open] summary::after {
  transform: rotate(180deg);
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--gray-600);
  line-height: 1.6;
}

.faq-action {
  margin-top: 26px;
  text-align: center;
}

.site-footer {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-950), #00142f);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 1.12fr 1.12fr 1.34fr;
  gap: 34px;
  padding: 62px 0 42px;
}

.footer-logo {
  background: rgba(255, 255, 255, 0.96);
  width: 180px;
  margin-bottom: 18px;
}

.site-footer h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.65;
}

.site-footer strong {
  color: var(--white);
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.site-footer .inline-link {
  display: inline;
  margin: 0;
}

.site-footer a:hover {
  color: var(--yellow-400);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom a {
  display: inline;
  margin: 0;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: min(420px, calc(100% - 36px));
  padding: 16px 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue-950);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .header-content {
    gap: 18px;
  }

  .brand {
    width: 206px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 0.82rem;
  }

  .business-grid {
    grid-template-columns: 1fr;
  }

  .coverage-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .business-section {
    background:
      linear-gradient(90deg, rgba(0, 29, 63, 0.98) 0%, rgba(0, 29, 63, 0.92) 56%, rgba(0, 29, 63, 0.42) 100%),
      url("assets/business-banner.png") center right 28% / cover no-repeat,
      var(--blue-950);
  }

  .business-grid {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .plan-promo-card {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.9fr);
  }

  .tv-copy {
    grid-column: 1 / -1;
    padding-top: 30px;
    padding-left: 0;
    border-top: 1px solid rgba(8, 175, 89, 0.62);
    border-left: 0;
  }

  .benefits-grid,
  .shortcuts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .benefits-grid article {
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .site-header.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-content {
    min-height: 74px;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    border-radius: var(--radius);
    background: var(--blue-950);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-header.is-open .main-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 15px;
    border-radius: var(--radius);
    font-size: 0.95rem;
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .hero {
    min-height: 620px;
    padding-top: 118px;
    background:
      linear-gradient(90deg, rgba(0, 29, 63, 0.98) 0%, rgba(0, 29, 63, 0.92) 48%, rgba(0, 29, 63, 0.42) 100%),
      url("assets/hero-banner.png") center right 38% / cover no-repeat,
      var(--blue-950);
  }

  .hero-grid {
    min-height: 430px;
  }

  .business-grid {
    min-height: 360px;
  }

  .plan-promo-card {
    grid-template-columns: 1fr;
  }

  .speed-orbit {
    width: min(100%, 330px);
    min-width: 0;
    margin: 8px auto;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .coverage-form {
    border-radius: var(--radius);
    flex-direction: column;
  }

  .coverage-form input {
    min-height: 58px;
  }

  .coverage-form .btn {
    width: 100%;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand {
    width: 176px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero {
    min-height: 660px;
    background:
      linear-gradient(180deg, rgba(0, 29, 63, 0.96) 0%, rgba(0, 29, 63, 0.9) 54%, rgba(0, 29, 63, 0.2) 100%),
      url("assets/hero-banner.png") center bottom / cover no-repeat,
      var(--blue-950);
  }

  .hero-grid {
    align-items: flex-start;
    min-height: 510px;
  }

  .business-section {
    padding: 56px 0;
    background:
      linear-gradient(180deg, rgba(0, 29, 63, 0.98) 0%, rgba(0, 29, 63, 0.92) 55%, rgba(0, 29, 63, 0.48) 100%),
      url("assets/business-banner.png") center bottom / cover no-repeat,
      var(--blue-950);
  }

  .business-grid {
    min-height: 520px;
  }

  .business-list {
    padding-left: 22px;
  }

  .plan-promo-card {
    padding: 28px 22px;
    border-radius: 14px;
  }

  .promo-price {
    flex-wrap: wrap;
    white-space: normal;
  }

  .promo-price small {
    margin-top: 28px;
  }

  .promo-copy .btn {
    width: 100%;
  }

  .section-title.centered {
    gap: 12px;
  }

  .title-line {
    width: 38px;
  }

  .benefits-grid,
  .shortcuts-grid {
    grid-template-columns: 1fr;
  }

  .shortcut-card {
    min-height: 86px;
  }
}
