/* ============ HoodVPN Landing ============ */
:root {
  --bg: #060706;
  --bg-soft: #0b0d08;
  --card: #0e100a;
  --card-2: #12150c;
  --line: #1d2213;
  --line-soft: #161a0e;
  --accent: #c8f31d;
  --accent-dim: #a5c918;
  --accent-glow: rgba(200, 243, 29, 0.14);
  --text: #f2f4ec;
  --muted: #9aa08c;
  --muted-2: #6d7360;
  --radius: 16px;
  --radius-lg: 22px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; }

h2 { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.12; }

.accent { color: var(--accent); }

.eyebrow {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.section-sub { color: var(--muted); max-width: 420px; margin-top: 14px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--accent);
  color: #0c0e05;
  box-shadow: 0 0 24px rgba(200, 243, 29, 0.25);
}
.btn-primary:hover { background: #d6ff3d; box-shadow: 0 0 34px rgba(200, 243, 29, 0.4); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent-dim); background: rgba(200, 243, 29, 0.05); }

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-icon { padding: 0; width: 42px; height: 42px; flex: none; }

/* ============ Nav ============ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 9, 7, 0.96);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}
.logo { display: inline-flex; align-items: center; gap: 9px; }
.logo-mark {
  display: inline-flex;
  align-items: center;
}
.logo-mark img { height: 30px; width: auto; display: block; }
.logo-text { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.logo-text em { font-style: normal; color: var(--accent); }

.nav-links { display: flex; gap: 26px; margin: 0 auto; }
.nav-links a { color: var(--muted); font-size: 13.5px; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font);
  font-size: 12.5px; font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.nav-burger { display: none; }

/* ============ Hero ============ */
.hero { position: relative; padding-top: 72px; padding-bottom: 60px; }

.hero-bg-glow {
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: min(900px, 100%); height: 600px;
  background: radial-gradient(ellipse at center, rgba(200, 243, 29, 0.07), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1.2fr 0.55fr;
  gap: 36px;
  align-items: center;
}

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid var(--line);
  background: rgba(200, 243, 29, 0.05);
  color: var(--text);
  font-size: 12px; font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.badge svg { color: var(--accent); }

.hero-title {
  font-size: clamp(44px, 5.2vw, 64px);
  line-height: 1.04;
  margin-bottom: 22px;
}

.hero-sub { color: var(--muted); max-width: 340px; margin-bottom: 30px; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual / mascot slot */
.hero-visual { display: flex; justify-content: center; }

.hero-stats { display: flex; flex-direction: column; gap: 22px; justify-self: end; }
.stat { display: flex; align-items: center; gap: 13px; }
.stat-icon {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--accent);
  display: grid; place-items: center;
}
.stat-icon svg { width: 21px; height: 21px; }
.stat strong { display: block; font-size: 16px; font-weight: 800; }
.stat small { color: var(--muted); font-size: 11.5px; line-height: 1.35; display: block; }

/* ============ Image placeholder slots ============ */
.img-slot {
  position: relative;
  border: 1.5px dashed rgba(200, 243, 29, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(200, 243, 29, 0.03), rgba(200, 243, 29, 0.01));
  display: grid;
  place-items: center;
  overflow: hidden;
}
.img-slot::after {
  content: "🖼 " attr(data-label);
  position: relative;
  z-index: 2;
  color: var(--muted-2);
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  padding: 0 30px;
  max-width: 90%;
}

/* Hero scene: glowing globe behind, mascot in front */
.hero-scene {
  position: relative;
  width: min(540px, 100%);
  aspect-ratio: 1 / 0.98;
  display: grid;
  place-items: center;
}
.hero-globe {
  position: absolute;
  top: 42%; left: 50%;
  transform: translate(-50%, -50%) scaleX(1.28);
  width: 128%; max-width: none;
  opacity: 0.95;
  pointer-events: none;
  z-index: 1;
}
.hero-mascot {
  position: relative;
  z-index: 3;
  width: 55%;
  filter: drop-shadow(0 14px 34px rgba(200, 243, 29, 0.28))
          drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
}
.mascot-pedestal {
  position: absolute;
  bottom: 12%; left: 50%;
  transform: translateX(-50%);
  width: 58%; height: 16px;
  border-radius: 50%;
  z-index: 2;
  border: 1px solid rgba(200, 243, 29, 0.35);
  box-shadow: 0 0 34px rgba(200, 243, 29, 0.28), inset 0 0 16px rgba(200, 243, 29, 0.18);
}

/* ============ Features ============ */
.features { padding-top: 30px; padding-bottom: 40px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.012);
  overflow: hidden;
}
.feature {
  padding: 34px 22px;
  text-align: center;
  border-right: 1px solid var(--line-soft);
}
.feature:last-child { border-right: none; }
.feature-icon {
  display: inline-grid; place-items: center;
  width: 46px; height: 46px;
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-icon svg { width: 30px; height: 30px; }
.feature h3 { font-size: 14.5px; font-weight: 700; line-height: 1.3; margin-bottom: 10px; }
.feature h3 br { display: inline; }
.feature p { color: var(--muted); font-size: 12px; line-height: 1.5; }

/* ============ Token ============ */
.token { padding-top: 80px; padding-bottom: 80px; }
.token-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.token-points { margin: 30px 0 34px; display: flex; flex-direction: column; gap: 22px; }
.token-points li { display: flex; gap: 15px; }
.point-icon {
  width: 44px; height: 44px; flex: none;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--accent);
  display: grid; place-items: center;
}
.point-icon svg { width: 20px; height: 20px; }
.token-points strong { display: block; font-size: 15px; margin-bottom: 3px; color: var(--accent); }
.token-points span { color: var(--muted); font-size: 13.5px; }

.token-visual { position: relative; display: flex; flex-direction: column; gap: 24px; align-items: center; }

.token-coin {
  width: min(440px, 92%);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 48px rgba(200, 243, 29, 0.28));
}

.tokenomics-card {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
}
.tokenomics-card h4 { color: var(--accent); font-size: 15px; margin-bottom: 16px; }
.tokenomics-card dl div {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13.5px;
}
.tokenomics-card dt { color: var(--muted); }
.tokenomics-card dd { font-weight: 700; }
.tokenomics-card .btn { margin-top: 18px; }

/* ============ Network (wide banner) ============ */
.network { padding-top: 40px; padding-bottom: 80px; }

.network-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1500 / 500;
  min-height: 380px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg-soft);
}
.network-globe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
}
.network-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
    rgba(6, 7, 6, 0.96) 0%,
    rgba(6, 7, 6, 0.78) 32%,
    rgba(6, 7, 6, 0.15) 62%,
    rgba(6, 7, 6, 0) 100%);
}
.network-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  padding: 0 clamp(28px, 5vw, 60px);
}
.network-content .btn { margin-top: 24px; }

.connection-card {
  position: absolute;
  z-index: 3;
  top: 50%; right: clamp(20px, 4vw, 48px);
  transform: translateY(-50%);
  width: 230px;
  background: rgba(10, 12, 7, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}
.connection-top { display: flex; align-items: center; gap: 11px; padding-bottom: 13px; border-bottom: 1px solid var(--line-soft); }
.flag-dot {
  width: 34px; height: 34px; flex: none;
  border-radius: 50%;
  background: linear-gradient(180deg, #1a1a1a 33%, #c92c2c 33% 66%, #e5b533 66%);
  border: 1px solid var(--line);
}
.connection-top small { display: block; color: var(--muted); font-size: 11px; }
.connection-top strong { font-size: 14.5px; }

.connection-metrics { display: flex; gap: 26px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.connection-metrics strong { display: block; font-size: 14.5px; }
.connection-metrics small { color: var(--muted); font-size: 11px; }

.connection-status {
  display: flex; align-items: center; gap: 7px;
  padding-top: 12px;
  color: var(--accent);
  font-size: 12px; font-weight: 600;
}
.pulse-dot {
  width: 7px; height: 7px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ============ Apps ============ */
.apps { padding-top: 20px; padding-bottom: 80px; }
.apps-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 50px;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.012);
  padding: 50px;
}

.platforms { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.platform {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  width: 66px;
  padding: 13px 6px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  color: var(--text);
}
.platform svg { width: 22px; height: 22px; }
.platform span { font-size: 10px; color: var(--muted); font-weight: 600; }

.devices-img {
  width: 100%;
  height: auto;
  display: block;
  /* fade all four edges so the dark render melts into the card
     instead of reading as a pasted-in rectangle */
  -webkit-mask:
    linear-gradient(to right, transparent 0%, #000 13%, #000 87%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 11%, #000 89%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask:
    linear-gradient(to right, transparent 0%, #000 13%, #000 87%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 11%, #000 89%, transparent 100%);
  mask-composite: intersect;
}

/* ============ Pricing ============ */
.pricing { padding-top: 20px; padding-bottom: 90px; }
.pricing-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}

.billing-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: var(--card);
}
.toggle-opt {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font);
  font-size: 13px; font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: none;
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}
.toggle-opt.active { background: var(--accent); color: #0c0e05; }
.save-tag {
  font-size: 10px; font-weight: 800;
  background: rgba(12, 14, 5, 0.18);
  padding: 2px 7px;
  border-radius: 999px;
}
.toggle-opt:not(.active) .save-tag { background: rgba(200, 243, 29, 0.12); color: var(--accent); }

.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
}
.plan h3 { font-size: 17px; margin-bottom: 12px; }
.price { display: flex; align-items: baseline; gap: 4px; }
.price .amount { font-size: 34px; font-weight: 800; letter-spacing: -0.03em; }
.price .per { color: var(--muted); font-size: 13px; }
.billed { color: var(--muted-2); font-size: 12px; margin: 5px 0 18px; min-height: 18px; }

.plan ul { flex: 1; display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; }
.plan ul li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 13px;
}
.plan ul li::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background:
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4 8.5l2.8 2.8L12 5.5" fill="none" stroke="%23c8f31d" stroke-width="2" stroke-linecap="round"/></svg>') center/10px no-repeat,
    rgba(200, 243, 29, 0.1);
}

.plan--pro {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(200, 243, 29, 0.07), var(--card) 45%);
  box-shadow: 0 0 40px rgba(200, 243, 29, 0.1);
}
.popular-tag {
  position: absolute;
  top: 22px; right: 20px;
  font-size: 10.5px; font-weight: 700;
  color: #0c0e05;
  background: var(--accent);
  padding: 4px 11px;
  border-radius: 999px;
}

/* ============ Footer ============ */
.footer {
  border-top: 1px solid var(--line-soft);
  background: var(--bg-soft);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 46px;
}
.footer-brand p { color: var(--muted); font-size: 13px; margin: 16px 0 20px; }

.socials { display: flex; gap: 9px; }
.socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
  display: grid; place-items: center;
  transition: all 0.15s;
}
.socials a:hover { color: var(--accent); border-color: var(--accent-dim); }
.ds-icon {
  display: inline-block;
  width: 16px; height: 16px;
  background: currentColor;
  -webkit-mask: url("images/dexscreener.png") center / contain no-repeat;
  mask: url("images/dexscreener.png") center / contain no-repeat;
}

.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h5 { font-size: 13.5px; font-weight: 700; margin-bottom: 6px; }
.footer-col a { color: var(--muted); font-size: 13px; transition: color 0.15s; }
.footer-col a:hover { color: var(--text); }
.footer-newsletter p { color: var(--muted); font-size: 12.5px; }

.newsletter { display: flex; gap: 9px; margin-top: 6px; }
.newsletter input {
  flex: 1;
  min-width: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--font);
  font-size: 13px;
  padding: 11px 18px;
  outline: none;
}
.newsletter input::placeholder { color: var(--muted-2); }
.newsletter input:focus { border-color: var(--accent-dim); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 22px;
  padding-bottom: 26px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted-2);
  font-size: 12.5px;
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--muted-2); margin-left: 22px; }
.footer-bottom a:hover { color: var(--text); }

/* ============ Closed Beta Modal ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 5, 3, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0s linear 0.22s;
}
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.22s ease, visibility 0s linear 0s;
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: linear-gradient(180deg, rgba(200, 243, 29, 0.07), var(--card) 42%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 42px 34px 32px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(200, 243, 29, 0.08);
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.modal-overlay.is-open .modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .modal-overlay, .modal-card { transition: none; }
}

.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.modal-close:hover { color: var(--text); border-color: var(--accent-dim); }

.modal-icon {
  width: 58px; height: 58px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 25%, rgba(200, 243, 29, 0.18), rgba(200, 243, 29, 0.02));
  border: 1px solid var(--line);
}
.modal-icon img { height: 30px; width: auto; display: block; }

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200, 243, 29, 0.09);
  border: 1px solid rgba(200, 243, 29, 0.28);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.modal-card h3 { font-size: 22px; line-height: 1.25; margin-bottom: 14px; }
.modal-card p { color: var(--muted); font-size: 14px; line-height: 1.65; margin-bottom: 14px; }
.modal-card p:last-of-type { margin-bottom: 28px; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-right { margin-left: auto; }
  .nav-burger {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 6px;
  }
  .nav-burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    justify-self: start;
    gap: 28px;
  }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .feature:nth-child(3n) { border-right: none; }
  .feature:nth-child(-n+3) { border-bottom: 1px solid var(--line-soft); }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-right { display: none; }
  .nav-burger { margin-left: auto; }

  .hero { padding-top: 48px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: 2; }
  .hero-stats { order: 3; }

  .features-grid { grid-template-columns: 1fr; }
  .feature { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .feature:last-child { border-bottom: none; }

  .token-grid, .apps-grid { grid-template-columns: 1fr; gap: 40px; }
  .apps-grid { padding: 30px 22px; }

  .network-banner {
    aspect-ratio: auto;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding: 32px 0 26px;
  }
  .network-globe { opacity: 0.4; }
  .network-banner::before {
    background: linear-gradient(180deg, rgba(6,7,6,0.6) 0%, rgba(6,7,6,0.85) 55%, rgba(6,7,6,0.95) 100%);
  }
  .network-content { max-width: 100%; }
  .connection-card {
    position: static;
    transform: none;
    width: auto;
    margin: 22px clamp(22px,5vw,28px) 0;
  }

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