/* ============================================
   NUVOLVE MARKETING — VSL LANDING PAGE STYLES
   Dark, premium, conversion-focused design
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0f;
  --bg-card: #111118;
  --bg-card-hover: #16161f;
  --bg-elevated: #1a1a25;
  --text: #f0f0f5;
  --text-muted: #8888a0;
  --text-dim: #5a5a72;
  --accent: #6c5ce7;
  --accent-light: #a29bfe;
  --accent-glow: rgba(108, 92, 231, 0.3);
  --gradient: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 50%, #74b9ff 100%);
  --gradient-text: linear-gradient(135deg, #a29bfe 0%, #74b9ff 100%);
  --success: #00cec9;
  --danger: #ff6b6b;
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(108, 92, 231, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 60px rgba(108, 92, 231, 0.15);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

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

ul {
  list-style: none;
}

/* --- GRADIENT TEXT --- */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(108, 92, 231, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-accent);
}
.btn-outline:hover {
  background: rgba(108, 92, 231, 0.1);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

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

.btn-block {
  width: 100%;
  text-align: center;
}

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--text);
}

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

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-phone:hover {
  color: var(--text);
}
.nav-phone svg {
  flex-shrink: 0;
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-light);
  padding: 8px 20px;
  border: 1px solid var(--border-accent);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: rgba(108, 92, 231, 0.1);
}

/* ============================
   VSL HERO SECTION
   ============================ */
.vsl-hero {
  position: relative;
  padding: 140px 0 80px;
  text-align: center;
  overflow: hidden;
}

.vsl-hero-bg-glow {
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.vsl-hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-light);
  background: rgba(108, 92, 231, 0.1);
  border: 1px solid var(--border-accent);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.vsl-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.vsl-hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.vsl-hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
}

.service-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 50px;
}

/* ============================
   VSL VIDEO PLAYER
   ============================ */
.vsl-player-wrap {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.vsl-player {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg), 0 0 100px rgba(108, 92, 231, 0.08);
  cursor: pointer;
  aspect-ratio: 16 / 9;
}

.vsl-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vsl-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}
.vsl-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.vsl-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
}

/* Video progress bar */
.vsl-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 4;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vsl-player:hover .vsl-progress-bar,
.vsl-player.playing .vsl-progress-bar {
  opacity: 1;
}

.vsl-progress-fill {
  height: 100%;
  background: var(--gradient);
  width: 0%;
  transition: width 0.1s linear;
}

.guarantee-fill {
  background: linear-gradient(135deg, #00cec9 0%, #55efc4 100%);
}

/* ============================
   PHONE MOCKUP
   ============================ */
.phone-mockup {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}

.phone-frame {
  position: relative;
  width: 320px;
  background: #1a1a2e;
  border-radius: 48px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  padding: 14px;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(108, 92, 231, 0.1);
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: #1a1a2e;
  border-radius: 0 0 16px 16px;
  margin: -14px auto 10px;
  position: relative;
  z-index: 2;
}

.phone-screen {
  border-radius: 32px;
  overflow: hidden;
  background: #000;
}

.phone-home-bar {
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  margin: 10px auto 0;
}

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(108, 92, 231, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.phone-glow--guarantee {
  background: radial-gradient(ellipse, rgba(0, 206, 201, 0.1) 0%, transparent 70%);
}

/* Phone mockup guarantee accent */
.phone-mockup--guarantee .phone-frame {
  border-color: rgba(0, 206, 201, 0.12);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(0, 206, 201, 0.06);
}

/* Portrait video inside phone */
.vsl-player.vsl-player--portrait {
  aspect-ratio: 9 / 16;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.vsl-player--portrait .vsl-video {
  object-fit: cover;
}

/* ============================
   SECTIONS GENERAL
   ============================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ============================
   EXPLAINER / PRICING SECTION
   ============================ */
.section-explainer {
  background: linear-gradient(180deg, rgba(15, 15, 22, 1) 0%, var(--bg) 100%);
}

.section-explainer .section-label,
.section-explainer h2,
.section-explainer .section-sub {
  text-align: center;
}

.section-explainer .section-sub {
  margin: 0 auto 48px;
}

.section-explainer .vsl-player-wrap {
  margin-bottom: 80px;
}

/* --- PACKAGES NOTES --- */
.packages-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.packages-note-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(108, 92, 231, 0.04);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 20px;
}

.packages-note-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(108, 92, 231, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
}

.packages-note-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.packages-note-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* --- MASTER PRICING TOGGLE --- */
.pricing-toggle--master {
  margin: 0 auto 8px;
}

.price-savings--master {
  text-align: center;
  margin-bottom: 40px;
}

/* --- 4-TIER DOMINATION PACKAGES GRID --- */
.packages-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 32px;
}
.packages-heading span {
  color: var(--accent);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
}

/* --- PACKAGE MARKET TAG --- */
.package-market {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-light);
  background: rgba(108, 92, 231, 0.08);
  border: 1px solid rgba(108, 92, 231, 0.15);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

/* --- VELOCITY BOOST TAG --- */
.package-boost-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #00cec9;
  background: rgba(0, 206, 201, 0.08);
  border: 1px solid rgba(0, 206, 201, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* --- PACKAGES INFO (below grid) --- */
.packages-info {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.packages-info-item {
  background: rgba(108, 92, 231, 0.06);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 16px 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
}

.packages-info-item strong {
  color: var(--text);
}

.packages-info-photos {
  background: rgba(0, 206, 201, 0.04);
  border-color: rgba(0, 206, 201, 0.15);
}

/* Featured card scale */
.packages-grid .package-featured {
  transform: scale(1.03);
  z-index: 2;
}

.packages-grid .package-featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.package-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.package-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
}

.package-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(108, 92, 231, 0.06) 0%, var(--bg-card) 100%);
  box-shadow: var(--shadow-glow);
}
.package-featured:hover {
  transform: translateY(-4px);
}

.package-solo {
  text-align: center;
}

.package-solo .package-price {
  justify-content: center;
}

.package-solo .package-features li {
  justify-content: center;
  text-align: left;
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.package-tier {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 16px;
}

.price-currency {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-muted);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}

.price-period {
  font-size: 16px;
  color: var(--text-dim);
  margin-left: 4px;
}

/* --- PRICING TOGGLE --- */
.pricing-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px;
  margin-bottom: 16px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pricing-toggle-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.pricing-toggle-btn.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(108, 92, 231, 0.4);
}

.pricing-toggle-btn:hover:not(.active) {
  color: var(--text-muted);
}

.price-savings {
  font-size: 13px;
  color: var(--success);
  font-weight: 600;
  margin-bottom: 20px;
  transition: opacity 0.25s ease;
}

.price-savings.hidden {
  opacity: 0;
}

.package-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.package-features {
  flex: 1;
  margin-bottom: 28px;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features .check {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.package-features li.feature-disabled {
  text-decoration: line-through;
  opacity: 0.4;
}

.package-features li.feature-disabled .check {
  color: var(--text-dim);
}

.package-bonus {
  background: rgba(108, 92, 231, 0.08);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
}

.package-bonus svg {
  display: none;
}

.package-bonus strong {
  color: var(--text);
}

/* --- EXTRA PLANS (Multi-Location + Startups) --- */
.extra-plans {
  max-width: 800px;
  margin: 64px auto 0;
}

.extra-plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.extra-plans-3col {
  grid-template-columns: repeat(3, 1fr);
}

.extra-plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.extra-plan-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.extra-plan-icon {
  width: 64px;
  height: 64px;
  background: rgba(108, 92, 231, 0.08);
  border: 1px solid rgba(108, 92, 231, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  margin: 0 auto 20px;
}

.extra-plan-icon--startup {
  background: rgba(0, 206, 201, 0.08);
  border-color: rgba(0, 206, 201, 0.15);
  color: var(--success);
}

.extra-plan-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.extra-plan-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.extra-plan-startup {
  border-color: rgba(0, 206, 201, 0.12);
  background: rgba(0, 206, 201, 0.02);
}

.extra-plan-startup:hover {
  border-color: rgba(0, 206, 201, 0.3);
}

.extra-plan-cmo {
  border-color: rgba(162, 155, 254, 0.15);
  background: rgba(162, 155, 254, 0.02);
}

.extra-plan-cmo:hover {
  border-color: rgba(162, 155, 254, 0.35);
}

.extra-plan-icon--cmo {
  background: rgba(162, 155, 254, 0.08);
  border-color: rgba(162, 155, 254, 0.2);
  color: var(--accent-light);
}

/* ============================
   GUARANTEE SECTION
   ============================ */
.section-guarantee {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(15, 15, 22, 1) 100%);
}

.guarantee-content {
  text-align: center;
}

.guarantee-content .section-label {
  color: var(--success);
}

.guarantee-sub {
  margin: 0 auto 16px;
}

.guarantee-annual-note {
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
  margin: 0 auto 48px;
  font-style: italic;
  max-width: 600px;
}

.guarantee-content .vsl-player-wrap {
  margin-bottom: 64px;
}

/* Guarantee player accent */
.section-guarantee .vsl-player {
  border-color: rgba(0, 206, 201, 0.15);
  box-shadow: var(--shadow-lg), 0 0 100px rgba(0, 206, 201, 0.06);
}

/* Guarantee Steps */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.guarantee-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.guarantee-step:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.guarantee-step-number {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--success);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.guarantee-step-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 206, 201, 0.08);
  border: 1px solid rgba(0, 206, 201, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  margin: 0 auto 20px;
}

.guarantee-step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.guarantee-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.guarantee-step-highlight {
  border-color: rgba(0, 206, 201, 0.2);
  background: rgba(0, 206, 201, 0.03);
  box-shadow: 0 0 60px rgba(0, 206, 201, 0.06);
}

.guarantee-step-highlight:hover {
  border-color: rgba(0, 206, 201, 0.3);
}

/* ============================
   RESULTS SECTION
   ============================ */
.section-results {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(15, 15, 22, 1) 50%, var(--bg) 100%);
  text-align: center;
}

.section-sub-center {
  margin: 0 auto 48px;
  text-align: center;
}

.results-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
}

.stat-card-accent {
  border-color: rgba(108, 92, 231, 0.2);
  background: rgba(108, 92, 231, 0.04);
  box-shadow: 0 0 60px rgba(108, 92, 231, 0.06);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.stat-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- GOOGLE MAP PACK DEMO --- */
.map-pack-demo {
  max-width: 500px;
  margin: 0 auto 56px;
}

.gmp-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3), 0 0 60px rgba(108, 92, 231, 0.08);
  font-family: 'Roboto', Arial, sans-serif;
}

/* --- Mini map --- */
.gmp-map {
  position: relative;
  height: 160px;
  background: #e8f0e4;
  overflow: hidden;
}

.gmp-map-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #e8f0e4 0%, #d4e4cc 30%, #e0ecda 60%, #eaf2e6 100%);
}

.gmp-road {
  position: absolute;
  background: #fff;
}

.gmp-road-h1 {
  top: 40%;
  left: 0;
  right: 0;
  height: 4px;
  transform: rotate(-3deg);
}

.gmp-road-h2 {
  top: 72%;
  left: 0;
  right: 0;
  height: 3px;
  transform: rotate(2deg);
}

.gmp-road-v1 {
  top: 0;
  bottom: 0;
  left: 30%;
  width: 4px;
  transform: rotate(5deg);
}

.gmp-road-v2 {
  top: 0;
  bottom: 0;
  left: 68%;
  width: 3px;
  transform: rotate(-2deg);
}

.gmp-pin {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
  transform: translate(-50%, -100%);
  transition: transform 0.3s ease;
}

/* --- Listings --- */
.gmp-listings {
  position: relative;
}

.gmp-listing {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #e8eaed;
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  transition: top 0.7s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease;
  cursor: default;
}

.gmp-listing:hover {
  background: #f8f9fa;
}

.gmp-listing:last-child {
  border-bottom: none;
}

.gmp-listing--you {
  background: #f3f0ff;
}

.gmp-listing--you:hover {
  background: #ebe6ff;
}

.gmp-listing-marker {
  width: 24px;
  height: 24px;
  background: #ea4335;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.gmp-listing-body {
  flex: 1;
  min-width: 0;
}

.gmp-listing-name {
  font-size: 14px;
  font-weight: 500;
  color: #1a0dab;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.gmp-listing--you .gmp-listing-name {
  color: #5b2bcc;
  font-weight: 600;
}

.gmp-listing-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 1px;
  line-height: 1.3;
}

.gmp-listing-score {
  font-size: 12px;
  color: #70757a;
  font-weight: 500;
}

.gmp-stars {
  color: #fbbc04;
  font-size: 12px;
  letter-spacing: -1px;
}

.gmp-review-ct {
  font-size: 12px;
  color: #70757a;
}

.gmp-listing-detail {
  font-size: 12px;
  color: #70757a;
  line-height: 1.4;
}

.gmp-listing-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e8eaed, #d2d5d9);
  flex-shrink: 0;
  margin-top: 2px;
}

.gmp-you-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 50px;
  letter-spacing: 0.8px;
}

.gmp-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-top: 1px solid #e8eaed;
  font-size: 12px;
  color: #1a73e8;
  font-weight: 500;
  cursor: pointer;
}

.gmp-footer:hover {
  background: #f8f9fa;
}

.map-pack-caption {
  text-align: center;
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 16px;
  font-style: italic;
}

/* --- Climb animation highlight --- */
@keyframes youGlow {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: inset 0 0 0 2px rgba(108, 92, 231, 0.5), 0 0 20px rgba(108, 92, 231, 0.1); }
}

.gmp-listing--you.climbing {
  animation: youGlow 1.4s ease;
}

/* --- CASE STUDY IMAGE GALLERY --- */
.case-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.case-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.case-gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(108, 92, 231, 0.2);
}

.case-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- LIGHTBOX --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 32px;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 95%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

/* --- MONTHLY REPORT SAMPLES --- */
.report-samples {
  text-align: center;
  margin-bottom: 48px;
}

.report-samples h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.report-samples-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.report-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.report-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.report-gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(108, 92, 231, 0.2);
}

.report-gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.report-gallery-item::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 24px 10px 10px;
  text-align: center;
  letter-spacing: 0.3px;
}

.results-timeline {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.results-timeline h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.results-timeline p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================
   ABOUT SECTION
   ============================ */
.section-about {
  background: var(--bg);
}

.about-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}

.about-text:last-of-type {
  margin-bottom: 32px;
}

.about-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.about-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.about-role {
  font-size: 14px;
  color: var(--text-dim);
}

/* ============================
   TESTIMONIALS SECTION
   ============================ */
.section-testimonials {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(15, 15, 22, 1) 100%);
  text-align: center;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  text-align: left;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
}

.testimonial-stars {
  color: #fbbc04;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.testimonial-biz {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* ============================
   FAQ SECTION
   ============================ */
.section-faq {
  background: linear-gradient(180deg, rgba(15, 15, 22, 1) 0%, var(--bg) 100%);
  text-align: center;
}

.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--accent-light);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-dim);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  padding-bottom: 20px;
}

/* ============================
   CONTACT SECTION
   ============================ */
.section-contact {
  padding: 100px 0;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.contact-info > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: var(--border-accent);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  background: rgba(108, 92, 231, 0.08);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
}

.contact-method-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.contact-method-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.contact-note {
  font-size: 14px;
  color: var(--text-dim);
  font-style: italic;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  transition: border-color 0.2s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-response-note {
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

/* ============================
   CTA SECTION
   ============================ */
.section-cta {
  padding: 80px 0 100px;
}

.cta-box {
  text-align: center;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.08) 0%, rgba(116, 185, 255, 0.05) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  box-shadow: var(--shadow-glow);
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.cta-actions {
  margin-bottom: 24px;
}

.cta-note {
  font-size: 14px;
  color: var(--text-dim);
  font-style: italic;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--accent-light);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}

/* ============================
   ANIMATIONS
   ============================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ============================
   FREE RESOURCES / DOWNLOADS
   ============================ */
.booklet-section {
  padding: 80px 0;
}

.booklet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.booklet-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.booklet-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.booklet-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.booklet-icon {
  width: 64px;
  height: 64px;
  background: rgba(108, 92, 231, 0.08);
  border: 1px solid rgba(108, 92, 231, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent-light);
}

.booklet-icon--scorecard {
  background: rgba(0, 206, 201, 0.08);
  border-color: rgba(0, 206, 201, 0.15);
  color: var(--success);
}

.booklet-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.booklet-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.booklet-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.booklet-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booklet-meta span svg {
  color: var(--accent-light);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .vsl-player-wrap {
    max-width: 100%;
  }

  .packages-heading {
    font-size: 24px;
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  .packages-grid .package-featured {
    transform: none;
  }

  .packages-grid .package-featured:hover {
    transform: translateY(-4px);
  }

  .packages-notes {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .guarantee-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .results-stats {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .case-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .report-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .vsl-hero {
    padding: 120px 0 60px;
  }

  .vsl-hero-sub {
    font-size: 16px;
  }

  .vsl-play-btn svg {
    width: 56px;
    height: 56px;
  }

  .nav-phone {
    font-size: 12px;
  }

  .nav-cta {
    font-size: 12px;
    padding: 6px 14px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .case-gallery {
    grid-template-columns: 1fr;
  }

  .report-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .report-gallery-item img {
    height: 160px;
  }

  .extra-plans-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .booklet-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .booklet-card {
    padding: 32px 24px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 12px 0;
  }

  .nav.scrolled {
    padding: 8px 0;
  }

  .container {
    padding: 0 16px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
    border-radius: 8px;
  }

  .logo-text {
    font-size: 15px;
    letter-spacing: 1.5px;
  }

  .logo {
    gap: 8px;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-phone {
    display: none;
  }

  .nav-cta {
    font-size: 13px;
    padding: 8px 16px;
  }

  .vsl-hero {
    padding: 80px 0 40px;
  }

  .vsl-hero-headline {
    font-size: 28px;
  }

  .vsl-hero-sub {
    font-size: 15px;
  }

  .vsl-play-btn svg {
    width: 48px;
    height: 48px;
  }

  .phone-frame {
    width: 240px;
    border-radius: 36px;
    padding: 10px;
  }

  .phone-notch {
    width: 80px;
    height: 18px;
    margin: -10px auto 8px;
    border-radius: 0 0 12px 12px;
  }

  .phone-screen {
    border-radius: 24px;
  }

  .price-amount {
    font-size: 40px;
  }

  .pricing-toggle-btn {
    font-size: 12px;
    padding: 7px 14px;
  }

  .package-card {
    padding: 28px 20px;
    border-radius: var(--radius-lg);
  }

  .package-tier {
    font-size: 14px;
  }

  .guarantee-step {
    padding: 28px 20px;
  }
}
