:root {
  --bg-main: #020617;
  --bg-card: rgba(15, 23, 42, 0.96);
  --bg-soft: rgba(15, 23, 42, 0.9);
  --accent: #facc15; /* Mellstroy gold accent */
  --accent-strong: #fde047;
  --accent-soft: rgba(250, 204, 21, 0.14);
  --accent-danger: #f97373;
  --border-soft: rgba(30, 64, 175, 0.7);
  --text-main: #f9fafb;
  --text-muted: #9ca3c7;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.7);
}

/* GLOBAL */

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: #020617;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
  padding-bottom: env(safe-area-inset-bottom);
}

/* Prevent background scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

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

button {
  font-family: inherit;
}

/* ANIMATED BACKGROUND */

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 0, rgba(56, 189, 248, 0.12) 0, transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(59, 130, 246, 0.14) 0, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.07) 0, transparent 60%),
    #020617;
  animation: bgMove 22s linear infinite alternate;
}

.bg-layer::before {
  content: "";
  position: absolute;
  inset: -100px;
  background-image: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.6) 1px,
    transparent 1px
  );
  background-size: 80px 100%;
  opacity: 0.08;
  transform: translateX(0);
  animation: gridSlide 16s linear infinite;
}

.bg-layer::after {
  content: "";
  position: absolute;
  inset: -100px;
  background-image: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.7) 1px,
    transparent 1px
  );
  background-size: 100% 72px;
  opacity: 0.09;
  transform: translateY(0);
  animation: gridSlideY 24s linear infinite;
}

@keyframes bgMove {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: -40px -30px, 20px 10px, -30px 40px;
  }
}

@keyframes gridSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-60px);
  }
}

@keyframes gridSlideY {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50px);
  }
}

/* LAYOUT */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.96),
    rgba(2, 6, 23, 0.78),
    transparent
  );
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 13px;
}

.logo__mark {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, #ffffff, #22d3ee 40%, #1d4ed8 80%);
  box-shadow:
    0 0 18px rgba(34, 211, 238, 0.9),
    0 0 28px rgba(37, 99, 235, 0.9);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link {
  font-size: 14px;
  color: var(--text-muted);
  position: relative;
}

/* Bigger tap targets on touch */
.nav__link {
  padding: 8px 6px;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22d3ee, #38bdf8, #60a5fa);
  transition: width 0.18s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.header__btn {
  font-size: 13px;
}

/* BURGER */

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.burger span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease,
    color 0.12s ease;
}

.btn--primary {
  background: linear-gradient(135deg, #f59e0b, #facc15);
  color: #020617;
  box-shadow: 0 16px 38px rgba(250, 204, 21, 0.35);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(250, 204, 21, 0.45);
}

.btn--outline {
  border: 1px solid rgba(148, 163, 231, 0.7);
  background: rgba(15, 23, 42, 0.92);
  color: var(--text-main);
}

.btn--outline:hover {
  border-color: #22d3ee;
  background: rgba(15, 23, 42, 1);
}

.btn--ghost {
  border: 1px solid rgba(148, 163, 231, 0.5);
  background: transparent;
  color: var(--text-main);
}

.btn--ghost:hover {
  background: rgba(15, 23, 42, 0.95);
}

.btn--big {
  padding: 12px 26px;
  font-size: 15px;
}

/* HERO */

.hero {
  padding: 28px 0 40px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.hero__left {
  position: relative;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.7);
  background: rgba(15, 23, 42, 0.98);
  color: var(--text-muted);
}

.hero__title {
  margin: 16px 0 10px;
  font-size: 30px;
  line-height: 1.15;
}

.hero__accent {
  background: linear-gradient(120deg, #22d3ee, #38bdf8, #60a5fa);
  -webkit-background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--text-muted);
}

/* HERO PROMO */

.hero__promo {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(37, 99, 235, 0.85);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
  margin-bottom: 18px;
}

.hero__promo-label {
  margin: 0 0 6px;
  font-size: 13px;
  color: #e5e7eb;
}

.hero__promo-row {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.hero__promo-code {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 231, 0.7);
  background: #020617;
  color: #e5e7eb;
  padding: 8px 14px;
  font-size: 14px;
  outline: none;
}

.hero__promo-code:focus {
  border-color: #22d3ee;
}

.hero__promo-copy {
  font-size: 13px;
  padding-inline: 14px;
}

.hero__promo-hint {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* HERO ACTIONS & META */

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.hero__tag {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.7);
  background: rgba(15, 23, 42, 0.98);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 10px;
}

/* HERO RIGHT PANELS */

.hero__right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-panel {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, #0f172a 0, #020617 70%);
  border: 1px solid var(--border-soft);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid transparent;
  background:
    linear-gradient(120deg, rgba(34, 211, 238, 0.0), rgba(34, 211, 238, 0.4), rgba(37, 99, 235, 0.0))
    border-box;
  mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.4;
  animation: borderGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes borderGlow {
  from {
    opacity: 0.2;
    transform: translate3d(-2px, -2px, 0);
  }
  to {
    opacity: 0.85;
    transform: translate3d(2px, 2px, 0);
  }
}

.hero-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.hero-panel__label {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.9);
}

.hero-dot--live {
  animation: pulseLive 1.4s ease-out infinite;
}

@keyframes pulseLive {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.3);
    opacity: 0.1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.9;
  }
}

.hero-panel__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.hero-kpi {
  padding: 10px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(37, 99, 235, 0.7);
}

.hero-kpi__label {
  margin: 0 0 4px;
  font-size: 11px;
  color: var(--text-muted);
}

.hero-kpi__value {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.hero-kpi__value--accent {
  color: #e0f2fe;
}

/* HERO PROGRESS */

.hero-progress__top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 4px;
  color: var(--text-muted);
}

.hero-progress__bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.98);
  overflow: hidden;
}

.hero-progress__fill {
  display: block;
  height: 100%;
  width: 78%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c55e, #facc15, #f59e0b);
  transition: width 0.6s ease;
}

.hero-progress__hint {
  margin: 6px 0 0;
  font-size: 11px;
  color: var(--text-muted);
}

/* SIDE PANEL */

.hero-panel--side {
  opacity: 0.9;
}

.hero-panel__mini-title {
  margin: 0 0 6px;
  font-size: 13px;
}

.hero-panel__list {
  margin: 0;
  padding-left: 18px;
  font-size: 12px;
  color: var(--text-muted);
}

.hero-panel__list li + li {
  margin-top: 4px;
}

/* HERO SCROLL INDICATOR */

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 11px;
  cursor: pointer;
}

.hero-scroll__circle {
  width: 20px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 231, 0.7);
  position: relative;
  overflow: hidden;
}

.hero-scroll__circle::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 231, 0.9);
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  70% {
    transform: translate(-50%, 14px);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
}

/* SECTIONS */

.section {
  padding: 26px 0 28px;
}

/* Better anchor navigation with sticky header */
section[id] {
  scroll-margin-top: 76px;
}

.section--soft {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98) 0, rgba(15, 23, 42, 0.9) 55%, transparent 100%);
}

.section--band {
  padding: 12px 0 24px;
}

.section__head {
  margin-bottom: 20px;
}

.section__title {
  margin: 0 0 6px;
  font-size: 22px;
}

.section__subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* TIMELINE */

.timeline {
  position: relative;
  margin-top: 4px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(148, 163, 231, 0.1), rgba(37, 99, 235, 0.7), rgba(148, 163, 231, 0.1));
  opacity: 0.7;
}

.timeline__item {
  display: flex;
  position: relative;
  padding-left: 36px;
  margin-bottom: 18px;
}

.timeline__point {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22d3ee;
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.9);
  position: absolute;
  left: 9px;
  top: 4px;
}

.timeline__content {
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid var(--border-soft);
  padding: 12px 14px;
}

.timeline__step {
  margin: 0 0 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.timeline__title {
  margin: 0 0 6px;
  font-size: 15px;
}

.timeline__text {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* BAND PROMO */

.band {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(37, 99, 235, 0.9);
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), rgba(15, 23, 42, 0.98));
  padding: 16px 14px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.band::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.35), transparent 70%);
  filter: blur(4px);
  opacity: 0.6;
}

.band__label {
  margin: 0 0 4px;
  font-size: 12px;
  color: var(--text-muted);
}

.band__title {
  margin: 0 0 8px;
  font-size: 20px;
}

.band__text {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.band__promo {
  display: flex;
  gap: 8px;
  max-width: 360px;
}

.band__promo-code {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 231, 0.8);
  background: rgba(15, 23, 42, 1);
  color: #e5e7eb;
  padding: 8px 14px;
  font-size: 14px;
}

.band__promo-code:focus {
  outline: none;
  border-color: #22d3ee;
}

.band__promo-copy {
  font-size: 13px;
  padding-inline: 14px;
}

.band__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

.band__btn {
  min-width: 210px;
}

.band__note {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* GRID FEATURES */

.grid-features {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.card {
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity 0.18s ease;
}

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

.feature-card__tag {
  margin: 0 0 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.feature-card__title {
  margin: 0 0 6px;
  font-size: 15px;
}

.feature-card__text {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* REVIEWS SLIDER (HORIZONTAL SCROLL MOBILE) */

.reviews-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.reviews-slider::-webkit-scrollbar {
  height: 4px;
}

.reviews-slider::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.9);
}

.reviews-slider::-webkit-scrollbar-thumb {
  background: rgba(55, 65, 81, 0.9);
  border-radius: 999px;
}

.review-card {
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(37, 99, 235, 0.85);
  padding: 12px 14px;
  position: relative;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: -12px;
  left: 10px;
  font-size: 42px;
  color: rgba(56, 189, 248, 0.16);
}

.review-card__text {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--text-main);
}

.review-card__meta {
  display: flex;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
}

.review-card__tag {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 1);
}

/* FAQ */

.faq {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 41, 55, 0.95);
  background: rgba(15, 23, 42, 0.98);
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(31, 41, 55, 0.95);
}

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.faq-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 231, 0.7);
  font-size: 16px;
  flex-shrink: 0;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  padding: 0 14px;
}

.faq-item__answer p {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.faq-item--open .faq-item__answer {
  padding-top: 4px;
}

.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
}

/* STICKY CTA (MOBILE) */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 12px 10px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.0));
  display: flex;
  justify-content: center;
  z-index: 35;
}

.sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #f59e0b, #facc15);
  color: #020617;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.9);
}

/* FOOTER */

.footer {
  border-top: 1px solid rgba(31, 41, 55, 0.95);
  padding: 18px 0 26px;
  background: rgba(2, 6, 23, 0.96);
  margin-top: 14px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer__logo {
  margin: 0 0 4px;
  font-weight: 600;
  color: var(--text-main);
}

.footer__text {
  margin: 0;
}

.footer__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__warning {
  margin: 0;
}

.footer__link {
  color: #bfdbfe;
  text-decoration: underline;
}

/* REVEAL ANIMATION ON SCROLL */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

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

/* RESPONSIVE */

@media (max-width: 768px) {
  .nav {
    position: absolute;
    inset-inline: 0;
    top: 48px;
    padding: 8px 16px 12px;
    background: rgba(2, 6, 23, 0.99);
    border-bottom: 1px solid rgba(37, 99, 235, 0.6);
    flex-direction: column;
    gap: 8px;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header__btn {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .hero {
    padding-top: 18px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-scroll {
    display: none;
  }

  .band {
    grid-template-columns: minmax(0, 1fr);
  }

  /* Prevent iOS zoom on inputs (>=16px) */
  .hero__promo-code,
  .band__promo-code {
    font-size: 16px;
  }

  /* Make primary actions easier to tap */
  .hero__actions .btn,
  .band__btn {
    width: 100%;
  }

  .band__right {
    align-items: stretch;
  }

  .band__promo {
    max-width: none;
  }

  .footer__inner {
    font-size: 11px;
  }
}

@media (min-width: 769px) {
  .grid-features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .reviews-slider {
    grid-auto-flow: row;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow-x: visible;
  }

  .sticky-cta {
    display: none;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}


/* === SEO ADDITIONS (bonus / payments / trust) === */

.updated-date{
  margin: -10px 0 14px;
  font-size: 12px;
  color: var(--text-muted);
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 231, 0.55);
  background: rgba(15, 23, 42, 0.92);
}

.updated-date time{
  color: #e5e7eb;
  font-weight: 600;
}

.bonus-card{
  border: 1px solid rgba(37, 99, 235, 0.85);
}

.bonus-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.bonus-kpi{
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 231, 0.35);
  background: rgba(2, 6, 23, 0.55);
  padding: 12px 12px;
}

.bonus-kpi__label{
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.bonus-kpi__value{
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.bonus-table-wrap{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 231, 0.35);
}

.bonus-table{
  min-width: 520px; /* allow horizontal scroll on narrow phones */
}

.bonus-table{
  width: 100%;
  border-collapse: collapse;
  background: rgba(15, 23, 42, 0.85);
}

.bonus-table th,
.bonus-table td{
  padding: 10px 12px;
  font-size: 13px;
  border-top: 1px solid rgba(31, 41, 55, 0.7);
  vertical-align: top;
}

.bonus-table tr:first-child th,
.bonus-table tr:first-child td{
  border-top: none;
}

.bonus-table th{
  width: 42%;
  text-align: left;
  color: #e5e7eb;
  font-weight: 650;
}

.bonus-table td{
  color: var(--text-muted);
}

.bonus-note{
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--text-muted);
}

.nice-list{
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 13px;
}

.nice-list li + li{
  margin-top: 6px;
}

.trust-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-card__title{
  margin: 0 0 8px;
  font-size: 15px;
}

.trust-card__text{
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.payments-grid .feature-card__text{
  color: var(--text-muted);
}

@media (max-width: 768px){
  .bonus-grid{ grid-template-columns: minmax(0, 1fr); }
  .trust-grid{ grid-template-columns: minmax(0, 1fr); }
  .bonus-table th{ width: 46%; }
}

/* Extra-tight phones */
@media (max-width: 420px) {
  .hero__title { font-size: 26px; }
  .hero__promo-row,
  .band__promo {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__promo-copy,
  .band__promo-copy {
    width: 100%;
  }
  .hero-panel__stats { grid-template-columns: minmax(0, 1fr); }
}

.hero__promo-copy.is-copied {
  opacity: .8;
  transform: scale(0.98);
}

.hero__promo-copy {
  transition: transform .12s ease, opacity .12s ease;
}

/* Reduce motion for accessibility & mobile performance */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}