/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #050505;
  --bg-raised: #0a0a0a;
  --bg-surface: #0f0f0f;

  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-bg-hover: rgba(255, 255, 255, 0.055);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.14);

  --neon: #00e87b;
  --neon-dim: rgba(0, 232, 123, 0.12);
  --neon-glow: rgba(0, 232, 123, 0.35);
  --neon-subtle: rgba(0, 232, 123, 0.06);
  --cyan: #00d4ff;
  --cyan-dim: rgba(0, 212, 255, 0.1);

  --red: #ff4d4d;
  --red-dim: rgba(255, 77, 77, 0.1);

  --text-100: #f5f5f5;
  --text-200: #d4d4d4;
  --text-300: #a3a3a3;
  --text-400: #737373;
  --text-500: #525252;

  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-200);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== AMBIENT BACKGROUND ===== */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.4;
}

.ambient__orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 232, 123, 0.06);
  top: -180px;
  right: 10%;
  animation: drift1 25s ease-in-out infinite;
}

.ambient__orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 212, 255, 0.04);
  bottom: 20%;
  left: -100px;
  animation: drift2 30s ease-in-out infinite;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 60px); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(50px, -40px); }
}

/* ===== GRID OVERLAY ===== */
.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black 20%, transparent 80%);
}

/* ===== LAYOUT ===== */
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Base section padding (Mobile) */
section {
  padding: 72px 0;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.nav.pinned {
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom-color: var(--glass-border);
}

.nav__inner {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-100);
}

.nav__logo {
  width: 32px;
  height: 32px;
  background: var(--neon);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
}

.nav__logo svg {
  width: 18px;
  height: 18px;
  color: var(--bg);
}

.nav__wordmark {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav__wordmark span {
  color: var(--text-400);
  font-weight: 500;
}

.nav__link {
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--neon);
  text-decoration: none;
  border: 1px solid rgba(0, 232, 123, 0.25);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.nav__link span {
  display: none;
}

.nav__link:hover {
  background: var(--neon-dim);
  border-color: rgba(0, 232, 123, 0.45);
}

/* ===== HERO ===== */
.hero {
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 48px;
}

.hero__inner {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(0, 232, 123, 0.2);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--neon);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 32px;
  background: var(--neon-subtle);
  animation: fadeDown 0.7s ease-out;
}

.hero__tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  animation: blink 2.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.hero__h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text-100);
  margin-bottom: 22px;
  animation: fadeUp 0.7s ease-out 0.1s both;
}

.hero__h1 .neon {
  color: var(--neon);
}

.hero__p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-300);
  max-width: 560px;
  margin: 0 auto 20px;
  line-height: 1.75;
  animation: fadeUp 0.7s ease-out 0.2s both;
}

.hero__p strong {
  color: var(--text-100);
  font-weight: 600;
}

/* Price Anchor */
.hero__anchor {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 24px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass-bg);
  margin-bottom: 36px;
  animation: fadeUp 0.7s ease-out 0.3s both;
}

.hero__anchor .old {
  font-size: 0.9rem;
  color: var(--red);
  text-decoration: line-through;
  opacity: 0.75;
}

.hero__anchor .arrow {
  color: var(--text-500);
  font-size: 0.85rem;
}

.hero__anchor .price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--neon);
}

/* CTA Button */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--neon);
  color: var(--bg);
  border: none;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  animation: fadeUp 0.7s ease-out 0.4s both;
  width: 100%;
  max-width: 360px;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 20px var(--neon-glow),
    0 0 60px rgba(0, 232, 123, 0.15),
    0 4px 20px rgba(0, 0, 0, 0.4);
}

.cta-primary:active {
  transform: translateY(0);
}

.cta-primary .arrow {
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}

.cta-primary:hover .arrow {
  transform: translateX(3px);
}

.hero__micro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-400);
  animation: fadeUp 0.7s ease-out 0.5s both;
}

.hero__micro svg {
  width: 14px;
  height: 14px;
  color: var(--neon);
  opacity: 0.7;
}

/* Waveform */
.waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-top: 56px;
  height: 48px;
  opacity: 0.15;
  animation: fadeIn 1.2s ease-out 0.8s both;
}

.waveform i {
  display: block;
  width: 2px;
  background: var(--neon);
  border-radius: 1px;
  animation: wave 1.4s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

/* ===== SECTION HEADERS ===== */
.sh {
  text-align: center;
  margin-bottom: 56px;
}

.sh__tag {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sh__title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-100);
  margin-bottom: 14px;
}

.sh__sub {
  font-size: 0.95rem;
  color: var(--text-400);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== COMPARISON TABLE ===== */
.compare {
  background: var(--bg-raised);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.compare__panel {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.compare__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr;
}

/* Header row */
.compare__head {
  display: contents;
}

.compare__head-cell {
  padding: 12px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--glass-border);
}

.compare__head-cell:nth-child(1) {
  color: var(--text-500);
}

.compare__head-cell:nth-child(2) {
  color: var(--neon);
  background: var(--neon-subtle);
  border-left: 1px solid rgba(0, 232, 123, 0.1);
  border-right: 1px solid rgba(0, 232, 123, 0.1);
  position: relative;
}

.compare__head-cell:nth-child(2)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--neon);
  opacity: 0.6;
}

.compare__head-cell:nth-child(3) {
  color: var(--text-500);
}

/* Data rows */
.compare__row {
  display: contents;
}

.compare__row > div {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  transition: background 0.25s ease;
}

.compare__row:last-child > div {
  border-bottom: none;
}

.compare__row:hover > div {
  background: rgba(255, 255, 255, 0.015);
}

/* Feature label */
.compare__row > div:nth-child(1) {
  font-weight: 600;
  color: var(--text-200);
}

.compare__row > div:nth-child(1) .ico {
  display: none;
  width: 28px;
  height: 28px;
  place-items: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* XTREAM column (highlighted) */
.compare__row > div:nth-child(2) {
  background: var(--neon-subtle);
  border-left: 1px solid rgba(0, 232, 123, 0.1);
  border-right: 1px solid rgba(0, 232, 123, 0.1);
  color: var(--neon);
  font-weight: 600;
}

.compare__row:hover > div:nth-child(2) {
  background: rgba(0, 232, 123, 0.09);
}

/* Competitors column */
.compare__row > div:nth-child(3) {
  color: var(--text-500);
}

/* Check & X indicators */
.c-ok, .c-no {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  font-weight: 700;
}

.c-ok {
  background: var(--neon-dim);
  color: var(--neon);
}

.c-no {
  background: var(--red-dim);
  color: var(--red);
}

/* Verdict footer */
.compare__verdict {
  padding: 18px 24px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-400);
}

.compare__verdict strong {
  color: var(--neon);
  font-weight: 700;
}

/* ===== BENEFITS ===== */
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.bcard {
  padding: 32px 26px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.35s ease;
}

.bcard:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
}

.bcard__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  font-size: 1.2rem;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

.bcard:hover .bcard__icon {
  border-color: rgba(0, 232, 123, 0.2);
}

.bcard__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.bcard__text {
  font-size: 0.85rem;
  color: var(--text-400);
  line-height: 1.65;
}

/* ===== FINAL CTA ===== */
.fcta {
  text-align: center;
}

.fcta__box {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 22px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.fcta__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0.5;
}

.fcta__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 191, 36, 0.2);
  border-radius: 100px;
  background: rgba(255, 191, 36, 0.06);
  font-size: 0.78rem;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 28px;
}

.fcta__badge .blink-icon {
  animation: blink 1.8s ease-in-out infinite;
}

.fcta__h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--text-100);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.fcta__h2 .neon {
  color: var(--neon);
}

.fcta__p {
  font-size: 0.95rem;
  color: var(--text-400);
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.fcta__p strong {
  color: var(--text-200);
  font-weight: 600;
}

.fcta__proof {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--text-500);
}

.proof-item svg {
  width: 15px;
  height: 15px;
  color: var(--neon);
  opacity: 0.6;
}

/* ===== FOOTER ===== */
.foot {
  padding: 36px 0;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.foot p {
  font-size: 0.75rem;
  color: var(--text-500);
}

.foot a {
  color: var(--text-400);
  text-decoration: none;
  transition: color 0.2s ease;
}

.foot a:hover {
  color: var(--neon);
}

/* ===== SOCIAL PROOF ===== */
.proof {
  background: var(--bg-raised);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.proof__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat__num {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--neon);
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 0.78rem;
  color: var(--text-400);
  font-weight: 500;
}

.proof__testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.testimonial {
  padding: 28px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.35s ease;
}

.testimonial:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
}

.testimonial__stars {
  color: #fbbf24;
  font-size: 0.85rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial__text {
  font-size: 0.88rem;
  color: var(--text-300);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--neon-dim);
  color: var(--neon);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial__author strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-100);
}

.testimonial__author span {
  font-size: 0.72rem;
  color: var(--text-500);
}

/* ===== HOW IT WORKS ===== */
.how__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step {
  text-align: center;
  padding: 32px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  max-width: 360px;
  width: 100%;
  transition: all 0.35s ease;
}

.step:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
}

.step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--neon);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  margin: 0 auto 16px;
}

.step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 8px;
}

.step__text {
  font-size: 0.85rem;
  color: var(--text-400);
  line-height: 1.65;
}

.step__arrow {
  font-size: 1.2rem;
  color: var(--text-500);
  display: none;
}

/* ===== FAQ ===== */
.faq {
  background: var(--bg-raised);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.faq__list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s ease;
}

.faq__item:hover {
  border-color: var(--glass-border-hover);
}

.faq__q {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--text-100);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s ease;
}

.faq__q:hover {
  color: var(--neon);
}

.faq__icon {
  font-size: 1.2rem;
  color: var(--text-500);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
  color: var(--neon);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__item.open .faq__a {
  max-height: 200px;
}

.faq__a p {
  padding: 0 20px 18px;
  font-size: 0.85rem;
  color: var(--text-400);
  line-height: 1.7;
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  border: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

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

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }


/* ===== MEDIA QUERIES (MOBILE FIRST PROGRESSIVE ENHANCEMENT) ===== */

/* Tablets & Small Screens */
@media (min-width: 641px) {
  section {
    padding: 100px 0;
  }

  .nav__link span {
    display: inline;
  }

  .hero {
    min-height: 100vh;
    padding-top: 64px;
    padding-bottom: 0;
  }

  .cta-primary {
    width: auto;
    max-width: none;
    padding: 16px 40px;
  }

  .compare__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .compare__head-cell,
  .compare__row > div {
    padding: 16px 24px;
    font-size: 0.88rem;
  }

  .compare__row > div:nth-child(1) .ico {
    display: grid;
  }

  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .fcta__box {
    padding: 56px 40px;
  }

  .fcta__proof {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }

  .proof__testimonials {
    grid-template-columns: repeat(3, 1fr);
  }

  .how__steps {
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
  }

  .step__arrow {
    display: block;
    align-self: center;
    margin-top: -20px;
  }
}

/* Desktops & Large Screens */
@media (min-width: 861px) {
  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
