/* ==========================================================
   BoostMitra — Design tokens
   ========================================================== */
:root {
  --bg: #F7F8FB;
  --surface: #FFFFFF;
  --ink: #12162B;
  --ink-soft: #565B72;
  --ink-faint: #8A8FA6;
  --brand: #2E4CFF;
  --brand-dark: #1C2FCC;
  --brand-light: #EEF1FF;
  --ember: #FF7A3D;
  --ember-light: #FFF1E8;
  --growth: #12B76A;
  --line: #E7E9F3;

  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(18, 22, 43, 0.06), 0 1px 1px rgba(18, 22, 43, 0.04);
  --shadow-md: 0 12px 32px -12px rgba(18, 22, 43, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(46, 76, 255, 0.28);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--ink);
}

p {
  margin: 0;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus visibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================
   Layout helpers
   ========================================================== */
section {
  padding: 96px 24px;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--brand);
  text-align: center;
  margin: 0 0 10px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}

.section-sub {
  text-align: center;
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--ink-soft);
  font-size: 16px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ==========================================================
   Buttons
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn i {
  font-size: 13px;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.btn--primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.btn--outline {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}

.btn--outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink-soft);
}

.btn--ghost:hover {
  color: var(--ink);
}

.btn--lg {
  padding: 16px 30px;
  font-size: 16px;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn--full {
  width: 100%;
  margin-top: 24px;
}

/* ==========================================================
   Nav
   ========================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 248, 251, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 4px 20px -8px rgba(18, 22, 43, 0.08);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  margin-right: auto;
}

.nav__logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--ember));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}

.nav__links a:hover {
  color: var(--brand);
}

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

.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--ink);
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav__toggle:hover {
  background: var(--brand-light);
}

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  padding: 64px 24px 0;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  background: var(--brand-light);
  padding: 8px 14px;
  border-radius: 999px;
  margin: 0 0 20px;
}

.eyebrow i {
  font-size: 12px;
}

.hero__title {
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero__title span {
  background: linear-gradient(100deg, var(--brand), var(--ember));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 22px 0 32px;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-row__avatars {
  display: flex;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid var(--bg);
  margin-left: -12px;
  background: linear-gradient(135deg, #c7cbe6, #eef1ff);
}

.avatar:first-child {
  margin-left: 0;
}

.avatar--1 {
  background: linear-gradient(135deg, #FFB199, #FF7A3D);
}

.avatar--2 {
  background: linear-gradient(135deg, #A0B4FF, #2E4CFF);
}

.avatar--3 {
  background: linear-gradient(135deg, #9BE7C4, #12B76A);
}

.avatar--4 {
  background: linear-gradient(135deg, #FFD08A, #FF9A3D);
}

.trust-row__text {
  font-size: 14px;
  color: var(--ink-soft);
}

.stars {
  color: var(--ember);
  font-size: 13px;
  margin-bottom: 2px;
  letter-spacing: 2px;
}

.trust-row__text span {
  display: block;
  font-weight: 600;
  color: var(--ink);
}

/* Hero visual */
.hero__visual {
  position: relative;
  height: 460px;
}

.badge-orbit {
  position: absolute;
  inset: 0;
}

.platform-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  box-shadow: var(--shadow-md);
  transform: translate(calc(-50% + var(--x) * 150px), calc(-50% + var(--y) * 130px));
  animation: float 5s ease-in-out infinite;
  animation-delay: calc(var(--x) * 0.6s);
}

.platform-badge--instagram {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
}

.platform-badge--youtube {
  background: #FF0000;
}

.platform-badge--facebook {
  background: #1877F2;
}

.platform-badge--x {
  background: #111318;
}

.platform-badge--tiktok {
  background: #010101;
}

.platform-badge--twitch {
  background: #9146FF;
}

@keyframes float {

  0%,
  100% {
    transform: translate(calc(-50% + var(--x) * 150px), calc(-50% + var(--y) * 130px));
  }

  50% {
    transform: translate(calc(-50% + var(--x) * 150px), calc(-50% + var(--y) * 130px - 12px));
  }
}

.dash-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px 22px 20px;
  border: 1px solid var(--line);
}

.dash-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dash-card__handle {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dash-card__live {
  font-size: 11px;
  font-weight: 700;
  color: var(--growth);
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--growth);
  box-shadow: 0 0 0 0 rgba(18, 183, 106, 0.5);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(18, 183, 106, 0.45);
  }

  70% {
    box-shadow: 0 0 0 7px rgba(18, 183, 106, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(18, 183, 106, 0);
  }
}

.dash-card__stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.dash-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.dash-stat__label {
  font-size: 12px;
  color: var(--ink-faint);
  width: 64px;
  flex-shrink: 0;
}

.dash-stat__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}

.dash-stat__delta {
  font-size: 11px;
  font-weight: 700;
  margin-left: auto;
  padding: 2px 7px;
  border-radius: 999px;
}

.dash-stat__delta.up {
  color: var(--growth);
  background: #E8F9F0;
}

.dash-card__chart {
  width: 100%;
  height: 56px;
  margin-bottom: 8px;
}

.chart-dot {
  fill: var(--ember);
}

.dash-card__toast {
  position: absolute;
  bottom: -16px;
  right: -14px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: var(--shadow-md);
}

.dash-card__toast i {
  color: var(--growth);
}

/* Pulse divider */
.pulse-divider {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 40px;
}

.pulse-divider svg {
  width: 100%;
  height: 32px;
  stroke: var(--line);
}

.pulse-divider polyline {
  fill: none;
  stroke: var(--line);
  stroke-width: 2;
}

.pulse-divider--top {
  padding: 0 24px 32px;
}

/* ==========================================================
   Platforms strip
   ========================================================== */
.platforms {
  padding-top: 40px;
  padding-bottom: 60px;
}

.platform-strip {
  max-width: var(--container);
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.platform-strip__item {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.platform-strip__item i {
  font-size: 26px;
  color: var(--ink);
}

/* ==========================================================
   Stats bar
   ========================================================== */
.stats-bar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 44px 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stats-bar__item {
  text-align: center;
}

.stats-bar__num,
.stats-bar__suffix {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 32px;
  color: var(--ink);
}

.stats-bar__suffix {
  color: var(--brand);
}

.stats-bar__label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink-faint);
}

/* ==========================================================
   Services
   ========================================================== */
.services {
  max-width: var(--container);
  margin: 0 auto;
}

.service-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  margin-bottom: 18px;
}

.service-card__icon--instagram {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
}

.service-card__icon--youtube {
  background: #FF0000;
}

.service-card__icon--facebook {
  background: #1877F2;
}

.service-card__icon--x {
  background: #111318;
}

.service-card__icon--tiktok {
  background: #010101;
}

.service-card__icon--twitch {
  background: #9146FF;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.service-card__price {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
}

/* ==========================================================
   Why us
   ========================================================== */
.why {
  max-width: var(--container);
  margin: 0 auto;
}

.why__copy .section-title,
.why__copy .section-sub {
  text-align: left;
  margin: 0;
  max-width: 640px;
}

.why__copy .section-eyebrow {
  text-align: left;
}

.why__copy {
  margin-bottom: 48px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.feature h3 {
  font-size: 16px;
  font-weight: 700;
}

.feature p {
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* ==========================================================
   How it works
   ========================================================== */
.how {
  max-width: var(--container);
  margin: 0 auto;
}

.how__steps {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 12px;
}

.how__step {
  text-align: center;
  padding: 0 8px;
}

.how__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--ember);
  background: var(--ember-light);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.how__step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.how__step p {
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 240px;
  margin: 0 auto;
}

.how__connector {
  height: 2px;
  background: var(--line);
  margin-top: 20px;
  align-self: start;
}

/* ==========================================================
   Pricing
   ========================================================== */
.pricing {
  max-width: var(--container);
  margin: 0 auto;
}

.pricing-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}

.price-card--popular {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.price-card__tag {
  position: absolute;
  top: -14px;
  left: 30px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.price-card__desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.price-card__price {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 24px;
}

.price-card__price span {
  font-size: 20px;
  color: var(--ink-faint);
  margin-right: 2px;
}

.price-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.price-card__list i {
  color: var(--growth);
  margin-top: 3px;
  font-size: 12px;
}

/* ==========================================================
   Reviews
   ========================================================== */
.reviews {
  max-width: var(--container);
  margin: 0 auto;
}

.review-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
}

.review-card .stars {
  margin-bottom: 16px;
}

.review-card p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 24px;
}

.review-card__who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__who strong {
  display: block;
  font-size: 14px;
}

.review-card__who span {
  font-size: 13px;
  color: var(--ink-faint);
}

.review-card__who-info {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item__q i {
  font-size: 13px;
  color: var(--ink-faint);
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-item__q i {
  transform: rotate(180deg);
  color: var(--brand);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-item__a {
  max-height: 160px;
}

.faq-item__a p {
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* ==========================================================
   Final CTA
   ========================================================== */
.final-cta {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, var(--brand-light), var(--ember-light));
  border-radius: var(--radius-lg);
  padding: 72px 24px;
}

.final-cta h2 {
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 800;
  max-width: 600px;
  margin: 0 auto 14px;
}

.final-cta p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 32px;
}

.pulse-divider--top polyline {
  stroke: rgba(18, 22, 43, 0.12);
}

/* ==========================================================
   Footer
   ========================================================== */
.footer {
  background: var(--surface);
  color: var(--ink-soft);
  padding: 64px 24px 28px;
  border-top: 1px solid var(--line);
}

.footer__top {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.nav__logo--footer {
  color: var(--ink);
  margin-bottom: 14px;
}

.footer__brand p {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 260px;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand-light);
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--brand);
  transition: background 0.2s ease, color 0.2s ease;
}

.footer__social a:hover {
  background: var(--brand);
  color: #fff;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 4px;
}

.footer__col a,
.footer__col span {
  font-size: 14px;
  color: var(--ink-soft);
}

.footer__col a:hover {
  color: var(--brand);
}

.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-faint);
}

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    height: 400px;
    order: -1;
  }

  .feature-grid,
  .service-grid,
  .pricing-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .price-card--popular {
    transform: none;
  }

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

@media (max-width: 720px) {
  section {
    padding: 64px 20px;
  }

  .nav__links,
  .nav__actions .btn--ghost {
    display: none;
  }

  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
    gap: 16px;
  }

  .nav__toggle {
    display: grid;
    place-items: center;
  }

  .hero {
    padding-top: 40px;
  }

  .hero__visual {
    height: 340px;
  }

  .dash-card {
    width: 250px;
    padding: 20px 18px 16px;
  }

  .badge-orbit {
    transform: scale(0.72);
  }

  .platform-strip {
    justify-content: center;
  }

  .platform-strip__item {
    flex: 1 1 30%;
  }

  .service-grid,
  .pricing-grid,
  .review-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .how__connector {
    width: 2px;
    height: 32px;
    margin: 0 auto;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 24px;
  }

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

  .footer__bottom {
    flex-direction: column;
  }
}