/* ==========================================================================
   GÓMEZ CAPITAL PARTNERS — DESIGN SYSTEM & HIGH-CONVERSION LANDING CSS
   ========================================================================== */

:root {
  --color-bg-dark: #060A12;
  --color-bg-card: rgba(18, 18, 26, 0.7);
  --color-border: rgba(255, 255, 255, 0.08);
  --color-accent-gold: #D4A843;
  --color-accent-gold-lt: #FFE082;
  --color-accent-cyan: #8B5CF6;
  --color-neon-purple: #8B5CF6;
  --color-success: #10B981;
  --color-danger: #EF4444;
  --color-text-light: #EAEAEA;
  --color-muted-light: #8A9BB8;
  
  --gradient-gold: linear-gradient(135deg, #D4A843, #B88E3C);
  --gradient-gold-text: linear-gradient(135deg, #FFE082, #D4A843);
  --gradient-cyan: linear-gradient(135deg, #a78bfa, #8B5CF6);
  --gradient-purple-blue: linear-gradient(135deg, rgba(44, 6, 116, 0.9) 0%, rgba(26, 108, 255, 0.4) 100%);
  
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-section: 90px;
  
  --font-main: 'Inter', sans-serif;
  --font-numbers: 'Space Grotesk', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--color-bg-dark);
}

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

p {
  text-align: center;
}

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

/* ==========================================================================
   CANVAS BACKGROUND & TEXT GRADIENTS
   ========================================================================== */
#hero-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: transparent;
}

.text-gradient-gold {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--color-accent-gold);
}

.text-gradient-cyan {
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--color-accent-cyan);
}

.text-accent-green {
  color: var(--color-success) !important;
}

.text-accent-red {
  color: var(--color-danger) !important;
}

/* Core Scroll Reveal Animations System */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.95);
}

.reveal.active, .reveal-left.active, .reveal-right.active, .reveal-scale.active {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ==========================================================================
   SECTIONS & SECTION BADGES
   ========================================================================== */
section {
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
}

.section-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-accent-gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.section-badge-dark {
  background: rgba(0, 229, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.2);
  color: var(--color-accent-cyan);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
  color: #fff;
}

.section-title-light {
  color: #fff;
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-muted-light);
  max-width: 760px;
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.section-subtitle-light {
  color: var(--color-muted-light);
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.25);
  color: var(--color-accent-gold);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.hero-headline {
  font-size: clamp(34px, 4.8vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: var(--space-lg);
  color: #fff;
  min-height: 2.2em; /* Pre-allocate exactly two lines of height to prevent layout shifts */
  max-width: 1050px;  /* Keep it perfectly structured within two lines */
  margin-left: auto;
  margin-right: auto;
}

/* Typewriter Effect */
.typewriter-cursor {
  display: inline-block;
  color: var(--color-accent-gold);
  animation: typewriter-blink 0.75s step-end infinite;
  font-weight: 200;
  margin-left: 2px;
  line-height: 0.8;
}

@keyframes typewriter-blink {
  from, to { color: transparent }
  50% { color: var(--color-accent-gold) }
}

.hero-subheadline {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--color-muted-light);
  max-width: 860px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
  text-align: justify;
  text-align-last: center;
  -webkit-hyphens: auto;
  hyphens: auto;
}

/* ==========================================================================
   VIDEO EMBED SYSTEM (VSL & TESTIMONIALS)
   ========================================================================== */
.video-wrapper {
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
  border-radius: 16px;
  border: 1px solid rgba(212, 168, 83, 0.3);
  box-shadow: 0 0 40px rgba(212, 168, 83, 0.1);
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background: #0d0d12;
}

/* YouTube IFrame API generates an iframe that replaces the target div —
   position it to fill the padding-bottom container */
.video-wrapper.yt-scroll-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

.video-wrapper-cyan {
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.1);
}

.video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #09090e, #12121e);
  transition: all 0.3s ease;
}

.video-placeholder:hover {
  filter: brightness(1.1);
}

.video-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  z-index: 2;
  padding: var(--space-md);
}

.play-btn {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-bottom: var(--space-md);
}

.play-btn:hover {
  transform: scale(1.1);
}

.video-duration {
  font-size: 13px;
  color: var(--color-muted-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.video-duration-cyan {
  color: var(--color-accent-cyan);
}

/* ==========================================================================
   CTA WRAPPER & DELAYED ACCESS
   ========================================================================== */
.cta-wrapper {
  margin: var(--space-xl) auto;
  max-width: 650px;
}

.cta-hidden {
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: all 0.8s ease;
  display: none !important; /* Hide physically when disabled */
}

.cta-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  display: block !important;
}

.cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: linear-gradient(135deg, #ffd875 0%, #d4a843 50%, #aa7a18 100%);
  color: #060A12;
  text-decoration: none;
  padding: 18px 30px;
  border-radius: 12px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(212, 168, 67, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.cta-btn:hover::before {
  left: 150%;
  transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #ffe596 0%, #e9be58 50%, #c49526 100%);
  box-shadow: 0 15px 35px rgba(212, 168, 67, 0.45), 0 0 15px rgba(212, 168, 67, 0.25);
}

/* Highly Satisfying Premium Click State */
.cta-btn:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 5px 15px rgba(212, 168, 67, 0.3);
  transition: all 0.08s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn-cyan {
  background: var(--color-accent-cyan) !important;
  color: #060A12 !important;
  box-shadow: 0 8px 25px rgba(0, 229, 255, 0.25) !important;
}

.cta-btn-cyan:hover {
  background: #10B981 !important;
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.45), 0 0 15px rgba(16, 185, 129, 0.25) !important;
}

.cta-btn-cyan:active {
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3) !important;
}

.cta-btn-primary {
  background: linear-gradient(135deg, #ffd875 0%, #d4a843 50%, #aa7a18 100%);
  animation: heroCtaPulse 3s infinite alternate;
}

@keyframes heroCtaPulse {
  0% {
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.25), 0 0 0 0 rgba(212, 168, 67, 0.3);
  }
  100% {
    box-shadow: 0 12px 30px rgba(212, 168, 67, 0.45), 0 0 0 10px rgba(212, 168, 67, 0);
  }
}

.cta-icon {
  font-size: 20px;
  margin-bottom: 4px;
  display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.2s ease;
}

.cta-btn:hover .cta-icon {
  transform: scale(1.15) rotate(-5deg);
}

.cta-btn:active .cta-icon {
  transform: scale(0.95);
}

.cta-subtitle {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(6, 10, 18, 0.85);
  margin-top: 4px;
  letter-spacing: 0px;
  text-transform: none;
}


.cta-secure {
  font-size: 11px;
  color: var(--color-muted-light);
  margin-top: 12px;
  letter-spacing: 0.2px;
}

.scroll-indicator {
  margin-top: var(--space-3xl);
  color: var(--color-muted-light);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.scroll-arrow {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* ==========================================================================
   2. AI AMPLIFIER
   ========================================================================== */
#ai-amplifier {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-glow-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent-cyan), transparent);
}

.ai-mockup-showcase {
  max-width: 800px;
  margin: var(--space-2xl) auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 229, 255, 0.1);
  transition: all 0.3s ease;
  background: #0d0d12;
}

.ai-mockup-showcase:hover {
  transform: scale(1.02);
  border-color: var(--color-accent-cyan);
}

.ai-mockup-img {
  width: 100%;
  height: auto;
  display: block;
}

.ai-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.ai-feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: var(--space-xl);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.ai-feature-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.ai-feature-icon {
  margin-bottom: var(--space-lg);
}

.ai-feature-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.ai-feature-desc {
  font-size: 14px;
  color: var(--color-muted-light);
  line-height: 1.6;
  text-align: justify;
  text-align-last: center;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.ai-cta-wrapper {
  margin-top: var(--space-3xl);
  text-align: center;
}

/* ==========================================================================
   3. TRES RUTAS & 5. PRODUCT DIFFERENTIATION
   ========================================================================== */
.product-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  align-items: stretch;
}

.product-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: var(--space-2xl);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.product-card-header {
  margin-bottom: var(--space-xl);
}

.product-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  background: rgba(212, 168, 67, 0.1);
  color: var(--color-accent-gold);
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.product-label-cyan {
  background: rgba(0, 229, 255, 0.1) !important;
  color: var(--color-accent-cyan) !important;
}

.product-card-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.product-price-amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-accent-gold);
  font-family: var(--font-numbers);
}

.product-price-cyan {
  color: var(--color-accent-cyan);
}

.product-price-period {
  font-size: 14px;
  color: var(--color-muted-light);
}

.product-card-mockup {
  width: 100%;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: var(--space-xl);
  background: #09090d;
  transition: all 0.3s ease;
}

.product-card-mockup:hover {
  transform: scale(1.02);
}

.product-card-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

.product-features {
  list-style: none;
  margin-bottom: var(--space-xl);
  flex: 1;
}

.product-features li {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  opacity: 0.9;
}


@media (min-width: 769px) {
  .product-features li {
    min-height: 90px; /* Pixel-perfect desktop horizontal alignment */
  }
}

.product-tagline {
  font-size: 13px;
  font-style: italic;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-lg);
  text-align: center;
  line-height: 1.5;
}

.product-tagline-cyan {
  color: var(--color-accent-cyan) !important;
}

.product-cta {
  width: 100%;
  margin-top: auto;
}

.product-unified-message {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  padding: var(--space-xl);
  border-radius: 16px;
  margin-top: var(--space-3xl);
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.product-unified-message p {
  font-size: 15px;
  line-height: 1.7;
}

/* ==========================================================================
   4. SOCIAL PROOF / TESTIMONIOS
   ========================================================================== */
#social-proof {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: var(--space-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-badge {
  display: inline-block;
  align-self: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.badge-cpa { background: rgba(212, 168, 83, 0.1); color: var(--color-accent-gold); }
.badge-entrepreneur { background: rgba(139, 92, 246, 0.15); color: var(--color-neon-purple); }
.badge-attorney { background: rgba(16, 185, 129, 0.15); color: var(--color-success); }

.testimonial-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.testimonial-title {
  font-size: 12px;
  color: var(--color-muted-light);
  margin-bottom: var(--space-md);
}

.testimonial-quote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-light);
  border-top: 2px solid var(--color-accent-gold);
  padding-top: var(--space-md);
  padding-left: 0;
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  opacity: 0.85;
  font-style: italic;
  text-align: center;
  text-wrap: balance;
}

.social-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  margin-top: var(--space-3xl);
  padding: var(--space-2xl);
  background: rgba(255,255,255,0.01);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--color-accent-gold);
  font-family: var(--font-numbers);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  color: var(--color-muted-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
}

/* ==========================================================================
   6. VALUE STACK & CHECKOUT
   ========================================================================== */
#value-stack {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.value-stack-container {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: var(--space-2xl);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  margin-bottom: var(--space-2xl);
}

.value-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.value-name {
  font-size: 15px;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.value-icon {
  font-size: 18px;
}

.value-price {
  font-size: 15px;
  color: var(--color-muted-light);
  font-family: var(--font-numbers);
}

.original {
  text-decoration: line-through;
  opacity: 0.6;
}

.value-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.value-price-total {
  font-size: 18px;
  font-weight: 700;
}

.value-today {
  text-align: center;
  padding-top: var(--space-xl);
}

.value-today-label {
  font-size: 14px;
  color: var(--color-muted-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.value-today-price {
  font-size: 64px;
  font-weight: 900;
  color: var(--color-accent-gold);
  font-family: var(--font-numbers);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.value-savings {
  font-size: 14px;
  color: var(--color-text-light);
}

.savings-badge {
  background: var(--color-success);
  color: #060A12;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 11px;
  margin-right: var(--space-sm);
  display: inline-block;
}

.checkout-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

.cta-btn-large {
  width: 100%;
  max-width: 600px;
  padding: 24px var(--space-2xl);
}

.cta-btn-secondary-outline {
  background: transparent;
  border: 2px solid var(--color-accent-cyan) !important;
  color: var(--color-accent-cyan) !important;
  box-shadow: none !important;
  width: 100%;
  max-width: 600px;
  padding: 18px var(--space-xl);
}

.cta-btn-secondary-outline:hover {
  background: rgba(0, 229, 255, 0.08) !important;
  transform: translateY(-2px);
}

.guarantee-box {
  background: linear-gradient(135deg, rgba(20, 22, 35, 0.6) 0%, rgba(9, 10, 15, 0.8) 100%);
  border: 1px solid rgba(212, 168, 67, 0.2); /* Gold tinted border */
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  max-width: 850px;
  margin: 40px auto 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.guarantee-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(212, 168, 67, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.guarantee-box:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 168, 67, 0.38);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 25px rgba(212, 168, 67, 0.12);
}

.guarantee-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.guarantee-icon {
  width: 130px;
  height: 130px;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 20px rgba(212, 168, 67, 0.3)); /* Gold coin neon glow */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.guarantee-box:hover .guarantee-icon {
  transform: scale(1.08) rotate(3deg);
}

.guarantee-text h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.5px;
}

.guarantee-text p {
  font-size: 14px;
  color: rgba(232, 234, 240, 0.85);
  line-height: 1.65;
}

/* Guarantee Responsive Stack */
@media (max-width: 768px) {
  .guarantee-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  .guarantee-icon {
    width: 110px;
    height: 110px;
  }
}

/* ==========================================================================
   7. FAQ ACCORDIONS
   ========================================================================== */
#faq {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: var(--space-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-main);
  outline: none;
}

.faq-icon {
  color: var(--color-success);
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 var(--space-lg);
}

.faq-answer p {
  font-size: 14px;
  color: var(--color-muted-light);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

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

/* ==========================================================================
   8. FINAL CTA & FOOTER
   ========================================================================== */
#final-cta {
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  position: relative;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-subtitle {
  font-size: 14px;
  color: var(--color-accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.final-cta-headline {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: var(--space-xl);
}

.final-cta-desc {
  font-size: 16px;
  color: var(--color-muted-light);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

/* Footer */
footer {
  background: #040406;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0 40px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand h4 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-md);
  letter-spacing: 1px;
}

.footer-brand h4 span {
  color: var(--color-accent-gold);
}

.footer-brand p {
  font-size: 13px;
  color: var(--color-muted-light);
  line-height: 1.6;
}

.footer-col h5 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  font-size: 13px;
  color: var(--color-muted-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: var(--space-xl);
  text-align: center;
  font-size: 12px;
  color: var(--color-muted-light);
}

.footer-domains {
  font-size: 11px;
  color: var(--color-accent-gold);
  letter-spacing: 0.5px;
  margin: var(--space-md) 0;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin: 25px 0;
}

.footer-socials a {
  color: rgba(232, 234, 240, 0.7);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-socials a:hover {
  color: var(--color-accent-gold);
  transform: translateY(-1px);
}

.legal-disclaimer {
  font-size: 10px;
  line-height: 1.6;
  color: rgba(138, 155, 184, 0.45);
  text-align: justify;
  margin-top: var(--space-xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   COMPLIANCE UTILITIES & FLOATING BUBBLES
   ========================================================================== */
.micro-disclaimer {
  font-size: 11px;
  color: var(--color-muted-light);
  text-align: center;
  margin-top: 8px;
  line-height: 1.4;
  opacity: 0.85;
}

.legal-disclaimer strong {
  color: #fff;
}

/* ==========================================================================
   RESPONSIVE LAYOUTS
   ========================================================================== */
@media (max-width: 992px) {
  :root {
    --space-section: 70px;
  }
  .product-comparison {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 36px !important;
    letter-spacing: -1px !important;
  }
  .social-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }
  .stat-divider {
    width: 40px;
    height: 1px;
  }
}
