/* ============================================================
   KSM MEDIA — Variation 2 · "Dark Edition"
   Theme: Deep Black · Neon Green · Dark Green
   Color Scheme: Matches v1 brand (green #39FF14)
============================================================ */

:root {
  --bg:        #030305;
  --bg-card:   #0A0A10;
  --bg-raised: #0F0F18;
  --purple:    #39FF14;              /* v1 neon green — primary accent  */
  --purple-d:  #2dd10f;              /* darker green */
  --purple-l:  rgba(57,255,20,0.12);
  --cyan:      #2dd10f;              /* dark green — for two-tone gradients */
  --cyan-l:    rgba(57,255,20,0.08);
  --amber:     #39FF14;              /* green CTA (black text on green = v1 style) */
  --amber-l:   rgba(57,255,20,0.08);
  --white:     #FAFAFA;
  --muted:     rgba(250,250,250,0.42);
  --border:    rgba(255,255,255,0.07);
  --border-p:  rgba(57,255,20,0.25);
  --radius:    20px;
  --radius-sm: 12px;
  --bounce:    0.45s cubic-bezier(0.34,1.56,0.64,1);
  --smooth:    0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}
body.loaded { opacity: 1; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── UTILITIES ── */
.v2-container {
  width: 100%; max-width: 1180px;
  margin: 0 auto; padding: 0 28px;
}
.v2-section { padding: 110px 0; position: relative; }
.v2-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--purple);
  margin-bottom: 16px;
}
.v2-label::before {
  content: ''; width: 20px; height: 2px;
  background: var(--purple); border-radius: 1px;
}
.v2-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -0.04em; color: var(--white);
}
.v2-title .v2-accent { color: var(--purple); }
.v2-title .v2-accent-cyan { color: var(--cyan); }
.v2-sub {
  font-size: 16px; color: var(--muted);
  max-width: 540px; line-height: 1.78;
  margin-top: 14px;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ── PROGRESS BAR ── */
#v2-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  z-index: 9998; transition: width 0.1s linear; border-radius: 0 1px 1px 0;
}

/* ── SCROLL TO TOP ── */
#v2-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--bg-raised); color: var(--white);
  border: 1px solid var(--border-p);
  font-size: 18px; font-weight: 700; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}
#v2-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
#v2-to-top:hover { background: var(--purple); border-color: var(--purple); }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.v2-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700; border: none;
  transition: transform var(--bounce), box-shadow 0.25s ease;
  white-space: nowrap; cursor: pointer;
  position: relative; overflow: hidden;
}
.v2-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.45s ease;
  border-radius: inherit; pointer-events: none;
}
.v2-btn:hover::after { transform: translateX(100%); }
.v2-btn:active { transform: scale(0.94) !important; transition-duration: 0.08s !important; }

.v2-btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-d));
  color: #fff;
  box-shadow: 0 4px 24px rgba(57,255,20,0.35);
}
.v2-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(57,255,20,0.5);
}
.v2-btn-amber {
  background: var(--amber); color: #000;
  box-shadow: 0 4px 24px rgba(57,255,20,0.3);
}
.v2-btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(57,255,20,0.45);
}
.v2-btn-ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid var(--border-p);
}
.v2-btn-ghost:hover {
  background: var(--purple-l); border-color: var(--purple);
  transform: translateY(-2px);
}
.v2-btn-lg { padding: 17px 40px; font-size: 16px; border-radius: 14px; }
.v2-btn-full { width: 100%; }
.v2-btn-sm { padding: 9px 20px; font-size: 13px; border-radius: 10px; }

/* ── Ripple ── */
.v2-ripple-wave {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  transform: scale(0); pointer-events: none;
  animation: v2-ripple 0.65s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes v2-ripple { to { transform: scale(4); opacity: 0; } }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.v2-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0);
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.v2-nav.scrolled {
  background: rgba(3,3,5,0.88);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border-bottom-color: var(--border);
}
.v2-nav-inner {
  display: flex; align-items: center; gap: 40px;
}
.v2-logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.v2-logo-img {
  width: 32px; height: 32px; border-radius: 8px; object-fit: contain;
  filter: brightness(0.9);
}
.v2-logo-text {
  font-size: 18px; font-weight: 900; color: var(--white);
  letter-spacing: -0.04em;
}
.v2-logo-accent { color: var(--purple); }
.v2-nav-links {
  display: flex; gap: 32px; margin-left: auto;
}
.v2-nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color 0.2s; position: relative;
}
.v2-nav-links a:hover, .v2-nav-links a.active { color: var(--white); }
.v2-nav-links a.active::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--purple); border-radius: 1px;
}
.v2-nav-right { display: flex; align-items: center; gap: 10px; }
.v2-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.v2-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--smooth);
}
.v2-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v2-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.v2-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* ── Full-screen mobile nav overlay ── */
.v2-mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0 20px; flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 4px;
}
.v2-mobile-menu {
  position: fixed; inset: 0; z-index: 101; /* above nav z-index:100 */
  background: #030305;
  display: flex; flex-direction: column;
  padding: 0 28px 48px;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              opacity 0.35s ease,
              visibility 0s linear 0.4s;
  overflow-y: auto;
}
.v2-mobile-menu::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple) 40%, var(--cyan) 60%, transparent);
  pointer-events: none;
}
.v2-mobile-menu::after {
  content: '';
  position: absolute; bottom: 0; right: -60px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(57,255,20,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.v2-mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              opacity 0.35s ease,
              visibility 0s linear 0s;
}
.v2-mobile-menu ul {
  display: flex; flex-direction: column; gap: 0;
  flex: 1; padding-top: 4px;
}
.v2-mobile-menu ul li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  font-size: 30px; font-weight: 800; letter-spacing: -0.04em;
  color: rgba(250,250,250,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, padding-left 0.2s;
}
.v2-mobile-menu ul li a::after {
  content: '→';
  font-size: 18px; color: var(--purple); font-weight: 400; letter-spacing: 0;
  opacity: 0; transform: translateX(-10px);
  transition: opacity 0.2s, transform 0.2s;
}
.v2-mobile-menu ul li a:hover,
.v2-mobile-menu ul li a:active { color: var(--white); padding-left: 8px; }
.v2-mobile-menu ul li a:hover::after,
.v2-mobile-menu ul li a:active::after { opacity: 1; transform: translateX(0); }
.v2-mobile-cta-wrap { padding-top: 28px; }
.v2-mobile-cta-wrap .v2-btn {
  width: 100%; padding: 17px 24px; font-size: 16px; font-weight: 700;
  border-radius: 14px; justify-content: center;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.v2-hero {
  padding: 140px 0 100px;
  position: relative; overflow: hidden;
  background: var(--bg);
}

/* Ambient orbs */
.v2-hero-orb {
  position: absolute; border-radius: 50%; filter: blur(100px);
  pointer-events: none;
}
.v2-hero-orb--1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(57,255,20,0.18) 0%, transparent 65%);
  top: -180px; right: -120px;
  animation: v2-orb-a 18s ease-in-out infinite;
}
.v2-hero-orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(57,255,20,0.12) 0%, transparent 65%);
  bottom: -100px; left: -80px;
  animation: v2-orb-b 22s ease-in-out infinite;
}
@keyframes v2-orb-a {
  0%, 100% { transform: translate(0,0) scale(1); }
  40% { transform: translate(-60px, 80px) scale(1.1); }
  70% { transform: translate(40px, -40px) scale(0.9); }
}
@keyframes v2-orb-b {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(70px, -60px) scale(1.12); }
}

/* Grid lines background */
.v2-hero-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(57,255,20,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.v2-hero-inner {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "top   right"
    "bottom right";
  column-gap: 56px; row-gap: 20px;
  align-items: start;
  position: relative; z-index: 2;
}
.v2-hero-top {
  grid-area: top;
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 16px;
}
.v2-hero-bottom {
  grid-area: bottom;
  display: flex; flex-direction: column; gap: 16px;
}
.v2-hero-right { grid-area: right; }

/* Available badge */
.v2-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(57,255,20,0.1);
  border: 1px solid rgba(57,255,20,0.25);
  border-radius: 100px; padding: 4px 12px;
  font-size: 12px; font-weight: 500; color: rgba(250,250,250,0.7);
}
.v2-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--purple);
  animation: v2-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes v2-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(57,255,20,0.6); }
  50% { box-shadow: 0 0 0 7px rgba(57,255,20,0); }
}

/* Hero title */
.v2-hero-title {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 900; line-height: 1.02;
  letter-spacing: -0.05em; color: var(--white);
}
.v2-hero-hl {
  background: linear-gradient(120deg, var(--purple) 0%, var(--cyan) 60%, var(--purple) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: v2-hl 4s ease-in-out infinite;
}
@keyframes v2-hl {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}

.v2-hero-sub {
  font-size: 17px; color: var(--muted);
  max-width: 400px; line-height: 1.78;
}
.v2-hero-actions {
  display: flex; gap: 14px; flex-wrap: nowrap; align-items: center;
}

/* Social proof */
.v2-proof {
  display: flex; align-items: center; gap: 12px;
}
.v2-proof-avs { display: flex; }
.v2-proof-av {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -9px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.v2-proof-av:first-child { margin-left: 0; }
.v2-proof-text { font-size: 13px; color: var(--muted); }
.v2-proof-text strong { color: var(--white); }

/* VSL right panel */
.v2-hero-right {
  display: flex; flex-direction: column; gap: 12px;
}
.v2-vsl-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--muted); text-transform: uppercase;
}
.v2-vsl-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  animation: v2-pulse-cyan 1.5s ease-in-out infinite;
}
@keyframes v2-pulse-cyan {
  0%, 100% { box-shadow: 0 0 0 0 rgba(57,255,20,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(57,255,20,0); }
}

.v2-vsl-wrap { width: 100%; }
.v2-vsl-player {
  position: relative; width: 100%;
  aspect-ratio: 16/9; border-radius: 20px; overflow: hidden;
  background: #030503;
  box-shadow:
    0 0 0 1px rgba(57,255,20,0.3),
    0 40px 100px rgba(0,0,0,0.5),
    0 0 80px rgba(57,255,20,0.15);
}
.v2-vsl-thumb {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, #071007 0%, #050508 50%, #030305 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; transition: opacity 0.4s ease;
}
.v2-vsl-thumb.hidden { opacity: 0; pointer-events: none; }
.v2-vsl-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(57,255,20,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}
.v2-vsl-orb {
  position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none;
}
.v2-vsl-orb--1 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(57,255,20,0.25) 0%, transparent 65%);
  top: -100px; right: -80px;
  animation: v2-orb-a 12s ease-in-out infinite;
}
.v2-vsl-orb--2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(57,255,20,0.15) 0%, transparent 65%);
  bottom: -60px; left: -50px;
  animation: v2-orb-b 16s ease-in-out infinite;
}
.v2-vsl-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.v2-vsl-play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-d));
  border: none; cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 0 0 16px rgba(57,255,20,0.12), 0 0 50px rgba(57,255,20,0.4);
  transition: transform var(--bounce), box-shadow 0.3s;
  animation: v2-vsl-pulse 2.5s ease-in-out infinite;
}
.v2-vsl-play-btn svg { width: 28px; height: 28px; margin-left: 4px; }
.v2-vsl-player:hover .v2-vsl-play-btn { transform: scale(1.1); }
@keyframes v2-vsl-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(57,255,20,0.5), 0 0 50px rgba(57,255,20,0.3); }
  50% { box-shadow: 0 0 0 20px rgba(57,255,20,0), 0 0 70px rgba(57,255,20,0.2); }
}
.v2-vsl-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: none; border: none; z-index: 10;
  object-fit: cover; background: #000; cursor: pointer; border-radius: inherit;
}
.v2-vsl-video.active { display: block; }

@media (max-width: 768px) {
  .v2-hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "top"
      "right"
      "bottom";
    text-align: center;
    row-gap: 28px;
    column-gap: 0;
  }
  .v2-hero-top { align-items: center; padding-top: 0; }
  .v2-hero-bottom { align-items: center; }
  .v2-hero-sub { max-width: 100%; }
  .v2-hero-actions { justify-content: center; }
  .v2-proof { justify-content: center; }
  .v2-hero-right { max-width: 560px; margin: 0 auto; width: 100%; }
}

/* ══════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════ */
.v2-stats {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.v2-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; align-items: center;
}
.v2-stat-item {
  text-align: center; padding: 0 40px;
  position: relative;
}
.v2-stat-item::after {
  content: ''; position: absolute; top: 10%; right: 0; bottom: 10%;
  width: 1px; background: var(--border);
}
.v2-stat-item:last-child::after { display: none; }
.v2-stat-num {
  display: block;
  font-size: clamp(36px, 5vw, 56px); font-weight: 900;
  letter-spacing: -0.05em; line-height: 1;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v2-stat-label {
  display: block; margin-top: 6px;
  font-size: 13px; color: var(--muted); font-weight: 500;
}
@media (max-width: 600px) {
  .v2-stats-row { grid-template-columns: 1fr; gap: 32px; }
  .v2-stat-item::after { display: none; }
}

/* ══════════════════════════════════════════
   RESULTS — 9:16 Portrait Cards (v2 style)
══════════════════════════════════════════ */
.v2-results { background: var(--bg); }
.v2-section-header { margin-bottom: 56px; }
.v2-results-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; position: relative; z-index: 1;
}
.v2-result-card {
  aspect-ratio: 9/16; position: relative; overflow: hidden;
  border-radius: 22px; cursor: pointer;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  transition: transform 0.4s var(--bounce), box-shadow 0.4s, border-color 0.3s;
}
.v2-result-card:hover {
  border-color: rgba(57,255,20,0.4);
  box-shadow: 0 24px 70px rgba(57,255,20,0.2);
  transform: translateY(-6px);
}
.v2-result-vid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.6s ease;
}
.v2-result-card:hover .v2-result-vid { transform: scale(1.06); }
.v2-result-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,3,5,0.97) 0%, rgba(3,3,5,0.5) 45%, rgba(3,3,5,0.1) 100%);
}
.v2-result-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; justify-content: space-between; padding: 18px;
}
.v2-result-tag {
  display: inline-flex; background: rgba(57,255,20,0.15);
  border: 1px solid rgba(57,255,20,0.35);
  color: #86efac; font-size: 9px; font-weight: 700;
  padding: 4px 11px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.08em;
  align-self: flex-start;
}
.v2-result-bottom { display: flex; flex-direction: column; gap: 10px; }
.v2-result-chips { display: flex; gap: 7px; flex-wrap: wrap; }
.v2-chip {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(57,255,20,0.3);
  border-radius: 10px; padding: 5px 11px;
  display: flex; flex-direction: column; align-items: center;
}
.v2-chip-num { font-size: 14px; font-weight: 800; color: var(--purple); line-height: 1; }
.v2-chip-label { font-size: 9px; color: rgba(250,250,250,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.v2-result-bottom h3 { font-size: 16px; font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1.2; }
.v2-result-bottom p { font-size: 12px; color: rgba(250,250,250,0.5); line-height: 1.6; }

@media (max-width: 860px) { .v2-results-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .v2-results-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   HOW IT WORKS — Horizontal Timeline
══════════════════════════════════════════ */
.v2-hiw { background: var(--bg-card); }
.v2-hiw-track {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; position: relative; z-index: 1;
  border: 1px solid var(--border); border-radius: 24px; overflow: hidden;
}
.v2-hiw-step {
  padding: 48px 36px;
  position: relative;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.v2-hiw-step:last-child { border-right: none; }
.v2-hiw-step:hover { background: rgba(57,255,20,0.04); }

/* Connector arrow */
.v2-hiw-step:not(:last-child)::after {
  content: '→';
  position: absolute; right: -14px; top: 50%;
  transform: translateY(-50%);
  font-size: 20px; color: var(--border-p);
  z-index: 2;
}

.v2-step-num {
  font-size: 72px; font-weight: 900; letter-spacing: -0.06em;
  color: rgba(57,255,20,0.1); line-height: 1; margin-bottom: 24px;
  font-variant-numeric: tabular-nums;
}
.v2-step-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--purple-l); border: 1px solid var(--border-p);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.v2-step-icon svg { width: 24px; height: 24px; color: var(--purple); }
.v2-step-icon--cyan { background: var(--cyan-l); border-color: rgba(57,255,20,0.25); }
.v2-step-icon--cyan svg { color: var(--cyan); }
.v2-step-icon--amber { background: var(--amber-l); border-color: rgba(57,255,20,0.25); }
.v2-step-icon--amber svg { color: var(--amber); }
.v2-hiw-step h4 { font-size: 20px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 10px; }
.v2-hiw-step p { font-size: 14px; color: var(--muted); line-height: 1.72; }
.v2-step-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.v2-step-tag {
  font-size: 10px; font-weight: 600; color: rgba(250,250,250,0.35);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 100px; letter-spacing: 0.04em;
}

@media (max-width: 860px) {
  .v2-hiw-track { grid-template-columns: 1fr; }
  .v2-hiw-step { border-right: none; border-bottom: 1px solid var(--border); }
  .v2-hiw-step:last-child { border-bottom: none; }
  .v2-hiw-step::after { display: none; }
}

/* ══════════════════════════════════════════
   RECENT WORK — Reel Strip
══════════════════════════════════════════ */
.v2-work { background: var(--bg); }
.v2-reel-wrap {
  margin: 40px 0; padding: 20px 0; overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.v2-reel-strip { display: flex; width: max-content; }
.v2-reel-card {
  width: 188px; margin-right: 16px; flex-shrink: 0;
  cursor: pointer; border-radius: 16px; overflow: hidden;
  background: var(--bg-raised); border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  transition: transform 0.3s var(--bounce), box-shadow 0.3s, border-color 0.3s;
}
.v2-reel-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-p);
  box-shadow: 0 20px 48px rgba(57,255,20,0.2);
}
.v2-reel-thumb {
  aspect-ratio: 9/16; position: relative; overflow: hidden; background: #0A0A0F;
}
/* Long-form card — same size as portrait, video crops to fill */
.v2-reel-card--landscape { width: 188px; }
.v2-reel-card--landscape .v2-reel-thumb { aspect-ratio: 9/16; }
.v2-reel-card--landscape .v2-reel-vid { object-fit: cover; }
.v2-reel-vid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
}
.v2-reel-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--smooth); z-index: 2;
}
.v2-reel-card:hover .v2-reel-overlay { opacity: 1; }
.v2-reel-play {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--purple); display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 0 28px rgba(57,255,20,0.6);
  transition: transform 0.2s var(--bounce);
}
.v2-reel-card:hover .v2-reel-play {
  animation: v2-play-pulse 1.2s ease-in-out infinite;
}
@keyframes v2-play-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(57,255,20,0.7), 0 0 28px rgba(57,255,20,0.6); }
  50%      { box-shadow: 0 0 0 14px rgba(57,255,20,0), 0 0 44px rgba(57,255,20,0.9); }
}
.v2-reel-play svg { width: 16px; height: 16px; margin-left: 2px; }
.v2-reel-chip {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(10px);
  border: 1px solid rgba(57,255,20,0.25);
  color: #86efac; font-size: 9px; font-weight: 700;
  padding: 3px 9px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.07em;
}
.v2-reel-info { padding: 11px 14px 13px; background: var(--bg-card); }
.v2-reel-info h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.v2-reel-info p { font-size: 11px; color: var(--muted); }
.v2-reel-ph-a { background: linear-gradient(135deg, #061a06, #0f2e0f); }
.v2-reel-ph-b { background: linear-gradient(135deg, #061a06, #2dd10f); }
.v2-work-cta { text-align: center; margin-top: 12px; }

/* ══════════════════════════════════════════
   LONG-FORM PORTFOLIO
══════════════════════════════════════════ */
.v2-longform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.v2-longform-card {
  position: relative;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s var(--bounce), box-shadow 0.3s ease, border-color 0.3s ease;
}
.v2-longform-card:hover {
  border-color: rgba(57,255,20,0.28);
  box-shadow: 0 0 40px rgba(57,255,20,0.1), 0 20px 60px rgba(0,0,0,0.5);
}
.v2-longform-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0a0a10;
}
.v2-longform-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.v2-longform-card:hover .v2-longform-thumb img { transform: scale(1.04); }
.v2-longform-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.v2-longform-card:hover .v2-longform-overlay { opacity: 1; }
.v2-longform-card:hover .v2-reel-play { animation: v2-play-pulse 1.2s ease-in-out infinite; }
.v2-reel-chip--long { background: rgba(57,255,20,0.15); color: var(--purple); }
.v2-longform-info {
  padding: 20px 22px 22px;
}
.v2-longform-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  color: var(--purple);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.v2-longform-info h4 {
  font-size: 18px; font-weight: 700;
  color: var(--text); margin: 0 0 6px;
}
.v2-longform-info p {
  font-size: 13px; color: var(--muted); margin: 0; line-height: 1.55;
}
@media (max-width: 640px) {
  .v2-longform-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   TESTIMONIALS — Large Quote Cards
══════════════════════════════════════════ */
.v2-testi { background: var(--bg-card); }
.v2-testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; align-items: start;
}
.v2-testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 22px; padding: 30px 26px;
  display: flex; flex-direction: column; gap: 20px;
  transition: transform 0.3s var(--bounce), border-color 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.v2-testi-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-p);
  box-shadow: 0 20px 56px rgba(57,255,20,0.12);
}
.v2-testi-card--featured {
  background: linear-gradient(150deg, #0d100d, #071007);
  border-color: rgba(57,255,20,0.3);
  box-shadow: 0 0 0 1px rgba(57,255,20,0.15);
}
.v2-testi-card--featured::before {
  content: '';
  position: absolute; top: 0; left: 24px; right: 24px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--cyan), transparent);
}
.v2-testi-card--featured:hover {
  box-shadow: 0 24px 64px rgba(57,255,20,0.22);
}
.v2-testi-stars { font-size: 16px; letter-spacing: 3px; color: var(--purple); }
.v2-testi-card--featured .v2-testi-stars { color: var(--cyan); }
.v2-testi-quote {
  font-size: 14.5px; color: rgba(250,250,250,0.65);
  line-height: 1.78; font-style: italic; flex: 1;
}
.v2-testi-card--featured .v2-testi-quote { color: rgba(250,250,250,0.78); }
.v2-testi-author {
  display: flex; align-items: center; gap: 13px;
  padding-top: 18px; border-top: 1px solid var(--border);
}
.v2-testi-card--featured .v2-testi-author { border-top-color: rgba(57,255,20,0.2); }
.v2-testi-av {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid rgba(57,255,20,0.3);
}
.v2-testi-av--1 { background: linear-gradient(135deg, #39FF14, #2dd10f); }
.v2-testi-av--2 { background: linear-gradient(135deg, #0a0a0a, #1a1a1a); border: 2px solid rgba(57,255,20,0.4); }
.v2-testi-av--3 { background: linear-gradient(135deg, #2dd10f, #1a8a09); }
.v2-testi-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); }
.v2-testi-info span { display: block; font-size: 12px; color: var(--muted); margin-top: 1px; }
@media (max-width: 860px) { .v2-testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .v2-testi-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   SERVICES — Bento Grid
══════════════════════════════════════════ */
.v2-services { background: var(--bg); }
.v2-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; position: relative; z-index: 1;
}
.v2-service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
  transition: transform 0.3s var(--bounce), border-color 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.v2-service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-p);
  box-shadow: 0 20px 56px rgba(57,255,20,0.1);
}
.v2-service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57,255,20,0.3), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.v2-service-card:hover::before { opacity: 1; }
.v2-svc-icon {
  width: 48px; height: 48px; border-radius: 13px;
  background: var(--purple-l); border: 1px solid var(--border-p);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.v2-svc-icon svg { width: 22px; height: 22px; color: var(--purple); }
.v2-svc-icon--cyan { background: var(--cyan-l); border-color: rgba(57,255,20,0.25); }
.v2-svc-icon--cyan svg { color: var(--cyan); }
.v2-service-card h3 {
  font-size: 16px; font-weight: 800; color: var(--white);
  margin-bottom: 10px; letter-spacing: -0.02em;
}
.v2-service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
@media (max-width: 900px) { .v2-services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .v2-services-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   PRICING
══════════════════════════════════════════ */
.v2-pricing { background: var(--bg-card); }
.v2-pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; align-items: stretch; position: relative; z-index: 1;
}
.v2-pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 22px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 22px;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--bounce), border-color 0.3s, box-shadow 0.3s;
}
.v2-pricing-card:hover {
  border-color: var(--border-p);
  box-shadow: 0 20px 56px rgba(57,255,20,0.1);
}
.v2-pricing-card--featured {
  background: linear-gradient(150deg, #0d100d, #071007);
  border-color: rgba(57,255,20,0.4);
  box-shadow: 0 0 0 1px rgba(57,255,20,0.2), 0 8px 40px rgba(57,255,20,0.15);
}
.v2-pricing-card--featured:hover {
  box-shadow: 0 0 0 1px rgba(57,255,20,0.4), 0 24px 64px rgba(57,255,20,0.25);
}
.v2-popular {
  position: absolute; top: 0; right: 28px;
  background: var(--purple); color: #fff;
  font-size: 10px; font-weight: 800;
  padding: 5px 14px 6px;
  border-radius: 0 0 10px 10px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.v2-plan-header { display: flex; flex-direction: column; gap: 10px; }
.v2-plan-header h3 {
  font-size: 20px; font-weight: 800; color: var(--white); letter-spacing: -0.02em;
}
.v2-price { display: flex; align-items: baseline; gap: 4px; }
.v2-price-amount {
  font-size: clamp(32px, 4vw, 44px); font-weight: 900;
  color: var(--white); letter-spacing: -0.04em; line-height: 1;
}
.v2-pricing-card--featured .v2-price-amount {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.v2-price-period { font-size: 15px; color: var(--muted); font-weight: 500; }
.v2-plan-desc { font-size: 13px; color: var(--muted); }
.v2-pricing-features {
  display: flex; flex-direction: column; gap: 11px; flex: 1;
  padding-top: 4px; border-top: 1px solid var(--border);
}
.v2-pricing-card--featured .v2-pricing-features { border-top-color: rgba(57,255,20,0.2); }
.v2-pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(250,250,250,0.65); }
.v2-pf-yes {
  width: 18px; height: 18px; background: var(--purple-l);
  border: 1px solid var(--border-p); border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--purple); font-weight: 800; flex-shrink: 0;
}
.v2-pricing-card--featured .v2-pf-yes { background: rgba(57,255,20,0.18); }
.v2-pf-no {
  width: 18px; height: 18px; background: rgba(255,255,255,0.04);
  border-radius: 5px; display: inline-flex; align-items: center;
  justify-content: center; font-size: 10px; color: var(--muted); flex-shrink: 0;
}
.v2-pricing-note {
  text-align: center; margin-top: 20px;
  font-size: 13px; color: var(--muted); position: relative; z-index: 1;
}
@media (max-width: 900px) { .v2-pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .v2-pricing-grid { grid-template-columns: 1fr; } }
/* Row-2 of 5-plan pricing: centred 2-col on desktop, full-width on mobile */
.v2-pricing-row2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: calc(66.67% - 6px);
  margin: 18px auto 0;
}
@media (max-width: 900px) { .v2-pricing-row2 { max-width: 100%; } }
@media (max-width: 580px) { .v2-pricing-row2 { grid-template-columns: 1fr !important; max-width: 100%; } }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.v2-cta-banner {
  background: linear-gradient(135deg, #030b03 0%, #030305 50%, #060b06 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 90px 0; position: relative; overflow: hidden;
}
.v2-cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(57,255,20,0.1) 0%, transparent 60%);
}
.v2-cta-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}
.v2-cta-left { display: flex; flex-direction: column; gap: 28px; }
.v2-cta-left h2 {
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 900; color: var(--white); letter-spacing: -0.03em; line-height: 1.2;
}
.v2-checklist { display: flex; flex-direction: column; gap: 18px; }
.v2-checklist-item { display: flex; align-items: flex-start; gap: 14px; }
.v2-check-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--purple); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; flex-shrink: 0; margin-top: 2px;
}
.v2-checklist-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); }
.v2-checklist-item span { font-size: 13px; color: var(--muted); line-height: 1.55; }
@media (max-width: 768px) { .v2-cta-inner { grid-template-columns: 1fr; gap: 36px; } }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.v2-about { background: var(--bg); }
.v2-about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.v2-about-img-wrap {
  position: relative; max-width: 420px; margin: 0 auto; width: 100%;
}
.v2-about-glow {
  position: absolute; inset: -30px;
  background: radial-gradient(circle, rgba(57,255,20,0.2) 0%, transparent 65%);
  border-radius: 50%; z-index: 0;
  animation: v2-glow 3s ease-in-out infinite;
}
@keyframes v2-glow { 0%, 100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }
.v2-founder-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top;
  border-radius: 24px; position: relative; z-index: 1;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(57,255,20,0.2);
}
.v2-founder-fallback {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, #030b03, #071007);
  border: 1px solid rgba(57,255,20,0.2);
  border-radius: 24px; display: none; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.v2-founder-fallback span { font-size: 72px; font-weight: 900; color: var(--purple); }
.v2-about-badge {
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  background: rgba(13,13,24,0.9); border: 1px solid var(--border-p);
  border-radius: 14px; padding: 12px 18px;
  display: flex; align-items: center; gap: 11px;
  box-shadow: 0 8px 32px rgba(57,255,20,0.2); z-index: 2; white-space: nowrap;
  backdrop-filter: blur(20px);
}
.v2-about-badge-logo { width: 28px; height: 28px; border-radius: 6px; object-fit: contain; }
.v2-about-badge strong { display: block; font-size: 13px; font-weight: 700; color: var(--white); }
.v2-about-badge span { font-size: 11px; color: var(--muted); }
.v2-about-notif {
  position: absolute; top: -16px; right: -16px;
  background: rgba(13,13,24,0.9); border: 1px solid var(--border-p);
  border-radius: 12px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5); z-index: 3;
  animation: v2-float 3.5s ease-in-out infinite; min-width: 200px;
  backdrop-filter: blur(20px);
}
@keyframes v2-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.v2-about-notif strong { display: block; font-size: 12px; font-weight: 700; color: var(--white); }
.v2-about-notif span { font-size: 11px; color: var(--muted); }
.v2-about-right { display: flex; flex-direction: column; gap: 22px; }
.v2-about-right p { font-size: 15px; color: var(--muted); line-height: 1.82; }
.v2-about-stats { display: flex; gap: 12px; flex-wrap: wrap; }
.v2-astat {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 13px 18px;
  text-align: center; flex: 1; min-width: 76px;
}
.v2-astat-num { display: block; font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -0.03em; }
.v2-astat-label { font-size: 11px; color: var(--muted); font-weight: 500; }
.v2-founder-row {
  display: flex; align-items: center; gap: 13px; padding: 16px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm);
}
.v2-founder-av {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-d));
  flex-shrink: 0; position: relative; overflow: hidden;
}
.v2-founder-av-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center; border-radius: 50%;
}
.v2-founder-row strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); }
.v2-founder-row span { display: block; font-size: 12px; color: var(--muted); margin-bottom: 3px; }
.v2-founder-phone { font-size: 12px; font-weight: 600; color: var(--purple); }
@media (max-width: 768px) {
  .v2-about-inner { grid-template-columns: 1fr; }
  .v2-about-img-wrap { max-width: 300px; margin-bottom: 60px; }
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.v2-contact { background: var(--bg-card); }
.v2-contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.v2-contact-left { display: flex; flex-direction: column; gap: 22px; }
.v2-contact-left p { font-size: 15px; color: var(--muted); line-height: 1.8; }
.v2-contact-details { display: flex; flex-direction: column; gap: 11px; }
.v2-contact-item {
  display: flex; align-items: center; gap: 11px;
  font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.2s;
}
.v2-contact-item:hover { color: var(--white); }
.v2-contact-item svg { color: var(--purple); flex-shrink: 0; }
.v2-social-links { display: flex; gap: 10px; }
.v2-social-link {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: var(--smooth);
}
.v2-social-link:hover {
  border-color: var(--purple); background: var(--purple-l); color: var(--purple);
  transform: translateY(-2px);
}
.v2-social-link svg { width: 17px; height: 17px; }

.v2-expect-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 22px; padding: 36px;
  position: relative; overflow: hidden;
}
.v2-expect-card::before {
  content: '';
  position: absolute; top: 0; left: 24px; right: 24px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--cyan), transparent);
}
.v2-expect-card h3 { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 8px; letter-spacing: -0.02em; }
.v2-expect-intro { font-size: 14px; color: var(--muted); margin-bottom: 26px; }
.v2-expect-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 26px; }
.v2-expect-step { display: flex; align-items: flex-start; gap: 13px; }
.v2-step-emoji { font-size: 19px; flex-shrink: 0; margin-top: 1px; }
.v2-expect-step h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.v2-expect-step p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.v2-expect-note { text-align: center; margin-top: 12px; font-size: 12px; color: var(--muted); }
@media (max-width: 768px) { .v2-contact-inner { grid-template-columns: 1fr; gap: 44px; } }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.v2-footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 48px 0 28px; position: relative; overflow: hidden;
}
.v2-footer::before {
  content: ''; position: absolute; top: -80px; left: -40px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(57,255,20,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.v2-footer-inner { display: flex; flex-direction: column; gap: 32px; position: relative; z-index: 1; }
.v2-footer-brand p { font-size: 13px; color: rgba(250,250,250,0.28); margin-top: 6px; }
.v2-footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.v2-footer-bottom p { font-size: 13px; color: rgba(250,250,250,0.25); }
.v2-footer-socials { display: flex; gap: 10px; }
.v2-footer-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(250,250,250,0.35);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s var(--bounce);
}
.v2-footer-icon:hover {
  background: var(--purple-l); border-color: var(--border-p); color: var(--purple);
  transform: translateY(-3px);
}
.v2-footer-icon svg { width: 17px; height: 17px; }

/* ══════════════════════════════════════════
   ANIMATIONS — Fade in on load & scroll
══════════════════════════════════════════ */
[data-v2-anim] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
[data-v2-anim="slide-left"] { transform: translateX(36px) scale(0.97); }
[data-v2-anim].anim-in { opacity: 1; transform: none; }

.v2-fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.v2-fade-up.visible { opacity: 1; transform: translateY(0); }

/* 3D tilt */
.v2-tilt { transform-style: preserve-3d; will-change: transform; }

/* Cursor dot */
.v2-cursor-dot {
  position: fixed; top: -5px; left: -5px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--purple); pointer-events: none;
  z-index: 9998; mix-blend-mode: difference;
  will-change: transform;
  transition: width 0.2s, height 0.2s;
}
.v2-cursor-dot.hovering { width: 22px; height: 22px; opacity: 0.7; }
@media (hover: none) { .v2-cursor-dot { display: none; } }

/* ── Stagger cards ── */
.v2-result-card, .v2-testi-card, .v2-pricing-card, .v2-service-card {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.3s, border-color 0.3s;
}
.v2-result-card.visible, .v2-testi-card.visible, .v2-pricing-card.visible, .v2-service-card.visible {
  opacity: 1; transform: translateY(0);
}
.v2-result-card.visible:hover, .v2-testi-card.visible:hover,
.v2-pricing-card.visible:hover, .v2-service-card.visible:hover {
  transform: translateY(-6px) !important;
}
.v2-pricing-card--featured.visible:hover { transform: translateY(-8px) scale(1.01) !important; }

/* ── Responsive global ── */
@media (max-width: 768px) {
  .v2-section { padding: 72px 0; }
  .v2-nav-links, .v2-nav-cta { display: none; }
  .v2-hamburger { display: flex; }
  .v2-nav-right { margin-left: auto; }
}
@media (max-width: 480px) {
  .v2-hero-actions { flex-direction: column; align-items: stretch; }
  .v2-hero-actions .v2-btn { justify-content: center; }
}

/* ── YouTube VSL wrapper ── */
.v2-vsl-yt-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(57,255,20,0.15);
  box-shadow: 0 8px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.v2-vsl-yt-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Themed video modal ── */
.v2-vid-modal {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; pointer-events: none;
  transition: background 0.3s ease;
}
.v2-vid-modal.open { background: rgba(0,0,0,0.92); pointer-events: all; }
.v2-vid-modal-box {
  position: relative;
  width: 100%; max-width: 960px;
  border-radius: 18px;
  border: 1px solid rgba(57,255,20,0.35);
  box-shadow: 0 0 80px rgba(57,255,20,0.18), 0 32px 80px rgba(0,0,0,0.7);
  background: #000;
  transform: scale(0.88) translateY(24px); opacity: 0;
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
}
.v2-vid-modal.open .v2-vid-modal-box { transform: scale(1) translateY(0); opacity: 1; }
.v2-vid-modal-frame {
  position: relative; padding-bottom: 56.25%;
  border-radius: 18px; overflow: hidden;
}
.v2-vid-modal-frame iframe,
.v2-vid-modal-frame video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none; border-radius: 18px; display: block;
}
.v2-vid-modal-close {
  position: absolute; top: -14px; right: -14px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--purple); color: #000; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px; font-weight: 900; line-height: 1;
  box-shadow: 0 0 24px rgba(57,255,20,0.55);
  transition: transform 0.25s var(--bounce), box-shadow 0.2s;
}
.v2-vid-modal-close:hover {
  transform: scale(1.18) rotate(90deg);
  box-shadow: 0 0 36px rgba(57,255,20,0.85);
}

/* ── Portrait (9:16) modal variant — for Shorts / vertical videos ── */
.v2-vid-modal-box.v2-modal-portrait {
  max-width: 360px;
}
.v2-modal-portrait .v2-vid-modal-frame {
  padding-bottom: 177.78%; /* 9:16 aspect ratio */
}
@media (max-width: 540px) {
  .v2-vid-modal-box.v2-modal-portrait { max-width: 94vw; }
}

/* ══════════════════════════════════════════
   MOBILE OPTIMIZATIONS
   Comprehensive improvements for phones and
   touch devices
══════════════════════════════════════════ */

/* ── Touch devices: disable heavy GPU / hover effects ── */
@media (hover: none) {
  /* Flatten 3D tilt — expensive on mobile CPUs */
  .v2-tilt { transform-style: flat !important; }

  /* Always show play icon on reel / long-form cards (no :hover state) */
  .v2-reel-overlay {
    opacity: 1 !important;
    background: rgba(0,0,0,0.32) !important;
  }
  .v2-longform-overlay { opacity: 0.7 !important; }

  /* Prevent cards jumping on tap */
  .v2-result-card.visible:hover,
  .v2-testi-card.visible:hover,
  .v2-pricing-card.visible:hover,
  .v2-service-card.visible:hover { transform: none !important; }

  .v2-reel-card:hover,
  .v2-longform-card:hover { transform: none !important; }
}

/* ── Phablet / large phone  ≤ 768px ── */
@media (max-width: 768px) {
  /* Hero: reduce top padding (fixed nav is smaller, less breathing room needed) */
  .v2-hero { padding: 112px 0 72px; }

  /* Stats: tighten side padding (single col kicks in at 600px anyway) */
  .v2-stat-item { padding: 0 22px; }

  /* About notif: keep visible but pull it in so it doesn't clip */
  .v2-about-notif { right: 0; top: -12px; min-width: 180px; }

  /* Scroll-to-top: move in from edge */
  #v2-to-top { bottom: 24px; right: 24px; }
}

/* ── Phone  ≤ 540px ── */
@media (max-width: 540px) {
  /* Tighter container — saves 20px of wasted side space */
  .v2-container { padding: 0 18px; }

  /* Section vertical rhythm */
  .v2-section { padding: 56px 0; }

  /* Hero */
  .v2-hero { padding: 104px 0 60px; }
  .v2-hero-sub { font-size: 15px; }

  /* Stats (single-column at this width) */
  .v2-stats { padding: 38px 0; }
  .v2-stat-item { padding: 0 10px; }

  /* Section headers */
  .v2-section-header { margin-bottom: 30px; }
  .v2-sub { font-size: 15px; }

  /* Floating 'New Win!' badge — clips on narrow screens, hide it */
  .v2-about-notif { display: none; }
  .v2-about-img-wrap { margin-bottom: 44px; }

  /* HIW steps */
  .v2-hiw-step { padding: 30px 22px; }
  .v2-step-num { font-size: 60px; margin-bottom: 18px; }

  /* Card padding reductions */
  .v2-testi-card { padding: 22px 18px; gap: 16px; }
  .v2-service-card { padding: 22px 20px; }
  .v2-pricing-card { padding: 24px 20px; }
  .v2-expect-card { padding: 26px 20px; }

  /* Long-form grid gap */
  .v2-longform-grid { gap: 16px; }

  /* CTA banner */
  .v2-cta-banner { padding: 60px 0; }

  /* Video modal padding (gives more room to the iframe) */
  .v2-vid-modal { padding: 12px; }

  /* Scroll-to-top */
  #v2-to-top { bottom: 16px; right: 16px; width: 42px; height: 42px; }
}

/* ── Small phone  ≤ 400px ── */
@media (max-width: 400px) {
  /* Ultra-tight container */
  .v2-container { padding: 0 14px; }

  /* Section padding */
  .v2-section { padding: 44px 0; }

  /* Hero */
  .v2-hero { padding: 96px 0 52px; }

  /* Allow hero badge + headline to breathe on 360 px screens */
  .v2-hero-title { font-size: clamp(36px, 10vw, 60px); }

  /* Section titles */
  .v2-title { font-size: clamp(24px, 7.5vw, 38px); }

  /* Stats strip */
  .v2-stats { padding: 28px 0; }
  .v2-stats-row { gap: 20px; }

  /* HIW */
  .v2-hiw-step { padding: 24px 16px; }
  .v2-step-num { font-size: 50px; }

  /* Card padding — minimum comfortable on 360px */
  .v2-testi-card { padding: 16px 14px; gap: 14px; }
  .v2-testi-quote { font-size: 13.5px; }
  .v2-service-card { padding: 18px 16px; }
  .v2-pricing-card { padding: 18px 14px; }
  .v2-expect-card { padding: 20px 14px; }

  /* Section headers */
  .v2-section-header { margin-bottom: 22px; }

  /* CTA */
  .v2-cta-banner { padding: 48px 0; }

  /* Scroll-to-top */
  #v2-to-top { bottom: 12px; right: 12px; width: 38px; height: 38px; font-size: 16px; }

  /* Footer bottom row: stack on very small screens */
  .v2-footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* ── Testimonial audio toggle button ── */
.v2-testi-audio-btn {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 5;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.v2-testi-audio-btn:hover {
  background: rgba(57,255,20,0.22);
  border-color: rgba(57,255,20,0.45);
  transform: scale(1.1);
}
.v2-testi-audio-btn svg { width: 14px; height: 14px; flex-shrink: 0; margin-left: 2px; }
