:root {
  --green-dark: #0b5b18;
  --green: #1f7f2f;
  --green-soft: rgba(31, 127, 47, 0.14);
  --red: #c4162a;
  --red-dark: #93111f;
  --red-soft: rgba(196, 22, 42, 0.14);
  --ink: #f5f7fa;
  --text: #d3d8e0;
  --muted: #93a0b4;
  --white: #ffffff;
  --bg: #081019;
  --bg-soft: #0d1622;
  --bg-card: rgba(16, 24, 37, 0.84);
  --bg-card-strong: rgba(13, 21, 33, 0.96);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.22);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  background: #081019;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(11, 91, 24, 0.22), transparent 26%),
    radial-gradient(circle at top right, rgba(196, 22, 42, 0.18), transparent 24%),
    linear-gradient(180deg, #071019 0%, #0a121d 100%);
  background-color: #081019;
  line-height: 1.5;
}

h1,
h2,
h3,
strong,
.brand-mini strong,
.price {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-transform: uppercase;
}

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

a,
button {
  font: inherit;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.8rem 0;
  backdrop-filter: blur(16px);
  background: rgba(8, 16, 25, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.header-inner-location {
  grid-template-columns: auto 1fr auto;
  align-items: start;
}

.header-nav-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
}

.brand-mini {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mini img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-mini strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand-mini span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.pill-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  flex-wrap: nowrap;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  transition: 0.2s ease;
}

.pill-link:hover {
  color: var(--ink);
}

.pill-link.active {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  box-shadow: 0 10px 22px rgba(11, 91, 24, 0.24);
}

.sub-pill-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  width: fit-content;
  max-width: 100%;
}

.sub-pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.78rem;
  transition: 0.2s ease;
  text-transform: uppercase;
}

.sub-pill-link:hover {
  color: var(--ink);
}

.sub-pill-link.active {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  box-shadow: 0 8px 18px rgba(11, 91, 24, 0.2);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.header-cta {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 14px 26px rgba(196, 22, 42, 0.24);
}

.btn:hover,
.header-cta:hover,
.contact-method:hover,
.info-card:hover,
.why-card:hover,
.area-link-btn:hover {
  transform: translateY(-1px);
}

.main-shell {
  padding: 0 0 2.2rem;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: panelFade 0.22s ease;
}

@keyframes panelFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HOME */

.home-hero {
  padding: 1.2rem 0 1.6rem;
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  left: -8%;
  top: 8%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(11, 91, 24, 0.18), transparent 70%);
  pointer-events: none;
}

.home-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 6%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(196, 22, 42, 0.16), transparent 70%);
  pointer-events: none;
}

.home-hero-inner {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1.5rem;
  align-items: center;
  min-height: 52vh;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-tag,
.card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.eyebrow,
.section-tag {
  background: rgba(31, 127, 47, 0.12);
  color: #b8efc2;
  border: 1px solid rgba(31, 127, 47, 0.18);
}

.hero-copy h1 {
  margin: 0.9rem 0 0.85rem;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.9;
  max-width: 10ch;
}

.hero-copy h1 span {
  display: block;
  font-size: 0.5em;
  line-height: 0.98;
}

.hero-text {
  max-width: 650px;
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.35rem 0 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(196, 22, 42, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #d7ffe0;
  border: 1px solid rgba(31, 127, 47, 0.2);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  border: 1px solid var(--border);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.highlight-chip {
  min-height: 40px;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink);
}

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

.energy-orb {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.05) 34%, rgba(31, 127, 47, 0.18) 58%, rgba(196, 22, 42, 0.14) 74%, transparent 100%);
  box-shadow:
    0 0 0 16px rgba(255, 255, 255, 0.03),
    0 0 80px rgba(31, 127, 47, 0.18),
    0 0 110px rgba(196, 22, 42, 0.12);
}

.hero-logo-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-main {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.24));
}

.hero-side-card {
  position: absolute;
  z-index: 3;
  min-width: 190px;
  max-width: 220px;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(13, 21, 33, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-side-card span {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-side-card strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.1;
}

.hero-side-card-top {
  top: 10%;
  right: 0;
}

.hero-side-card-bottom {
  bottom: 10%;
  left: 0;
}

.why-enerjon-wrap {
  margin-top: 1rem;
}

.why-enerjon {
  background: linear-gradient(180deg, rgba(13, 21, 33, 0.86), rgba(10, 17, 27, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.why-intro {
  max-width: 700px;
  margin-bottom: 1rem;
}

.why-intro h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
  margin: 0.7rem 0 0.5rem;
}

.why-intro p {
  margin: 0;
  color: var(--text);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.15rem;
  box-shadow: var(--shadow-soft);
}

.why-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.why-card p {
  margin: 0;
  color: var(--text);
}

/* OTHER PANELS */

.content-shell {
  background: linear-gradient(180deg, rgba(14, 22, 34, 0.9), rgba(10, 17, 27, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 1.8rem 1.25rem 2rem;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 1.4rem;
}

.section-intro.small-intro {
  margin-top: 1.8rem;
}

.section-intro h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.96;
  margin: 0.8rem 0 0.5rem;
}

.section-intro p {
  margin: 0;
  color: var(--text);
}

.pricing-grid,
.card-grid {
  display: grid;
  gap: 1rem;
}

.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.four-up {
  grid-template-columns: repeat(4, 1fr);
}

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

.info-card,
.contact-method,
.contact-form,
.faq-item {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.info-card {
  padding: 1.35rem;
}

.area-link-btn {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.75rem;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 6px 14px rgba(11, 91, 24, 0.25);
  transition: 0.2s ease;
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  font-size: 1.35rem;
}

.info-card p {
  margin: 0;
  color: var(--text);
}

.featured-card {
  border: 1px solid rgba(196, 22, 42, 0.25);
  background: linear-gradient(180deg, rgba(196, 22, 42, 0.12), rgba(255, 255, 255, 0.04));
}

.card-badge {
  margin-bottom: 0.8rem;
  background: rgba(196, 22, 42, 0.12);
  color: #ffd9df;
  border: 1px solid rgba(196, 22, 42, 0.2);
}

.price {
  font-size: 2.6rem;
  line-height: 1;
  color: #d7ffe0;
  margin-bottom: 0.8rem;
}

.bottom-action {
  margin-top: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.2rem;
}

.contact-methods {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.contact-method {
  display: block;
  padding: 1rem 1.1rem;
}

.contact-method span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.contact-method strong {
  font-size: 1rem;
}

.contact-form {
  padding: 1.35rem;
}

.contact-form h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.55rem;
}

.contact-form label {
  display: block;
  margin-top: 0.9rem;
  margin-bottom: 0.4rem;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  font-size: 0.85rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  font: 600 1rem Arial, Helvetica, sans-serif;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(196, 22, 42, 0.4);
  box-shadow: 0 0 0 4px rgba(196, 22, 42, 0.08);
}

.form-actions {
  margin-top: 1.25rem;
}

.form-note {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-success {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(31, 127, 47, 0.12);
  border: 1px solid rgba(31, 127, 47, 0.2);
  color: #d7ffe0;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  padding: 0.95rem 1.1rem;
}

.faq-item summary {
  font-weight: 900;
  color: var(--ink);
  cursor: pointer;
  text-transform: uppercase;
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--text);
}

/* FOOTER */

.site-footer {
  position: relative;
  margin-top: 1.2rem;
  padding: 1.6rem 0 5rem;
  background:
    linear-gradient(180deg, rgba(7, 16, 25, 0) 0%, rgba(7, 16, 25, 1) 24%),
    linear-gradient(90deg, rgba(11, 91, 24, 0.15), rgba(196, 22, 42, 0.14));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top-glow {
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), var(--red), transparent);
  opacity: 0.9;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.footer-brand p {
  margin: 0.25rem 0 0;
}

.footer-center {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.footer-badge {
  min-height: 40px;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-tab-link {
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--ink);
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-sticky-bar {
  display: none;
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .header-inner-location {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .header-nav-stack {
    width: 100%;
  }

  .home-hero-inner,
  .why-grid,
  .pricing-grid,
  .card-grid.four-up,
  .card-grid.three-up,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 7vw, 4.7rem);
  }

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

  .energy-orb {
    width: 420px;
    height: 420px;
  }

  .hero-logo-main {
    max-width: 380px;
  }

  .hero-side-card-top {
    top: 8%;
    right: -2%;
  }

  .hero-side-card-bottom {
    bottom: 8%;
    left: -2%;
  }
}

@media (max-width: 820px) {
  .hero-copy h1 {
    font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
    letter-spacing: -0.03em;
  }

  .eyebrow {
    font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
    letter-spacing: 0.02em;
  }

  .pill-link {
    font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  }

  html,
  body {
    background: #081019;
  }

  body {
    padding-top: env(safe-area-inset-top, 0);
  }

  .site-header {
    position: relative;
    top: auto;
    z-index: 10;
    padding: calc(env(safe-area-inset-top, 0) + 0.65rem) 0 0.5rem;
    border: none;
    background: #081019;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .header-inner,
  .header-inner-location {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.75rem;
  }

  .header-nav-stack {
    width: 100%;
  }

  .brand-mini {
    display: block;
    width: 100%;
    text-align: center;
  }

  .brand-mini div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .brand-mini img {
    display: none;
  }

  .brand-mini strong {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
  }

  .brand-mini span {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 0.15rem;
  }

  .pill-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.25rem;
    padding: 0.25rem;
    background: #101825;
    border-radius: 999px;
  }

  .pill-link {
    min-height: 34px;
    padding: 0;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .pill-nav::-webkit-scrollbar {
    display: none;
  }

  .sub-pill-nav {
    width: auto;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.3rem;
    gap: 0.25rem;
  }

  .sub-pill-link {
    min-height: 32px;
    padding: 0 0.7rem;
    font-size: 0.66rem;
  }

  .pill-link.active {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: var(--white);
    box-shadow: 0 10px 22px rgba(11, 91, 24, 0.24);
  }

  .header-cta {
    display: none;
  }

  .main-shell {
    padding-bottom: 5.4rem;
  }

  .home-hero,
  .home-hero::before,
  .home-hero::after {
    background: none;
  }

  .home-hero::before,
  .home-hero::after {
    content: none;
    display: none;
  }

  .home-hero {
    padding-top: 0.35rem;
    padding-bottom: 1rem;
    margin-top: 0;
    border: none;
    box-shadow: none;
  }

  .home-hero-inner,
  .why-grid,
  .pricing-grid,
  .card-grid.four-up,
  .card-grid.three-up,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow {
    font-size: 0.7rem;
    min-height: 30px;
    padding: 0.3rem 0.7rem;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9.5vw, 3rem);
    line-height: 0.93;
    margin: 0.75rem 0 0.65rem;
  }

  .hero-copy h1 span {
    font-size: 0.56em;
  }

  .hero-text {
    margin-inline: auto;
    font-size: 0.98rem;
    line-height: 1.42;
    max-width: 32rem;
  }

  .hero-actions {
    justify-content: center;
    gap: 0.65rem;
    margin: 0.95rem 0 0.85rem;
  }

  .btn {
    min-height: 48px;
    padding: 0 1rem;
    font-size: 0.93rem;
  }

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

  .hero-highlights {
    justify-content: center;
    gap: 0.5rem;
  }

  .highlight-chip {
    min-height: 36px;
    padding: 0.55rem 0.8rem;
    font-size: 0.8rem;
  }

  .hero-visual {
    display: none;
  }

  .energy-orb,
  .hero-logo-stage,
  .hero-side-card {
    display: none;
  }

  .why-enerjon,
  .content-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .why-intro h2,
  .section-intro h2 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .why-card,
  .info-card,
  .faq-item,
  .contact-form,
  .contact-method {
    padding: 1rem;
  }

  .footer-inner {
    gap: 1rem;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-center {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
  }

  .mobile-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    background: rgba(10, 17, 27, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 100;
  }

  .mobile-sticky-bar a,
  .mobile-sticky-bar button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    margin: 0;
    padding: 0 0.4rem;
    line-height: 1;
    font-size: 0.88rem;
    font-weight: 900;
    color: var(--ink);
    text-transform: uppercase;
    text-align: center;
  }

  .mobile-sticky-bar a:nth-child(2) {
    color: #c8ffd1;
  }

  .mobile-sticky-bar button:nth-child(3) {
    color: #ffd6dc;
  }
}