  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --black: #0a090d;
    --surface: #111017;
    --card: #18161f;
    --border: rgba(255,255,255,0.08);
    --violet: #a78bfa;
    --violet-dark: #7c3aed;
    --violet-glow: rgba(124,58,237,0.18);
    --text: #f0eeff;
    --muted: #9590a8;
    --accent: #c4b5fd;
    /* --font-display: 'Syne', sans-serif; */
    /* --font-body: 'DM Sans', sans-serif; */
    --font-body: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;

  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 5vw;
    background: rgba(10,9,13,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    text-decoration: none;
  }
  .nav-logo span { color: var(--violet); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    color: var(--muted); font-size: 0.875rem; text-decoration: none;
    font-weight: 400; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-cta {
    background: var(--violet-dark); color: #fff;
    padding: 0.55rem 1.4rem; border-radius: 100px;
    font-size: 0.875rem; font-weight: 500; text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    border: none; cursor: pointer;
  }
  .nav-cta:hover { background: var(--violet); transform: translateY(-1px); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 8rem 5vw 5rem;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 20%; left: 50%; transform: translateX(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(124,58,237,0.22) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(167,139,250,0.1);
    border: 1px solid rgba(167,139,250,0.25);
    border-radius: 100px;
    padding: 0.35rem 1rem;
    font-size: 0.8rem; font-weight: 500; color: var(--accent);
    letter-spacing: 0.05em; text-transform: uppercase;
    margin-bottom: 1.75rem;
  }
  .hero-eyebrow::before {
    content: ''; display: block;
    width: 6px; height: 6px; border-radius: 50%;
    background: #9bfa8b; flex-shrink: 0;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4vw, 6rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--text);
    max-width: 900px;
    margin-bottom: 1.5rem;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--violet);
  }
  .hero p {
    color: var(--muted); font-size: 1.15rem; font-weight: 300;
    max-width: 520px; margin: 0 auto 2.5rem;
    line-height: 1.75;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .btn-primary {
    background: var(--violet-dark); color: #fff;
    padding: 0.9rem 2rem; border-radius: 100px;
    font-size: 1rem; font-weight: 500; text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: var(--violet); transform: translateY(-2px); }
  .btn-ghost {
    background: transparent; color: var(--muted);
    padding: 0.9rem 2rem; border-radius: 100px;
    font-size: 1rem; font-weight: 400; text-decoration: none;
    border: 1px solid var(--border);
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

  /* MARQUEE */
  .marquee-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }
  .marquee-label {
    text-align: center; font-size: 0.75rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem;
  }
  .marquee-track {
    display: flex; gap: 3rem; align-items: center;
    width: max-content;
    animation: marquee 22s linear infinite;
  }
  .marquee-track:hover { animation-play-state: paused; }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .marquee-item {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 700;
    color: rgba(255,255,255,0.18);
    letter-spacing: 0.03em;
    white-space: nowrap;
    text-transform: uppercase;
  }
  .marquee-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--violet); flex-shrink: 0;
  }


/* Marquee wrapper */
.wv-brands__outer {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.wv-brands__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: wvBrandsScroll 28s linear infinite;
}
.wv-brands__track:hover { animation-play-state: paused; }

@keyframes wvBrandsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Each brand card */
.wv-brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  width: 120px;
  padding: 1.1rem 1rem;
  background: #18161f;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}
.wv-brand-item:hover {
  border-color: rgba(167,139,250,0.3);
  background: #1f1c29;
}

/* Logo image container */
.wv-brand-item__logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(167,139,250,0.15);
  flex-shrink: 0;
}
.wv-brand-item__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(30%) brightness(1.1);
  transition: filter 0.2s;
}
.wv-brand-item:hover .wv-brand-item__logo img {
  filter: grayscale(0%) brightness(1.2);
}

/* Fallback letter avatar (shown when no image) */
.wv-brand-item__logo .wv-brand-fallback {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #a78bfa;
}

/* Brand name below logo */
.wv-brand-item__name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: #9590a8;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.01em;
}






  /* SECTION COMMONS */
  section { padding: 6rem 5vw; }
  .section-label {
    font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--violet); font-weight: 500; margin-bottom: 1rem;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800; letter-spacing: -0.03em;
    line-height: 1.1; color: var(--text);
    max-width: 700px; margin-bottom: 1rem;
  }
  .section-title em { font-style: normal; color: var(--violet); }
  .section-sub {
    color: var(--muted); font-size: 1rem;
    max-width: 500px; margin-bottom: 3.5rem;
  }

  /* RESULTS GRID */
  .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
  }
  .result-card {
    background: var(--card);
    padding: 1.75rem;
    display: flex; flex-direction: column; gap: 0.75rem;
    transition: background 0.2s;
  }
  .result-card.featured {
    grid-column: span 1;
    background: #100d1a;
    border: 0.5px solid #2a1f40;
  }
  .result-card:hover { background: #1f1c29; }
  .result-stat {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 800;
    color: var(--violet); letter-spacing: -0.03em;
  }
  .result-desc {
    font-size: 0.875rem; color: var(--muted); line-height: 1.5;
  }
  .result-divider {
    width: 24px;
    height: 0.5px;
    background: #2e2e2e;
    margin: 14px 0;
  }
  .result-platform {
    font-size: 0.8rem; font-weight: 500; color: var(--text);
    display: flex; align-items: center; gap: 0.5rem;
  }
  /*.result-platform::before {*/
  /*  content: ''; display: block;*/
  /*  width: 20px; height: 1px; background: var(--violet);*/
  /*}*/

  /* PROCESS */
  .process-list {
    display: flex; flex-direction: column; gap: 0;
    border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  }
  .process-item {
    display: grid; grid-template-columns: 80px 1fr auto;
    align-items: center;
    padding: 2rem 2.5rem;
    border-bottom: 1px solid var(--border);
    gap: 2rem;
    transition: background 0.2s;
  }
  .process-item:last-child { border-bottom: none; }
  .process-item:hover { background: var(--card); }
  .process-num {
    font-family: var(--font-display);
    font-size: 3.5rem; font-weight: 800;
    color: rgba(167,139,250,0.15);
    letter-spacing: -0.04em; line-height: 1;
  }
  .process-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 700; color: var(--text);
    margin-bottom: 0.4rem;
  }
  .process-content p { color: var(--muted); font-size: 0.9rem; }
  .process-tag {
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(167,139,250,0.2);
    color: var(--accent);
    border-radius: 100px;
    padding: 0.3rem 0.9rem;
    font-size: 0.75rem; white-space: nowrap;
  }

  /* PACKAGES */
  .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: start;
  }
  .pkg-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: border-color 0.2s, transform 0.2s;
  }
  .pkg-card:hover { transform: translateY(-4px); }
  .pkg-card.featured {
    border-color: rgba(167,139,250,0.4);
    background: linear-gradient(140deg, #1a1628 0%, #18161f 100%);
    position: relative;
  }
  .featured-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--violet-dark); color: #fff;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 0.3rem 1rem;
    border-radius: 100px;
  }
  .pkg-platform {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 800; color: var(--text);
    margin-bottom: 0.5rem;
  }
  .pkg-tagline { color: var(--muted); font-size: 0.875rem; margin-bottom: 1.75rem; }
  .pkg-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
  .pkg-features li {
    font-size: 0.875rem; color: var(--muted);
    display: flex; align-items: flex-start; gap: 0.6rem;
  }
  .pkg-features li::before {
    content: '';
    display: block; flex-shrink: 0;
    width: 16px; height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' fill='rgba(124,58,237,0.2)'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23a78bfa' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    margin-top: 2px;
  }
  .pkg-cta {
    display: block; width: 100%;
    margin-top: 2rem;
    padding: 0.85rem;
    text-align: center;
    border-radius: 100px;
    font-size: 0.9rem; font-weight: 500;
    text-decoration: none; cursor: pointer;
    transition: all 0.2s;
    border: none;
  }
  .pkg-cta-ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--muted);
  }
  .pkg-cta-ghost:hover { border-color: var(--violet); color: var(--violet); }
  .pkg-cta-solid {
    background: var(--violet-dark); color: #fff;
  }
  .pkg-cta-solid:hover { background: var(--violet); }

  /* TESTIMONIAL */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  .testi-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
  }
  .testi-quote {
    font-size: 0.95rem; color: var(--text); line-height: 1.7;
    margin-bottom: 1.25rem; font-weight: 300; font-style: italic;
  }
  .testi-author { display: flex; align-items: center; gap: 0.75rem; }
  .testi-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--violet-glow);
    border: 1px solid rgba(167,139,250,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700; color: var(--accent);
    font-family: var(--font-display);
    flex-shrink: 0;
  }
  .testi-name { font-size: 0.85rem; font-weight: 500; color: var(--text); }
  .testi-handle { font-size: 0.75rem; color: var(--muted); }
  .video-testimonials-head {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
  .video-testimonials-head .section-label {
    margin-bottom: 0.65rem;
  }
  .video-testimonials-head .section-sub {
    margin-bottom: 0;
    max-width: 520px;
  }
  .video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 0fr));
    gap: 1.5rem;
    align-content: start;
    justify-content: center;
  }
  .video-testi-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
  }
  .video-testi-preview {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(circle at top, rgba(167,139,250,0.2), transparent 55%),
      linear-gradient(180deg, #1b1725 0%, #13111a 100%);
    border-bottom: 1px solid var(--border);
  }
  .video-testi-media {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    border-radius: 12px;
    background: #0b0a10;
  }
  .video-testi-body {
    padding: 1.5rem 1.75rem 1.75rem;
  }
  .video-testi-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
  }
  .video-testi-copy {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }

  /* STRATEGY CTA */
  .strategy-section {
    border-top: 1px solid var(--border);
    display: flex; align-items: center; gap: 3rem; flex-wrap: wrap;
  }
  .strategy-left { flex: 1; min-width: 250px; }
  .strategy-right {
    display: flex; flex-direction: column; gap: 1rem;
    flex-shrink: 0;
  }
  .strategy-img {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--violet-dark), #9333ea);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
    color: #fff; margin-bottom: 1rem;
  }

   /* Email row */
.strat-email {
  display: flex; align-items: center; gap: 0.55rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.strat-email__icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(124,58,237,0.18);
  border: 1px solid rgba(167,139,250,0.25);
  display: flex; align-items: center; justify-content: center;
}
.strat-email__icon svg { display: block; }
.strat-email a {
  font-size: 0.8rem; color: #c4b5fd;
  text-decoration: none; font-family: 'DM Sans', sans-serif;
  transition: color .2s;
  word-break: break-all;
}
.strat-email a:hover { color: #f0eeff; }



  /* FINAL CTA */
  .final-cta {
    text-align: center;
    padding: 8rem 5vw;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(124,58,237,0.25) 0%, transparent 70%);
    pointer-events: none;
  }
  .final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    font-weight: 800; letter-spacing: -0.03em;
    line-height: 1.05; margin-bottom: 1.5rem; color: var(--text);
  }
  .final-cta h2 em { font-style: normal; color: var(--violet); }
  .final-cta p { color: var(--muted); margin-bottom: 2.5rem; font-size: 1rem; }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 5vw;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-logo {
    font-family: var(--font-display); font-size: 1rem;
    font-weight: 800; color: var(--text); text-decoration: none;
  }
  .footer-logo span { color: var(--violet); }
  .footer-links { display: flex; gap: 1.5rem; }
  .footer-links a {
    font-size: 0.8rem; color: var(--muted); text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--text); }
  .footer-copy { font-size: 0.75rem; color: var(--muted); }

  /* DIVIDER */
  .divider { border: none; border-top: 1px solid var(--border); margin: 0; }

  /* STATS ROW */
  .stats-row {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0; border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
    margin-bottom: 5rem;
  }
  .stat-box {
    padding: 2rem 2.5rem;
    border-right: 1px solid var(--border);
  }
  .stat-box:last-child { border-right: none; }
  .stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem; font-weight: 800;
    color: var(--text); letter-spacing: -0.04em; line-height: 1;
    margin-bottom: 0.4rem;
  }
  .stat-num span { color: var(--violet); }
  .stat-label { font-size: 0.8rem; color: var(--muted); }

  /* MOBILE */
  @media (max-width: 640px) {
    .nav-links { display: none; }
    .process-item { grid-template-columns: 50px 1fr; }
    .process-tag { display: none; }
    .stat-box { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-box:last-child { border-bottom: none; }
    .strat-card { width: 100%; }
  }
