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

:root {
  --c-bg: #090b10;
  --c-bg2: #0c0e14;
  --c-bg3: #0f1118;
  --c-card: #111520;
  --c-card2: #141820;
  --c-green: #2dde78;
  --c-green-dim: #1db85d;
  --c-green-glow: rgba(45, 222, 120, 0.15);
  --c-green-glow2: rgba(45, 222, 120, 0.07);
  --c-border: rgba(255, 255, 255, 0.07);
  --c-border-hover: rgba(45, 222, 120, 0.4);
  --c-text: #ffffff;
  --c-muted: #8a919e;
  --c-light: #c8d0db;
  --font-head: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --nav-h: 64px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 14px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #0c0e14;
}

::-webkit-scrollbar-thumb {
  background: #2dde78;
  border-radius: 10px;
}

/* ─── NAVBAR ─── */
.snx-nav {
  height: var(--nav-h);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  background: rgba(9, 11, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  transition: background 0.3s;
}

.snx-nav.scrolled {
  background: rgba(9, 11, 16, 0.97);
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 3px;
  color: #fff;
  flex-shrink: 0;
}

.nav-brand .brand-orange {
  color: #ff6b2b;
}

.nav-brand .lightning {
  display: inline-flex;
  align-items: center;
  font-size: 1.1rem;
  color: var(--c-green);
  margin-left: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-bottom: 0 !important;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-light);
  padding: 6px 14px;
  border-radius: 6px;
  transition:
    color 0.2s,
    background 0.2s;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  background: var(--c-green);
  color: #000 !important;
  font-weight: 700 !important;
  border-radius: 7px;
  padding: 7px 18px !important;
  transition:
    background 0.2s,
    box-shadow 0.2s !important;
}

.nav-cta:hover {
  background: var(--c-green-dim) !important;
  box-shadow: 0 0 20px rgba(45, 222, 120, 0.35) !important;
  color: #000 !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* video bg */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  z-index: 0;
}

/* dark gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(9, 11, 16, 0.5) 0%,
      rgba(9, 11, 16, 0.1) 40%,
      rgba(9, 11, 16, 0.7) 80%,
      var(--c-bg) 100%
    ),
    linear-gradient(90deg, rgba(9, 11, 16, 0.8) 0%, transparent 60%);
}

/* subtle green grid */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(45, 222, 120, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 222, 120, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(
    180deg,
    transparent,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.6) 70%,
    transparent
  );
}

/* green glow orb */
.hero-orb {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(45, 222, 120, 0.12) 0%,
    transparent 70%
  );
  z-index: 1;
  animation: orbPulse 6s ease-in-out infinite;
}

@keyframes orbPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 222, 120, 0.1);
  border: 1px solid rgba(45, 222, 120, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-green);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
  animation: blink 1.4s ease-in-out infinite;
}

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

  50% {
    opacity: 0.3;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #fff;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-h1 .line2 {
  color: var(--c-green);
}

.hero-p {
  font-size: 15px;
  color: var(--c-light);
  max-width: 500px;
  margin-top: 18px;
  line-height: 1.7;
  font-weight: 300;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-green);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  padding: 13px 26px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

.btn-primary-hero:hover {
  background: var(--c-green-dim);
  color: #000;
  box-shadow: 0 0 30px rgba(45, 222, 120, 0.4);
  transform: translateY(-1px);
}

.btn-primary-hero svg {
  transition: transform 0.2s;
}

.btn-primary-hero:hover svg {
  transform: translateX(3px);
}

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--c-light);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 12px 24px;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}

.btn-ghost-hero:hover {
  border-color: var(--c-green);
  color: var(--c-green);
  background: var(--c-green-glow2);
}

/* hero stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
  animation: fadeUp 0.7s 0.5s ease both;
}

.stats-inner {
  display: flex;
  align-items: stretch;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  overflow: hidden;
}

.stat-item {
  flex: 1;
  padding: 22px 28px;
  border-right: 1px solid var(--c-border);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-green);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--c-muted);
  margin-top: 5px;
  font-weight: 400;
}

/* ─── SECTION COMMONS ─── */
.sec {
  padding: 88px 0;
}

.sec-alt {
  background: var(--c-bg2);
}

.container-snx {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sec-head {
  text-align: center;
  margin-bottom: 56px;
}

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-green);
  margin-bottom: 12px;
}

.sec-eyebrow::before,
.sec-eyebrow::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--c-green);
  opacity: 0.5;
}

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}

.sec-sub {
  font-size: 14px;
  color: var(--c-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── SERVICE CARDS ─── */
.srv-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 30px 26px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}

.srv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, var(--c-green-glow2) 0%, transparent 60%);
  transition: opacity 0.35s;
}

.srv-card:hover {
  border-color: var(--c-border-hover);
  transform: translateY(-5px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(45, 222, 120, 0.1);
}

.srv-card:hover::before {
  opacity: 1;
}

.srv-icon {
  width: 46px;
  height: 46px;
  background: var(--c-green-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.srv-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--c-green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.srv-card h5 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.srv-card p {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.65;
  margin: 0;
}

.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: var(--c-green);
  font-weight: 600;
  margin-top: 16px;
  transition: gap 0.2s;
}

.srv-link:hover {
  gap: 9px;
}

.srv-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--c-green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ─── WHY CARDS ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.why-card {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 24px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.3s;
}

.why-card:hover {
  border-color: var(--c-border-hover);
}

.why-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--c-green-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--c-green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h6 {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.why-card p {
  font-size: 12.5px;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.6;
}

/* ─── PROCESS STEPS ─── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
}


.step-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 26px 18px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.step-card:hover {
  border-color: var(--c-border-hover);
  transform: translateY(-4px);
}

.step-num-tag {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-green);
  margin-bottom: 12px;
  opacity: 0.8;
}

.step-icon {
  width: 52px;
  height: 52px;
  background: var(--c-green-glow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.3s;
}

.step-card:hover .step-icon {
  background: rgba(45, 222, 120, 0.22);
}

.step-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--c-green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card h5 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.6;
  margin: 0;
}

/* ─── PARTNER SECTION ─── */
.partner-sec {
  background: var(--c-bg);
  padding: 100px 0;
}

.partner-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.partner-text .highlight {
  color: var(--c-green);
}

.partner-text p {
  font-size: 13.5px;
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.partner-text strong {
  color: var(--c-light);
  font-weight: 600;
}

.founder-block {
  margin-top: 24px;
}

.founder-block .role {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-green);
  margin-bottom: 2px;
}

.founder-block .name {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}

.partner-img-wrap {
  position: relative;
}

.partner-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--c-border);
}

.partner-img-wrap::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(45, 222, 120, 0.15),
    transparent 60%
  );
  pointer-events: none;
}

.btn-outline-snx {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  border: 1px solid var(--c-border);
  color: var(--c-light);
  background: transparent;
  border-radius: 8px;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-outline-snx:hover {
  border-color: var(--c-green);
  color: var(--c-green);
  background: var(--c-green-glow2);
}

.btn-outline-snx svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── CTA SECTION ─── */
.cta-sec {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
  background: var(--c-bg2);
}

.cta-sec::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(45, 222, 120, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-sec h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: #fff;
  position: relative;
  z-index: 1;
}

.cta-sec p {
  font-size: 14px;
  color: var(--c-muted);
  max-width: 440px;
  margin: 14px auto 36px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.btn-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-green);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  padding: 13px 28px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    box-shadow 0.2s;
}

.btn-cta-main:hover {
  background: var(--c-green-dim);
  color: #000;
  box-shadow: 0 0 30px rgba(45, 222, 120, 0.4);
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--c-light);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 12px 26px;
  transition: all 0.2s;
}

.btn-cta-ghost:hover {
  border-color: var(--c-green);
  color: var(--c-green);
}

.btn-cta-main svg,
.btn-cta-ghost svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── CONTACT SECTION ─── */
.contact-sec {
  background: var(--c-bg);
  padding: 100px 0;
  text-align: center;
}

.contact-sec h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 10px;
}

.contact-sec .sub {
  font-size: 14px;
  color: var(--c-muted);
  max-width: 400px;
  margin: 0 auto 48px;
}

.contact-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  width: 58px;
  height: 58px;
  background: var(--c-green-glow);
  border: 1px solid rgba(45, 222, 120, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--c-green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-muted);
}

.contact-email a {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s;
}

.contact-email a:hover {
  color: var(--c-green);
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  padding: 56px 0 28px;
}

.footer-brand-wrap {
  margin-bottom: 12px;
}

.footer-brand {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 3px;
}

.footer-brand .fo {
  color: #ff6b2b;
}

.footer-desc {
  font-size: 12.5px;
  color: var(--c-muted);
  line-height: 1.65;
  margin-top: 12px;
}

.footer-social {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid var(--c-border);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  transition: all 0.2s;
}

.footer-social a:hover {
  border-color: var(--c-green);
  color: var(--c-green);
}

.footer-social svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-col-head {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-muted);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  font-size: 13px;
  color: var(--c-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--c-green);
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--c-muted);
  margin-bottom: 10px;
}

.footer-contact-row svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--c-green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-download-deck {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--c-green-glow);
  border: 1px solid rgba(45, 222, 120, 0.25);
  color: var(--c-green);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 16px;
  margin-top: 10px;
  transition: background 0.2s;
}

.btn-download-deck:hover {
  background: rgba(45, 222, 120, 0.2);
  color: var(--c-green);
}

.btn-download-deck svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  border-top: 1px solid var(--c-border);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--c-muted);
}

/* ─── MOBILE NAV ─── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(9, 11, 16, 0.98);
  border-bottom: 1px solid var(--c-border);
  padding: 20px 24px;
  z-index: 998;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--c-light);
  border-radius: 7px;
  font-weight: 500;
  transition:
    background 0.2s,
    color 0.2s;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.mobile-menu .m-cta {
  background: var(--c-green);
  color: #000 !important;
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .nav-links,
  .nav-cta-wrap {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

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

  .steps-row::before {
    display: none;
  }

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

@media (max-width: 767px) {
  .stats-inner {
    flex-direction: column;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--c-border);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .steps-row {
    grid-template-columns: 1fr;
  }

  .hero-h1 {
    letter-spacing: -0.5px;
  }
}
