/* ============================================
   LUNOVAL MODERN - GLASSMORPHISM DESIGN
   ============================================ */

/* === ROOT VARIABLES === */
:root {
  /* Colors - Dark theme with vibrant accents */
  --color-bg: #0a0a0f;
  --color-bg-secondary: #131318;
  --color-primary: #667eea;
  --color-secondary: #764ba2;
  --color-accent: #f093fb;
  --color-success: #4ade80;
  --color-warning: #fbbf24;
  --color-danger: #f87171;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-success: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
  
  /* Glass effect */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  --glass-blur: blur(20px);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, sans-serif;
  --font-display: 'Outfit', 'Space Grotesk', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Shadows */
  --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.4);
  --shadow-glow-accent: 0 0 40px rgba(240, 147, 251, 0.4);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;
}

/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* === 3D BACKGROUND CANVAS === */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* === STICKY CTA BAR BOTTOM === */
.sticky-cta-bar-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

.sticky-cta-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.sticky-cta-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.sticky-cta-text i {
  color: var(--color-primary);
  font-size: 1.1rem;
}

.sticky-cta-text strong {
  font-weight: 600;
}

.sticky-logo {
  height: 32px;
  width: auto;
  margin-right: 0.5rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .sticky-cta-text strong {
    display: none;
  }
  
  .sticky-cta-text {
    font-size: 0.85rem;
  }
  
  .btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
}

/* === GLASS MORPHISM === */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37),
              inset 0 1px 1px 0 rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.5),
              var(--shadow-glow);
  transform: translateY(-4px);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

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

/* === UTILITIES === */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  position: relative;
  z-index: 10;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.btn-xl {
  padding: 1.375rem 2.75rem;
  font-size: 1.25rem;
}

.btn-full {
  width: 100%;
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(102, 126, 234, 0.8);
  }
}

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--spacing-md) 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-display);
}

.logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  color: white;
  box-shadow: var(--shadow-glow);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.btn-nav {
  padding: 0.625rem 1.5rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  color: #ffffff !important;
}

.btn-nav::after {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

/* === HERO SECTION === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--spacing-3xl) 0 calc(var(--spacing-3xl) + 80px);
  position: relative;
  overflow: hidden;
}

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

.hero-content-wide {
  max-width: 1100px;
  text-align: center;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.hero-content-extra-wide {
  max-width: 1400px;
  text-align: center;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.hero-logo-container {
  margin-bottom: var(--spacing-sm);
  animation: fadeInDown 0.8s ease-out;
}

.hero-logo {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.4));
}

.hero-title-close {
  margin-top: 0;
}

.hero-cta-reduced-space {
  margin-bottom: var(--spacing-md);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--spacing-lg);
  animation: fadeInDown 0.8s ease-out;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title-large {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 4.2rem);
  font-weight: 800;
  margin-bottom: var(--spacing-lg);
  line-height: 1.3;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-subtitle-large {
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--spacing-xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-trust {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin-bottom: var(--spacing-xl);
  animation: fadeInUp 0.8s ease-out 0.5s both;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-badge i {
  color: var(--color-primary);
  font-size: 1rem;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin-bottom: var(--spacing-2xl);
  animation: fadeInUp 0.8s ease-out 0.6s both;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--spacing-lg);
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
  padding: var(--spacing-lg);
  text-align: center;
  border-radius: var(--radius-lg);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-3xl);
}

.section-badge {
  display: inline-flex;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* === STORY SECTION === */
.story-section {
  padding: var(--spacing-2xl) 0;
  position: relative;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}

.story-card {
  padding: var(--spacing-xl);
  text-align: center;
}

.story-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  font-size: 2rem;
  color: white;
  box-shadow: var(--shadow-glow);
}

.story-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.story-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.story-highlight {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: var(--radius-full);
  color: var(--color-danger);
  font-weight: 600;
  font-size: 0.875rem;
}

.story-quote {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-2xl);
  text-align: center;
  position: relative;
  border-radius: var(--radius-xl);
}

.quote-icon {
  font-size: 4rem;
  color: rgba(102, 126, 234, 0.3);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: var(--spacing-md);
}

.quote-text {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.quote-author {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

/* === METHOD SECTION === */
.method-section {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.05) 100%);
}

.method-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-3xl);
}

.method-step {
  padding: var(--spacing-xl);
  position: relative;
}

.step-number {
  position: absolute;
  top: var(--spacing-xl);
  right: var(--spacing-xl);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--font-display);
}

.step-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  font-size: 1.75rem;
  color: white;
  margin-bottom: var(--spacing-lg);
  box-shadow: var(--shadow-glow);
}

.step-title {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-md);
}

.step-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.step-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.step-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.8);
}

.step-features i {
  color: var(--color-success);
  font-size: 1.125rem;
}

.method-cta {
  text-align: center;
}

.cta-card {
  max-width: 700px;
  margin: 0 auto;
  padding: var(--spacing-2xl);
  text-align: center;
  border-radius: var(--radius-xl);
}

.cta-card h3 {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
}

.cta-card p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-xl);
}

/* === RESULTS SECTION === */
.results-section {
  padding: var(--spacing-3xl) 0;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}

.result-card {
  padding: var(--spacing-xl);
  text-align: center;
}

.result-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  font-size: 1.75rem;
  color: white;
  box-shadow: var(--shadow-glow);
}

.result-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--spacing-sm);
}

.result-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.result-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.result-visual {
  margin-top: var(--spacing-lg);
}

.progress-bar {
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-sm);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 600;
  transition: width 1s ease-out;
}

.progress-fill.active {
  background: var(--gradient-primary);
  color: white;
}

/* === TESTIMONIALS === */
.testimonials {
  margin-top: var(--spacing-3xl);
}

.testimonials-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: var(--spacing-2xl);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
}

.testimonial-card {
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
}

.testimonial-rating {
  color: var(--color-warning);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: var(--spacing-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}

.author-name {
  font-weight: 600;
  font-size: 1.125rem;
}

.author-role {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-results {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.result-badge {
  padding: 0.375rem 0.875rem;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: var(--radius-full);
  color: var(--color-success);
  font-size: 0.875rem;
  font-weight: 600;
}

/* === CALCULATOR === */
.calculator-section {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(180deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
}

.calculator-card {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-2xl);
  text-align: center;
}

.calculator-header-with-mascot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
}

.calculator-title {
  font-size: 2.5rem;
}

.calculator-mascot {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.3));
  animation: float 3s ease-in-out infinite;
}

.calculator-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-2xl);
}

.calculator-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.input-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.input-group input {
  width: 100%;
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: white;
  font-size: 1.125rem;
  text-align: center;
  font-weight: 600;
  transition: all var(--transition-base);
}

.input-group input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.calculator-results {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.calc-result {
  text-align: center;
}

.calc-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--spacing-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.calc-value {
  font-size: 3rem;
  font-weight: 800;
}

.calc-value.current {
  color: rgba(255, 255, 255, 0.6);
}

.calc-value.potential {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.calc-arrow {
  font-size: 2rem;
  color: var(--color-primary);
}

.calculator-gain {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-xl);
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: var(--radius-full);
  color: var(--color-success);
  font-size: 1.25rem;
}

/* === FINAL CTA === */
.final-cta {
  padding: var(--spacing-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--spacing-md);
}

.cta-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-2xl);
}

.cta-benefits {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-2xl);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
}

.benefit-item i {
  color: var(--color-success);
  font-size: 1.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-2xl);
  flex-wrap: wrap;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-xl);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.trust-item i {
  font-size: 1.25rem;
  color: var(--color-primary);
}

/* === FOOTER === */
.footer {
  padding: var(--spacing-3xl) 0 var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--spacing-md);
}

.footer-column h4 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.9);
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: var(--spacing-sm);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-social {
  display: flex;
  gap: var(--spacing-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-3px);
}

/* === MODAL === */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: var(--spacing-2xl);
  animation: fadeInUp 0.3s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all var(--transition-base);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-title {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.modal-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-xl);
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: white;
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--spacing-sm);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero {
    padding-top: calc(80px + var(--spacing-xl));
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .story-grid,
  .results-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .calculator-results {
    flex-direction: column;
  }
  
  .calc-arrow {
    transform: rotate(90deg);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
  
  .cta-benefits {
    flex-direction: column;
    align-items: center;
  }
}

/* === NEW SECTIONS === */

/* Social Proof Section */
.social-proof-section {
  padding: var(--spacing-lg) 0 var(--spacing-2xl);
  position: relative;
}

.social-proof-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-2xl);
}

.social-proof-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* Testimonials Compact */
.testimonials-compact {
  margin-bottom: var(--spacing-2xl);
}

.testimonials-title-compact {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--spacing-lg);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonials-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.testimonial-card-compact {
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
}

.testimonial-text-compact {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-author-compact {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* Guarantee Section */
.guarantee-section {
  margin-bottom: var(--spacing-2xl);
}

.guarantee-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--spacing-lg);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.guarantee-card {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
}

.guarantee-text {
  font-size: 1.15rem;
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.9);
}

.guarantee-list {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

.guarantee-list li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.85);
}

.guarantee-list i {
  color: var(--color-success);
  font-size: 1.25rem;
}

.guarantee-promise {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background: rgba(240, 147, 251, 0.1);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
}

.guarantee-details {
  font-size: 1.05rem;
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.85);
}

.guarantee-conditions {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Proof Numbers */
.proof-numbers {
  text-align: center;
}

.proof-title {
  font-size: 2rem;
  margin-bottom: var(--spacing-lg);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.proof-stat {
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
}

.proof-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.proof-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.proof-cta {
  margin-top: var(--spacing-xl);
}

/* Video Section */
.video-section {
  padding: var(--spacing-2xl) 0;
  position: relative;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

.video-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(10, 10, 15, 0.6) 0%, rgba(102, 126, 234, 0.3) 100%);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-overlay {
  opacity: 1;
}

.play-button {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin-bottom: var(--spacing-md);
  transition: transform 0.3s ease;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.6);
}

.video-wrapper:hover .play-button {
  transform: scale(1.1);
}

.play-button i {
  font-size: 2rem;
  color: white;
  margin-left: 5px;
}

.video-overlay-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.video-header-with-mascot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.video-title {
  font-size: 2.5rem;
  text-align: center;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.video-mascot {
  height: 70px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.3));
  animation: float 3s ease-in-out infinite;
}

/* Calculator & Results Section spacing */
.calculator-section {
  padding: var(--spacing-2xl) 0;
}

.results-section {
  padding: var(--spacing-2xl) 0;
}

.final-cta {
  padding: var(--spacing-2xl) 0;
}

/* Responsive for new sections */
@media (max-width: 768px) {
  .hero-title-large {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .hero-subtitle-large {
    font-size: clamp(1.1rem, 3vw, 1.35rem);
  }
  
  .guarantee-card {
    padding: var(--spacing-lg);
  }
  
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .video-placeholder i {
    font-size: 3.5rem;
  }
  
  .video-placeholder p {
    font-size: 1.25rem;
  }
  
  .testimonials-grid-visual {
    grid-template-columns: 1fr;
  }
  
  .hero-title-large {
    font-size: clamp(2.25rem, 8vw, 3.5rem) !important;
  }
  
  .hero-subtitle-large {
    font-size: clamp(1.1rem, 3vw, 1.4rem) !important;
  }
}

/* === HIGHLIGHT STYLES === */
.highlight {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(240, 147, 251, 0.3) 100%);
  padding: 0.1rem 0.4rem;
  border-radius: 0.25rem;
  font-weight: 600;
}

.highlight-red {
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.6) 0%, rgba(239, 68, 68, 0.6) 100%);
  padding: 0.2rem 0.6rem;
  border-radius: 0.35rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(248, 113, 113, 0.4);
}

.highlight-green {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.6) 0%, rgba(34, 197, 94, 0.6) 100%);
  padding: 0.2rem 0.6rem;
  border-radius: 0.35rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(74, 222, 128, 0.4);
}

.social-proof-text-large {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-weight: 400;
}

.social-proof-text-large strong {
  font-weight: 700;
  color: #ffffff;
}

/* === TESTIMONIALS VISUAL === */
.testimonials-visual {
  margin-bottom: var(--spacing-2xl);
}

.testimonials-title-visual {
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: rgba(255, 255, 255, 0.95);
}

.rating-highlight {
  color: #fbbf24;
  font-weight: 700;
}

.testimonials-grid-visual {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
}

.testimonial-card-visual {
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card-visual:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
}

.testimonial-header {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  align-items: center;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--color-primary);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.testimonial-stars {
  font-size: 0.9rem;
  color: #fbbf24;
}

.testimonial-text-visual {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.85);
}

.testimonial-text-visual strong {
  color: var(--color-primary);
  font-weight: 700;
}

.testimonial-metrics {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.metric-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(102, 126, 234, 0.2);
  border: 1px solid rgba(102, 126, 234, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* === CALCULATOR ENHANCED === */
.calculator-results-enhanced {
  margin-top: var(--spacing-2xl);
}

.calc-comparison {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
  flex-wrap: wrap;
}

.calc-result-enhanced {
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.calc-result-enhanced.current {
  border-color: rgba(248, 113, 113, 0.3);
}

.calc-result-enhanced.potential {
  border-color: rgba(74, 222, 128, 0.5);
  background: rgba(74, 222, 128, 0.05);
}

.calc-label-enhanced {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.calc-value-enhanced {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.calc-result-enhanced.potential .calc-value-enhanced {
  background: var(--gradient-success);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.calc-details {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.calc-vs {
  font-size: 2rem;
  color: var(--color-primary);
}

.calculator-gain-enhanced {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(240, 147, 251, 0.2) 100%);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(102, 126, 234, 0.4);
  margin-bottom: var(--spacing-lg);
}

.calculator-gain-enhanced i {
  font-size: 2.5rem;
  color: var(--color-accent);
}

.gain-content {
  text-align: left;
}

.gain-primary {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.25rem;
}

.gain-primary strong {
  font-size: 1.75rem;
  color: var(--color-accent);
  font-weight: 900;
}

.gain-yearly {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
}

.gain-yearly strong {
  color: var(--color-success);
  font-weight: 700;
}

.calculator-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
}

.benefit-calc {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.benefit-calc i {
  color: var(--color-success);
  font-size: 1.25rem;
}

.calculator-investment {
  text-align: center;
  padding: var(--spacing-lg);
  background: rgba(102, 126, 234, 0.1);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.investment-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.investment-text strong {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.roi-ratio {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.roi-ratio strong {
  color: var(--color-success);
  font-size: 1.5rem;
  font-weight: 900;
}

/* === HIGHLIGHT STRONG === */
.highlight-strong {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.6) 0%, rgba(240, 147, 251, 0.6) 100%);
  padding: 0.2rem 0.6rem;
  border-radius: 0.35rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

/* === GUARANTEE HIGHLIGHT === */
.guarantee-section-highlight {
  margin-bottom: var(--spacing-2xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-text-highlight {
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(102, 126, 234, 0.3);
}

.guarantee-mascot {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.mascot-image {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.guarantee-text-highlight p {
  font-size: 1.35rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.guarantee-text-highlight strong {
  font-weight: 700;
  color: #ffffff;
}

/* === GUARANTEE COMPACT === */
.guarantee-section-compact {
  margin-bottom: var(--spacing-2xl);
}

.guarantee-card-visual {
  max-width: 700px;
  margin: 0 auto;
  padding: var(--spacing-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(240, 147, 251, 0.15) 100%);
  border: 2px solid rgba(102, 126, 234, 0.4);
}

.guarantee-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.guarantee-title-compact {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.95);
}

.guarantee-targets {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.guarantee-target {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  min-width: 150px;
}

.target-icon {
  font-size: 2rem;
}

.target-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.target-text strong {
  font-size: 1.4rem;
  color: var(--color-primary);
  font-weight: 800;
}

.guarantee-or {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
}

.guarantee-promise-compact {
  font-size: 1.35rem;
  color: var(--color-accent);
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(240, 147, 251, 0.15);
  border-radius: var(--radius-md);
}

.guarantee-includes {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  padding: var(--spacing-sm);
}

/* === CALCULATOR COMPACT === */
.calculator-results-compact {
  margin-top: var(--spacing-xl);
}

.calc-comparison-compact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.calc-box {
  padding: var(--spacing-xl) var(--spacing-lg);
  border-radius: var(--radius-lg);
  min-width: 200px;
  text-align: center;
  border: 3px solid;
  transition: all 0.3s ease;
}

.calc-box:hover {
  transform: translateY(-5px);
}

.current-box {
  background: rgba(248, 113, 113, 0.1);
  border-color: rgba(248, 113, 113, 0.5);
}

.success-box {
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.6);
}

.calc-box-label {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.calc-box-value {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.success-box .calc-box-value {
  background: var(--gradient-success);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.calc-arrow-big {
  font-size: 2.5rem;
  color: var(--color-primary);
}

.calc-gain-box {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.gain-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(240, 147, 251, 0.2) 100%);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(102, 126, 234, 0.4);
  min-width: 200px;
}

.gain-badge.yearly {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.2) 0%, rgba(34, 211, 238, 0.2) 100%);
  border-color: rgba(74, 222, 128, 0.5);
}

.gain-label {
  font-size: 0.95rem;
  margin-bottom: var(--spacing-xs);
  color: rgba(255, 255, 255, 0.7);
}

.gain-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-accent);
}

.gain-badge.yearly .gain-amount {
  color: var(--color-success);
}

.calc-roi-footer {
  display: flex;
  justify-content: center;
  gap: var(--spacing-2xl);
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
}

.roi-investment,
.roi-multiplier {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
}

.roi-investment strong {
  color: var(--color-primary);
  font-weight: 700;
}

.roi-multiplier strong {
  color: var(--color-success);
  font-size: 1.75rem;
  font-weight: 900;
}

/* Responsive for compact styles */
@media (max-width: 768px) {
  .calc-comparison-compact {
    flex-direction: column;
  }
  
  .calc-arrow-big {
    transform: rotate(90deg);
  }
  
  .calc-gain-box {
    flex-direction: column;
  }
  
  .guarantee-targets {
    flex-direction: column;
  }
  
  .before-after-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .video-title {
    font-size: 2rem;
  }
}

/* === BEFORE AFTER SECTION === */
.before-after-section {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.03) 50%, transparent 100%);
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.before-column,
.after-column {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.column-header {
  text-align: center;
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
}

.before-header {
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.2) 0%, rgba(239, 68, 68, 0.2) 100%);
  border: 2px solid rgba(248, 113, 113, 0.4);
}

.after-header {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.2) 0%, rgba(34, 197, 94, 0.2) 100%);
  border: 2px solid rgba(74, 222, 128, 0.4);
}

.column-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.column-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

.before-after-card {
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease;
}

.before-after-card:hover {
  transform: translateX(5px);
}

.after-column .before-after-card:hover {
  transform: translateX(-5px);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  font-size: 1.75rem;
}

.card-icon.red {
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.3) 0%, rgba(239, 68, 68, 0.3) 100%);
  color: #f87171;
}

.card-icon.green {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.3) 0%, rgba(34, 197, 94, 0.3) 100%);
  color: #4ade80;
}

.before-after-card h3 {
  font-size: 1.35rem;
  margin-bottom: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.95);
}

.before-after-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.before-after-card strong {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.before-after-cta {
  text-align: center;
  margin-top: var(--spacing-xl);
}

/* Hero title lines */
.hero-line-2,
.hero-line-3 {
  display: inline;
}

/* === CALCULATOR SIMPLIFIED === */
.calculator-section-simple {
  padding: var(--spacing-2xl) 0;
}

.calculator-simple-card {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(102, 126, 234, 0.3);
}

.calculator-simple-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--spacing-lg);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.calculator-simple-inputs {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  justify-content: center;
  flex-wrap: wrap;
}

.calc-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calc-input-wrapper label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  letter-spacing: 0.02em;
}

.calculator-simple-inputs input {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  width: 180px;
  text-align: center;
  transition: all 0.3s ease;
}

.calculator-simple-inputs input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

.calculator-simple-inputs input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Remove number input spinners (arrows) */
.calculator-simple-inputs input[type="number"]::-webkit-inner-spin-button,
.calculator-simple-inputs input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calculator-simple-inputs input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.calculator-simple-result {
  text-align: center;
}

.calculator-simple-result p {
  font-size: 1.35rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
}

.calculator-simple-result strong {
  font-weight: 700;
  color: #ffffff;
}

#calc-current-simple,
#calc-potential-simple,
#calc-gain-simple,
#calc-roi-simple {
  font-weight: 700;
}

@media (max-width: 768px) {
  .calculator-simple-inputs {
    flex-direction: column;
    align-items: stretch;
  }
  
  .calculator-simple-inputs input {
    width: 100%;
  }
  
  .calculator-simple-result p {
    font-size: 1.15rem;
  }
  
  .calc-input-wrapper {
    width: 100%;
  }
  
  .calculator-simple-inputs input {
    width: 100%;
  }
}

/* === TESTIMONIAL CLICKABLE & MODAL === */
.testimonial-clickable {
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-clickable:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
  border-color: rgba(102, 126, 234, 0.5);
}

.testimonial-clickable::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(240, 147, 251, 0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.testimonial-clickable:hover::after {
  opacity: 1;
}

.testimonial-read-more {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.testimonial-clickable:hover .testimonial-read-more {
  gap: 0.75rem;
  color: var(--color-accent);
}

.testimonial-read-more i {
  transition: transform 0.3s ease;
}

.testimonial-clickable:hover .testimonial-read-more i {
  transform: translateX(4px);
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: var(--spacing-lg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

/* Modal Content */
.modal-content {
  position: relative;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  background: rgba(20, 20, 30, 0.95);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

/* Modal Close Button */
.modal-close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(248, 113, 113, 0.3);
  border-color: rgba(248, 113, 113, 0.6);
  color: #ffffff;
  transform: rotate(90deg);
}

/* Modal Header */
.modal-testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-lg);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.modal-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--color-primary);
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.modal-info {
  flex: 1;
}

.modal-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.modal-company {
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.modal-stars {
  font-size: 1.2rem;
}

/* Modal Content */
.modal-testimonial-content {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.8;
}

.modal-testimonial-content p {
  margin-bottom: var(--spacing-md);
}

.modal-testimonial-content p:last-child {
  margin-bottom: 0;
}

.modal-testimonial-content strong {
  color: #ffffff;
  font-weight: 700;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    padding: var(--spacing-lg);
    max-height: 90vh;
  }
  
  .modal-testimonial-header {
    flex-direction: column;
    text-align: center;
  }
  
  .modal-avatar {
    width: 70px;
    height: 70px;
  }
  
  .modal-name {
    font-size: 1.3rem;
  }
  
  .modal-testimonial-content {
    font-size: 1rem;
  }
}

/* === BOOKING CALENDAR MODAL === */
.calendar-wrapper {
  margin: var(--spacing-lg) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.calendar-wrapper iframe {
  display: block;
  width: 100%;
  border: none;
}

/* Modal title with icon */
#demo-modal .modal-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--spacing-sm);
  color: #ffffff;
  font-weight: 700;
}

#demo-modal .modal-title i {
  margin-right: 0.5rem;
  color: var(--color-primary);
  font-size: 1.5rem;
}

#demo-modal .modal-subtitle {
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-lg);
  line-height: 1.5;
}

/* Clean demo modal for calendar */
#demo-modal .modal-content {
  max-width: 750px;
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(15, 15, 25, 0.98);
  backdrop-filter: blur(40px);
  padding: var(--spacing-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

#demo-modal .form-security {
  margin-top: var(--spacing-md);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

#demo-modal .form-security i {
  color: var(--color-primary);
}

/* Responsive calendar */
@media (max-width: 768px) {
  #demo-modal .modal-content {
    max-width: 95%;
    padding: var(--spacing-lg);
  }
  
  .calendar-wrapper iframe {
    min-height: 500px;
  }
  
  #demo-modal .modal-title {
    font-size: 1.4rem;
  }
  
  #demo-modal .modal-subtitle {
    font-size: 0.95rem;
  }
}

/* === GRADIENT LINE DIVIDER === */
.gradient-divider {
  position: relative;
  width: 100%;
  height: 1px;
  margin: var(--spacing-2xl) auto;
  max-width: 80%;
  overflow: hidden;
}

.gradient-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(102, 126, 234, 0.3) 25%,
    rgba(118, 75, 162, 0.5) 50%,
    rgba(240, 147, 251, 0.3) 75%,
    transparent 100%
  );
  animation: gradient-slide 3s ease-in-out infinite;
}

.gradient-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(102, 126, 234, 0.15) 50%,
    transparent 100%
  );
  animation: gradient-pulse 2s ease-in-out infinite;
}

@keyframes gradient-slide {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes gradient-pulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .gradient-divider {
    max-width: 90%;
    margin: var(--spacing-xl) auto;
  }
}
