﻿:root {
  --bg: #020202;
  --bg-highlight: #151515;
  --text: #f6f6f6;
  --muted: #c5c5c5;
  --accent: #f0c470;
  --card: #0c0c0c;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.6);
  --grid-size: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

iframe,
video {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

button {
  min-height: 44px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(180deg, #0e0e0e 0%, #010101 60%, #000 100%);
  color: var(--text);
  min-height: 100vh;
  padding: 0 20px 40px;
  overflow-x: hidden;
  position: relative;
}

.particles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}



.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.8),
    0 0 12px rgba(255, 255, 255, 0.4);
  animation: floatUp 6s ease-out forwards;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-120px) translateX(var(--drift)) scale(0.3);
    opacity: 0;
  }
}

@keyframes headerSlide {
  0% {
    transform: translate(-50%, -150%);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 60px 40px;
  position: relative;
  z-index: 1;
}
.hero {
  text-align: center;
  padding-top: 64px;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr min-content;
  align-items: center;
  column-gap: 10px;
  border-radius: 12px;
  padding: 14px 18px 14px 20px;
  margin: 0 auto 32px;
  background: #000;
  border: 0.25px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.48);
  width: 95%;
  max-width: 1000px;
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translate(-50%, -150%);
  z-index: 10;
  animation: headerSlide 0.8s ease forwards;
}

.nav-menu {
  display: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--text);
}

.brand-logo {
  height: 40px;
  width: auto;
}

.brand-text {
  font-size: 2.1rem;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 700;
}

.nav-links {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: auto;
  gap: 12px;
}

.nav-links a,
.nav-links button {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-link-text,
.nav-link-text-shadow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.nav-link-text-shadow {
  transform: translate(-50%, 70%);
  opacity: 0;
}

.nav-link-animated:hover .nav-link-text {
  transform: translate(-50%, -170%);
  opacity: 0;
}

.nav-link-animated:hover .nav-link-text-shadow {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.nav-link-animated {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  padding: 8px 14px;
  height: 44px;
  overflow: hidden;
  line-height: 1;
}

.nav-link-animated + .nav-link-animated {
  margin-left: 0;
}

.nav-link-animated:last-child {
  margin-left: -30px;
}


.nav-links a:hover,
.nav-links button:hover {
  color: var(--text);
}

.nav-links-desktop {
  justify-content: center;
  justify-self: center;
  width: auto;
}


.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 0.5px solid rgba(255, 255, 255, 0.35);
  background: #050505;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.cta {
  border: 0;
  padding: 26px 70px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.15rem;
  background: var(--white);
  color: #000;
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(255, 255, 255, 0.35);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.nav-cta {
  border: 0;
  padding: 26px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  background: var(--white);
  color: #000;
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(255, 255, 255, 0.2);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  width: auto;
  justify-self: end;
  margin-left: auto;
  margin-right: -6px;
}

.cta-label,
.cta-label-shadow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.cta-label-shadow {
  transform: translate(-50%, 70%);
  opacity: 0;
}

.cta:not(.badge):hover .cta-label,
.nav-cta:hover .cta-label {
  transform: translate(-50%, -170%);
  opacity: 0;
}

.cta:not(.badge):hover .cta-label-shadow,
.nav-cta:hover .cta-label-shadow {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.nav-menu .cta {
  width: 100%;
}

.hero-title {
  margin-top: 20px;
}

.hero-title .text-container {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.12em;
  text-align: center;
  display: inline-flex;
  flex-direction: column;
  gap: 0.006em;
  align-items: center;
}

.text-container span {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  animation: fadeInBlur 0.8s forwards;
}

.text-container {
  display: inline-flex;
  flex-direction: column;
  gap: 0.05em;
  align-items: center;
}

.text-container br {
  display: none;
}

@keyframes fadeInBlur {
  0% {
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.hero-description {
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.5;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 600;
  background: #1c1c1c;
  color: var(--text);
  border: 1px solid rgba(120, 120, 120, 0.45);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  letter-spacing: 0.01em;
  cursor: pointer;
  margin-top: -32px;
  flex-wrap: nowrap;
  max-width: 100%;
  min-width: 0;
}

.badge-text {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.badge-icon {
  display: none;
}

.badge-logo {
  width: 28px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.badge-arrow {
  position: relative;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #2a2a2a;
  flex-shrink: 0;
}

.badge-arrow svg {
  width: 18px;
  height: 18px;
}

.badge-arrow .arrow,
.badge-arrow .arrow-new {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.badge-arrow .arrow-new {
  left: -50%;
  opacity: 0;
}

.badge:hover .badge-arrow .arrow {
  transform: translate(75%, -50%);
  opacity: 0;
}

.badge:hover .badge-arrow .arrow-new {
  left: 50%;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.video-section {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 24px;
}

.video-frame {
  width: min(1024px, 100%);
  transition: transform 0.9s ease, box-shadow 0.9s ease;
  transform-origin: center center;
  perspective: 1200px;
}

.video-frame.tilted {
  transform: perspective(1600px) rotateX(12deg) scale(0.97) translateY(8px);
  box-shadow:
    0 60px 120px rgba(0, 0, 0, 0.8),
    0 30px 60px rgba(0, 0, 0, 0.4);
}

.video-frame iframe,
.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
  border-radius: 12px;
  box-shadow:
    0 35px 70px rgba(0, 0, 0, 0.45),
    inset 0 -12px 25px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  filter: blur(6px);
  animation: videoFade 0.8s ease forwards;
}

@keyframes videoFade {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.secondary-cta {
  padding: 26px 70px;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px 6px;
  margin-top: 8px;
}

.logos img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
}

.logos-caption {
  text-align: center;
  color: var(--muted);
  margin: 12px 0 0;
  font-size: 0.95rem;
}

@media (min-width: 769px) and (max-width: 1024px) {
  body {
    padding: 0 24px 90px;
  }

  .page {
    padding: 110px 40px 70px;
  }

  .nav {
    width: 92%;
    padding: 12px 20px;
  }

  .hero-title .text-container {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
  }

  .offer-section,
  .stories,
  .comparison,
  .faq-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stats-card {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .nav {
    width: calc(100% - 24px);
    padding: 10px 16px;
    left: 12px;
    right: 12px;
    top: 16px;
    transform: translate(0, 0);
    max-width: none;
    margin: 0;
    animation: none;
    grid-template-columns: auto auto;
    justify-content: space-between;
    border-radius: 18px;
  }

  .nav-links-desktop,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    border: none;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle span {
    background: #000;
  }

  .nav-links {
    display: none;
  }

  .nav-menu .nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .brand {
    justify-self: start;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    padding: 18px;
    border-radius: 12px;
    background: rgba(10, 10, 10, 0.95);
    border: 0.5px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-left: 0;
  }

  .nav.menu-open {
    transform: translateY(0);
  }

  .nav.menu-open .nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu .nav-link-animated {
    width: 100%;
    min-width: 0;
    margin-right: 0;
    padding: 10px 0;
  }

  .nav-menu .nav-link-animated:first-child {
    min-width: 0;
    padding: 10px 0;
    margin-right: 0;
  }

  body {
    padding: 0 12px 90px;
  }

  .page {
    padding: 110px 16px 70px;
  }

  .nav-menu .cta {
    text-align: center;
    padding: 14px 0;
  }

  .video-section {
    margin-top: 32px;
  }

  .hero-title {
    margin-top: -18px;
  }

  .hero-title .text-container {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    margin-top: 0;
    gap: 0.005em;
    letter-spacing: -0.12em;
  }

  .badge {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    margin: -12px auto 16px;
    transform: translateY(-16px);
    font-size: 0.82rem;
    gap: 6px;
    padding: 6px 14px;
  }
  
  .badge-text {
    text-align: center;
  }

  .video-frame {
    width: 100%;
  }

  .logos img {
    width: 48px;
    height: 48px;
    padding: 3px;
    margin-bottom: -10px;
  }

  .logos-caption {
    font-size: 0.8rem;
  }

  .badge-arrow {
    width: 32px;
    height: 32px;
  }

  .badge-arrow svg {
    width: 14px;
    height: 14px;
  }

  .nav-links-desktop,
  .nav-cta {
    display: none;
  }

.nav-toggle {
  display: inline-flex;
  justify-self: end;
}
}

@media (min-width: 481px) and (max-width: 768px) {
  .page {
    padding: 120px 24px 80px;
  }

  .badge {
    max-width: 420px;
  }

  .section-action .cta {
    width: min(100%, 340px);
  }

  .final-card {
    padding: 32px 24px 42px;
  }
}

.text-line {
  display: inline-flex;
  gap: 0.1em;
  white-space: nowrap;
}

.offer-section {
  margin-top: 70px;
  padding: 0 12px;
  margin-bottom: 50px;
}

.offer-intro {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  position: relative;
  overflow: visible;
}

.offer-intro-text h2 {
  margin: 20px 0 0;
  font-size: clamp(2.5rem, 5vw, 3.4rem);
  text-shadow: 0 8px 35px rgba(0, 0, 0, 0.6);
  color: #fff;
}

.offer-intro-text p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
}

.offer-intro-text {
  position: relative;
  text-align: center;
}

.offer-sparkles {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -18px;
  width: clamp(160px, 50%, 360px);
  height: 50px;
  pointer-events: none;
}

.offer-sparkles span {
  position: absolute;
  width: 3px;
  height: 12px;
  background: rgba(255, 255, 255, 0.7);
  opacity: 0;
  border-radius: 999px;
  animation: offerSparkle 2.8s linear infinite;
}

.offer-sparkles span:nth-child(1) { left: 5%; animation-delay: 0s; }
.offer-sparkles span:nth-child(2) { left: 25%; animation-delay: 0.4s; }
.offer-sparkles span:nth-child(3) { left: 45%; animation-delay: 0.9s; }
.offer-sparkles span:nth-child(4) { left: 60%; animation-delay: 1.3s; }
.offer-sparkles span:nth-child(5) { left: 78%; animation-delay: 1.7s; }
.offer-sparkles span:nth-child(6) { left: 92%; animation-delay: 2.1s; }

@keyframes offerSparkle {
  0% { transform: translateY(-20px); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(30px); opacity: 0; }
}
.offer-intro-beam {
  width: min(680px, 90%);
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

.offer-intro-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
}

.offer-intro-icon img {
  width: 42px;
  height: 42px;
}

.offer-intro-text h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 3.4rem);
}

.offer-intro-text p {
  margin: 8px 0 0;
  color: var(--muted);
}

.offer-section h2 {
  text-align: center;
  font-size: 2rem;
  margin: 0 0 28px;
}

.offer-section .offer-intro-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 20px 0 0;
}

.offer-heading {
  position: relative;
  display: inline-block;
  padding: 0 14px;
  isolation: isolate;
}

.offer-heading h2 {
  position: relative;
  z-index: 1;
}

.offer-heading-sparkles {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(220px, 60vw, 460px);
  height: 90px;
  pointer-events: none;
  z-index: -1;
}

.offer-cards {
  display: flex;
  gap: 26px;
}

.offer-card {
  flex: 1;
  border-radius: 12px;
  padding: 28px;
  background: rgba(5, 5, 5, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  min-height: 220px;
}

.offer-card h3 {
  margin: 18px 0 12px;
  font-size: 1.35rem;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.offer-card-dots {
  display: flex;
  gap: 6px;
}

.offer-card-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.offer-card-dots span:nth-child(1) {
  background: #ff5f57;
}

.offer-card-dots span:nth-child(2) {
  background: #febc2e;
}

.offer-card-dots span:nth-child(3) {
  background: #28c840;
}

.section-action {
  margin: 32px auto 0;
  text-align: center;
}

.section-action .cta {
  min-width: 320px;
}

.stats-section {
  margin-top: 70px;
  padding: 0 12px 24px;
}

.stats-card {
  border-radius: 12px;
  padding: 32px;
  background: radial-gradient(circle at 10% 10%, rgba(34, 34, 34, 0.95), rgba(6, 6, 6, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.stats-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.stats-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.stats-card-header h3 {
  margin: 4px 0 0;
  font-size: 1.8rem;
  color: var(--text);
}

.stats-badge {
  padding: 10px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1rem;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.stats-bars {
  display: grid;
  grid-template-columns: repeat(10, minmax(16px, 1fr));
  gap: 14px;
  align-items: end;
  min-height: 170px;
  padding: 18px 22px 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.stats-bar {
  width: 100%;
  border-radius: 12px 12px 0 0;
  margin-bottom: 0;
  background: linear-gradient(180deg, rgba(246, 246, 246, 0.85), rgba(25, 25, 25, 0.95));
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  height: 8%;
  transition: height 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s ease;
  transform-origin: bottom center;
}

.stats-section.chart-visible .stats-bar {
  height: var(--target-height, 40%);
  transform: translateY(0);
}

.stats-section:not(.chart-visible) .stats-bar {
  transform: translateY(10px);
}

@media (max-width: 768px) {
  .offer-section {
    margin-top: 40px;
    padding: 0;
    margin-bottom: 40px;
  }

  .offer-cards {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 0 4vw 18px;
    scroll-padding: 0 4vw;
  }

  .offer-cards::-webkit-scrollbar {
    display: none;
  }

  .offer-cards {
    scrollbar-width: none;
  }

  .offer-card {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
    padding: 18px 20px 22px;
    min-height: auto;
    margin: 0 auto;
  }

  .offer-card h3 {
    font-size: 1.1rem;
  }

  .offer-card p {
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .section-action .cta {
    width: min(100%, 280px);
    min-width: 0;
    padding: 24px 20px;
    margin: 0 auto;
  }

  .faq-section {
    width: calc(100% + 24px);
    max-width: none;
    padding: 0 16px;
    margin: 60px -12px 90px;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-item {
    border-radius: 18px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.95rem;
  }

  .stats-section {
    margin-top: 50px;
    padding: 0 4vw 24px;
  }

  .stats-card {
    border-radius: 16px;
    padding: 24px 20px 28px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .stats-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-card-header h3 {
    font-size: 1.5rem;
  }

  .stats-bars {
    grid-template-columns: repeat(10, minmax(12px, 1fr));
    min-height: 140px;
    gap: 10px;
  }
}

.stories {
  margin: 100px 12px 0;
  padding: 0 12px;
}

.stories-header {
  margin-bottom: 36px;
  text-align: center;
  position: relative;
  padding-bottom: 36px;
}

.stories-divider {
  display: block;
  width: min(98%, 1400px);
  height: 2px;
  margin: 0 auto 48px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.6) 80%, transparent 100%);
  filter: blur(0.7px);
  position: relative;
}

.stories-divider::after {
  content: "";
  position: absolute;
  inset: -10px 25%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0));
  filter: blur(18px);
  opacity: 0.6;
  pointer-events: none;
}

.stories-header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
}

.stories-sparkles {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2px;
  width: clamp(200px, 60%, 420px);
  height: 70px;
  pointer-events: none;
}

.stories-sparkles span,
.offer-heading-sparkles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  opacity: 0;
  animation: sparkleFall 3.5s linear infinite;
}

.stories-sparkles span:nth-child(1),
.offer-heading-sparkles span:nth-child(1) {
  left: 8%;
  animation-delay: 0s;
}

.stories-sparkles span:nth-child(2),
.offer-heading-sparkles span:nth-child(2) {
  left: 25%;
  animation-delay: 0.5s;
}

.stories-sparkles span:nth-child(3),
.offer-heading-sparkles span:nth-child(3) {
  left: 42%;
  animation-delay: 1.1s;
}

.stories-sparkles span:nth-child(4),
.offer-heading-sparkles span:nth-child(4) {
  left: 60%;
  animation-delay: 1.8s;
}

.stories-sparkles span:nth-child(5),
.offer-heading-sparkles span:nth-child(5) {
  left: 76%;
  animation-delay: 2.4s;
}

.stories-sparkles span:nth-child(6),
.offer-heading-sparkles span:nth-child(6) {
  left: 90%;
  animation-delay: 3s;
}

.stories-sparkles span:nth-child(7),
.offer-heading-sparkles span:nth-child(7) {
  left: 16%;
  animation-delay: 1.6s;
}

@keyframes sparkleFall {
  0% {
    transform: translateY(-20px) scale(1);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(70px) scale(0.3);
  opacity: 0;
}

}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  margin-top: 22px;
  gap: 22px;
}

.story-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.55);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-video {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
  overflow: hidden;
}

.story-video iframe,
.story-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.story-text {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
}

.story-author {
  font-size: 0.95rem;
  color: var(--muted);
}

.stories-grid:not(.expanded) .story-card:nth-child(n + 3) {
  display: none;
}

.stories-toggle {
  margin: 28px auto 0;
  display: block;
  padding: 12px 28px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 768px) {
  .stories {
    margin: 40px 0 0;
    padding: 0;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .stories-toggle {
    width: 100%;
  }
}

.comparison {
  margin-top: 80px;
  padding: 0 12px;
}

.comparison h2 {
  text-align: center;
  margin-top: 0;
  font-size: 2rem;
}

.comparison-table-wrapper {
  margin-top: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  display: grid;
  min-width: 540px;
  gap: 0;
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  align-items: stretch;
  padding: 0;
  background: transparent;
}

.comparison-table > div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-header span,
.comparison-row span {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-header span:last-child,
.comparison-row span:last-child {
  border-right: none;
}

.comparison-header {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
}

.comparison-row:nth-child(even) {
  background: rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .comparison {
    padding: 0;
    margin-top: 60px;
  }

  .comparison-table-wrapper {
    margin-top: 18px;
    border-radius: 12px;
  }

  .comparison-table {
    min-width: 500px;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    font-size: 0.85rem;
  }

  .comparison-row span:first-child {
    font-weight: 600;
  }

  .comparison-row span:not(:first-child) {
    text-align: center;
  }
}

.final-cta {
  margin: 90px 0 60px;
  display: flex;
  justify-content: center;
}

.final-card {
  width: min(100%, 960px);
  padding: 40px 24px 44px;
  border-radius: 12px;
  background: rgba(5, 5, 5, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.55),
    12px 12px 0 rgba(0, 0, 0, 0.7);
  position: relative;
}

.final-card-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  justify-content: flex-start;
  position: absolute;
  top: 18px;
  left: 18px;
}

.final-card-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.final-card-dots span:nth-child(1) {
  background: #ff5f57;
}
.final-card-dots span:nth-child(2) {
  background: #febc2e;
}
.final-card-dots span:nth-child(3) {
  background: #28c840;
}

.final-card-body {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.final-card.final-card-active .final-card-body {
  text-align: left;
  align-items: stretch;
}

.final-card-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.final-form {
  width: 100%;
  text-align: left;
  margin-top: 12px;
}

.final-card.final-card-active .final-form {
  margin-top: 0;
}

.final-form form {
  display: flex;
  flex-direction: column;
}

.final-logo {
  width: 86px;
  height: auto;
  margin: 0 auto 10px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.final-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0;
}

.final-text {
  margin: 0;
  color: var(--muted);
}

.wizard-progress {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 20px;
}

.wizard-progress-bar {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffffff, #b3b3b3);
  transition: width 0.3s ease;
}

.wizard-step-label {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 8px;
}

.wizard-question {
  font-size: 1.25rem;
  margin: 0 0 18px;
  font-weight: 600;
}

.wizard-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wizard-field input,
.wizard-field textarea {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.wizard-field input:focus,
.wizard-field textarea:focus {
  outline: none;
  border-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.wizard-field textarea {
  resize: none;
  min-height: 120px;
}

.wizard-hint {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 12px 0 0;
}

.wizard-error {
  color: #ff5f57;
  font-size: 0.9rem;
  margin: 8px 0 0;
}

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 22px;
}

.wizard-actions .cta {
  min-width: 180px;
}

.wizard-actions .cta[hidden] {
  display: none;
}

.wizard-success {
  text-align: center;
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.wizard-success.visible {
  display: flex;
}

.final-card.final-card-completed .wizard-success-title {
  font-size: 2rem;
}

.wizard-success-title {
  font-size: 1.6rem;
  margin: 18px 0 0;
}

.wizard-success-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.final-button {
  margin: 6px auto 0;
  padding: 26px 70px;
  font-size: 1.15rem;
  min-width: 220px;
}

.final-hint {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 768px) {
  .final-cta {
    margin: 60px 0 40px;
  }

  .final-card {
    padding: 28px 20px 38px;
    border-radius: 12px;
  }

  .final-button {
    width: 100%;
  }

  .wizard-actions {
    justify-content: center;
  }
}

.hero-grid {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1600px;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  opacity: 0.3;
  filter: blur(0.3px);
  mask-image:
    radial-gradient(circle at center, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 80%);
}
.offer-intro {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.offer-intro-beam {
  width: min(680px, 90%);
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}
.nav-links-desktop,
.nav-cta {
  justify-content: center;
  justify-self: center;
  width: auto;
}
.offer-line {
  display: block;
  width: min(98%, 1400px);
  height: 2px;
  margin: 0 auto 48px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.6) 80%, transparent 100%);
  filter: blur(0.7px);
  position: relative;
}

.offer-line::after {
  content: "";
  position: absolute;
  inset: -10px 25%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0));
  filter: blur(18px);
  opacity: 0.6;
  pointer-events: none;
}
.faq-section {
  margin: 80px auto 120px;
  max-width: 720px;
  padding: 0 16px;
}

.faq-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 36px;
}

.faq-header h2 {
  margin: 12px 0 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.75);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.faq-toggle {
  font-size: 1.4rem;
  transition: transform 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.faq-toggle::after {
  content: "+";
}

.faq-item.active .faq-toggle::after {
  content: "";
  font-size: 1.4rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  padding-bottom: 18px;
}

.faq-item.active .faq-answer {
  padding-top: 4px;
  padding-bottom: 8px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.footer-logo {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}

.footer-copy {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

@media (max-width: 480px) {
  .stats-bars {
    grid-template-columns: repeat(10, minmax(10px, 1fr));
    gap: 8px;
    padding: 16px 14px 0;
  }

  .stats-card-header {
    align-items: flex-start;
  }

  .stats-card-header h3 {
    font-size: 1.3rem;
  }

  .faq-section {
    width: calc(100% + 32px);
    margin: 50px -16px 70px;
    padding: 0 20px;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .footer-logo {
    width: 70px;
    margin-top: 12px;
  }
}
