/* VAPA.ai - Styled with Sellercore Design System */

/* Local Fonts - DSGVO-konform */
@import url('fonts.css');

/* CSS Variables - Unified Design System (Perpetua-inspired) */
:root {
  /* Primary Colors - Amazon/VAPA Blue */
  --primary: #0284c7;
  --primary-dark: #0369a1;
  --primary-light: #38bdf8;
  --primary-bg: #f0f9ff;

  /* Amazon Dark */
  --amazon-dark: #232f3e;
  --amazon-orange: #ff9900;

  /* Neutrals */
  --bg: #f8fafc;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-subtle: #f1f5f9;
  --bg-card: #ffffff;
  --text: #0f172a;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;

  /* Legacy aliases */
  --accent: #0284c7;
  --accent-dark: #0369a1;
  --cyan: #06b6d4;
  --gradient: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Unified Card Shadows */
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 12px 40px rgba(2, 132, 199, 0.15);

  /* Border Radius */
  --radius: 12px;
  --radius-lg: 16px;
  --card-radius: 16px;
  --radius-xl: 24px;

  /* Unified Section Spacing */
  --section-padding: 100px;
  --section-padding-sm: 60px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

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

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links > a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-links > a:hover {
  color: var(--accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.language-btn:hover {
  background: var(--bg);
  border-color: var(--accent);
}

.lang-flag {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
}

.mobile-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--bg);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
  border-radius: var(--radius-lg);
}

/* VAPA-specific buttons - Sellercore Blue (Solid like Sellercore) */
.btn-primary-vapa {
  background: var(--accent);
  color: white;
}

.btn-primary-vapa:hover {
  background: var(--accent-dark);
}

.btn-outline-vapa,
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-vapa:hover,
.btn-outline:hover {
  background: rgba(2, 132, 199, 0.1);
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--accent);
}

.btn-white:hover {
  background: var(--bg);
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  background: linear-gradient(180deg, #f0f9ff 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero p {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-family: 'Satoshi', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Trust Logos */
.trust-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.trust-section p {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-logos-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.trust-logos-track {
  display: flex;
  animation: marquee 25s linear infinite;
  width: fit-content;
}

.trust-logos-track:hover {
  animation-play-state: paused;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 30px;
  flex-shrink: 0;
}

.trust-logos img {
  height: 40px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s;
}

.trust-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Section Styling - Unified Spacing */
.section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-header h2 .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 20px;
  color: var(--text-primary);
}

.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-icon.sky {
  background: #e0f2fe;
  color: #0284c7;
}

.feature-icon.emerald {
  background: #d1fae5;
  color: #059669;
}

.feature-icon.amber {
  background: #fef3c7;
  color: #d97706;
}

.feature-icon.violet {
  background: #ede9fe;
  color: #7c3aed;
}

.feature-icon.rose {
  background: #ffe4e6;
  color: #e11d48;
}

.feature-icon.cyan {
  background: #cffafe;
  color: #0891b2;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Ad Types Section */
.ad-types {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ad-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ad-type-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.ad-type-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.ad-type-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--gradient);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.ad-type-icon svg {
  width: 32px;
  height: 32px;
}

.ad-type-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.ad-type-card p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--border);
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Satoshi', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 280px;
  margin: 0 auto;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(180deg, var(--bg) 0%, #f0f9ff 100%);
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: #fbbf24;
  color: #fbbf24;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--text);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 18px;
}

.testimonial-info h4 {
  font-size: 16px;
  font-weight: 600;
}

.testimonial-info p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Pricing Section */
.pricing {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  background: var(--bg-card);
  border-color: var(--accent);
  box-shadow: var(--shadow-xl);
  transform: scale(1.02);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.pricing-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.pricing-price {
  font-family: 'Satoshi', sans-serif;
  font-size: 48px;
  font-weight: 700;
}

.pricing-price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
}

.pricing-commission {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
}

.pricing-features li svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .btn {
  width: 100%;
}

/* Marketplaces Section */
.marketplaces {
  text-align: center;
}

.marketplace-flags {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.marketplace-flag {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s;
}

.marketplace-flag:hover {
  transform: scale(1.1);
  border-color: var(--accent);
}

.marketplace-count {
  font-size: 18px;
  color: var(--text-secondary);
}

.marketplace-count strong {
  color: var(--accent);
}

/* CTA Section */
.cta {
  background: var(--gradient);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(32px, 4vw, 44px);
  color: white;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
}

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

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

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Footer */
.footer {
  background: var(--text);
  color: white;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-img {
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: white;
}

.footer-col a {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--cyan);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

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

/* Amazon Partner Badge */
.amazon-partner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 32px;
}

.amazon-partner img {
  height: 32px;
}

.amazon-partner span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .pricing-card.featured {
    transform: none;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps-grid::before {
    display: none;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }

  .section {
    padding: var(--section-padding-sm) 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .ad-types-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    margin-bottom: 24px;
  }
}

/* ========================================
   SCROLL ANIMATIONS (Perpetua-Style)
   ======================================== */

/* Base state for animated elements */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for grids */
[data-animate-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-animate-stagger].visible > *:nth-child(1) { transition-delay: 0.1s; }
[data-animate-stagger].visible > *:nth-child(2) { transition-delay: 0.2s; }
[data-animate-stagger].visible > *:nth-child(3) { transition-delay: 0.3s; }
[data-animate-stagger].visible > *:nth-child(4) { transition-delay: 0.4s; }

[data-animate-stagger].visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Legacy Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================
   VAPA-SPECIFIC STYLES
   ========================================== */

/* Language Popup */
.language-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  z-index: 1001;
  max-width: 320px;
  display: none;
}

.language-popup-content {
  position: relative;
}

.language-popup.active {
  display: block;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.language-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 4px;
  font-size: 24px;
  line-height: 1;
}

.language-popup h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.language-popup p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.language-options {
  display: flex;
  gap: 12px;
}

.language-option {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--text);
}

.language-option:hover {
  border-color: var(--accent);
  background: var(--bg);
}

.language-option img {
  width: 32px;
  height: 24px;
  border-radius: 4px;
  object-fit: cover;
}

/* Language Selector in Nav */
.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}

.language-selector:hover {
  border-color: var(--accent);
}

.language-selector img {
  width: 20px;
  height: 15px;
  border-radius: 2px;
}

/* VAPA Hero - Light Modern Theme (Perpetua-inspired) */
.hero-vapa {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, var(--primary-bg) 100%);
  position: relative;
  overflow: visible;
  min-height: 700px;
}

/* Subtle accent elements */
.hero-vapa::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-vapa::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}


.hero-vapa .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.hero-content {
  color: var(--text-primary);
}

.hero-content h1 {
  font-size: 38px;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
  position: relative;
}

.highlight {
  color: var(--primary);
  font-weight: inherit;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
}

/* ========================================
   HERO MOCKUPS - Animierte Dashboard Cards
   ======================================== */
.hero-mockups {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.mockup {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
}

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

/* Main Dashboard - Center */
.mockup-main {
  z-index: 10;
  width: 420px;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* Stats Card - Top Right */
.mockup-stats {
  z-index: 15;
  width: 180px;
  top: 20px;
  right: 40px;
  box-shadow: none;
}

/* Notification - Top Left */
.mockup-notification {
  z-index: 15;
  width: 200px;
  top: 30px;
  left: 0px;
  box-shadow: none;
}

/* 1-Click Setup Button */
.mockup-button {
  z-index: 16;
  width: 180px;
  top: 120px;
  left: -20px;
  box-shadow: none;
}

/* Chart Widget - Bottom Right */
.mockup-chart {
  z-index: 15;
  width: 200px;
  bottom: 30px;
  right: 40px;
  box-shadow: none;
}

/* AMC Funnel - Bottom Left */
.mockup-funnel {
  z-index: 15;
  width: 180px;
  bottom: 50px;
  left: -40px;
  box-shadow: none;
}

/* Floating Animations */
@keyframes mockupFloat {
  0%, 100% {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(0);
  }
  50% {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-15px);
  }
}

@keyframes mockupFloatAlt {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(1deg);
  }
  50% {
    transform: translateY(-12px) rotate(0deg);
  }
  75% {
    transform: translateY(-6px) rotate(-1deg);
  }
}

/* Entrance Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply entrance animations to mockups */
.mockup {
  opacity: 0;
}

.mockup.animate-in {
  opacity: 1;
}

.mockup-main.animate-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

.mockup-notification.animate-in {
  animation: fadeInLeft 0.7s ease-out 0.3s forwards;
}

.mockup-stats.animate-in {
  animation: fadeInRight 0.7s ease-out 0.5s forwards;
}

.mockup-chart.animate-in {
  animation: fadeInUp 0.7s ease-out 0.7s forwards;
}

.mockup-funnel.animate-in {
  animation: fadeInLeft 0.7s ease-out 0.4s forwards;
}

.mockup-notification-2.animate-in {
  animation: fadeInLeft 0.7s ease-out 0.6s forwards;
}

/* Responsive Mockups */
@media (max-width: 1024px) {
  .hero-mockups {
    height: 380px;
  }
  .mockup-main {
    width: 340px;
  }
  .mockup-stats {
    width: 100px;
    right: auto;
    left: 35%;
  }
  .mockup-notification {
    width: 170px;
    left: -20px;
  }
  .mockup-chart {
    width: 110px;
    right: auto;
    left: 55%;
  }
  .mockup-funnel {
    width: 160px;
    left: -30px;
  }
}

@media (max-width: 768px) {
  .hero-mockups {
    height: 320px;
    margin-top: 40px;
  }
  .mockup-main {
    width: 280px;
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  }
  .mockup-stats,
  .mockup-notification,
  .mockup-funnel {
    display: none;
  }
  .mockup-chart {
    width: 140px;
    right: 20px;
    bottom: 10px;
  }
}


.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-container {
  position: relative;
  z-index: 1;
}

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


.hero-badge-vapa {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.hero-badge-vapa img {
  height: 80px;
  width: auto;
}

.hero-badge-vapa img.partner-badge-small {
  height: 60px;
}

.hero-badge-vapa span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.hero-cta-vapa {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta-vapa .btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Trust Bar - Clean Modern Style */
.trust-bar {
  background: var(--bg-white);
  padding: 48px 0;
  border-bottom: none;
}

.trust-bar p,
.trust-text {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  font-weight: 500;
}

.trust-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logos-grid img {
  height: 36px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s;
}

.trust-logos-grid img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Sponsored Ads Section - Blue Theme */
.sponsored-ads-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.sponsored-ads-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.sponsored-ads-section .section-header h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.sponsored-ads-section .section-header h2 .highlight {
  color: #0284c7;
}

.sponsored-ads-section .section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.sponsored-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sponsored-card {
  background: var(--bg-white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsored-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.sponsored-card-monitor {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 20px;
  position: relative;
}

.sponsored-card-monitor::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 20px;
  width: 8px;
  height: 8px;
  background: #ff5f56;
  border-radius: 50%;
  box-shadow: 14px 0 0 #ffbd2e, 28px 0 0 #27ca40;
}

.sponsored-card-monitor img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 10px;
}

.sponsored-card-content {
  padding: 24px;
}

.sponsored-card-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.sponsored-card-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .sponsored-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .sponsored-cards-grid {
    grid-template-columns: 1fr;
  }

  .sponsored-ads-section .section-header h2 {
    font-size: 32px;
  }
}

/* Auto Insights Section */
.auto-insights {
  padding: 100px 0;
  background: var(--bg);
}

.auto-insights .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.insights-content {
  max-width: 500px;
}

.insights-content .section-label {
  color: #0369a1;
}

.insights-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
}

.insights-content p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.insights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insights-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

.insights-list li svg {
  width: 20px;
  height: 20px;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.insights-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  max-width: 320px;
  width: 100%;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
}

/* Feature Cards - VAPA Style */
.feature-cards-section {
  padding: 100px 0;
  background: white;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card-vapa {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-vapa:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--primary);
}

.feature-icon-vapa {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.feature-icon-vapa svg {
  width: 32px;
  height: 32px;
}

.feature-card-vapa h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.feature-card-vapa p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Amazon Says Section */
.amazon-says {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.amazon-says::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
  border-radius: 50%;
}

.amazon-says::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.05) 0%, rgba(6, 182, 212, 0.03) 100%);
  border-radius: 50%;
}

.amazon-says .container {
  position: relative;
  z-index: 1;
}

.amazon-says .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.amazon-says .section-header .section-label {
  color: #0284c7;
}

.amazon-says .section-header .section-title {
  color: var(--text);
}

.amazon-says-logo {
  background: white;
  padding: 24px 32px;
  border-radius: var(--radius);
}

.amazon-says-logo img {
  max-width: 150px;
}

.amazon-says-content blockquote {
  font-size: 24px;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
  position: relative;
  padding-left: 32px;
}

.amazon-says-content blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 60px;
  color: #0284c7;
  font-family: Georgia, serif;
}

.amazon-says-content cite {
  display: block;
  font-style: normal;
  font-size: 16px;
  color: var(--text-secondary);
}

.amazon-quote-card {
  background: linear-gradient(135deg, #232f3e 0%, #131921 100%);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(35, 47, 62, 0.3);
}

.amazon-quote-card blockquote {
  font-size: 20px;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  position: relative;
}

.amazon-quote-card blockquote::before {
  content: '"';
  position: absolute;
  left: -20px;
  top: -20px;
  font-size: 80px;
  color: #ff9900;
  font-family: Georgia, serif;
  opacity: 0.5;
}

.amazon-logo-large {
  max-width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
}

.amazon-badge-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.amazon-badge-container img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.amazon-quote-card blockquote {
  font-size: 24px;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  padding: 0 32px;
  max-width: 800px;
  margin: 0;
}

.amazon-quote-card blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 60px;
  color: #ff9900;
  font-family: Georgia, serif;
}

.amazon-badge-container {
  margin-top: 16px;
}

.amazon-badge-container img {
  max-width: 150px;
  height: auto;
}

/* Case Study - LG Section */
.case-study {
  padding: 100px 0;
  background: var(--bg);
}

.case-study .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.case-study-logo {
  height: 48px;
  margin-bottom: 24px;
}

.case-study-content {
  max-width: 500px;
}

.case-study-brand {
  margin-bottom: 24px;
}

.case-study-brand img {
  height: 48px;
}

.case-study-content h2,
.case-study-content h3 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
}

.case-study-content p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.case-study-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-stat {
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.case-stat-value {
  font-family: 'Satoshi', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0369a1;
  margin-bottom: 4px;
}

.case-stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.case-study-visual {
  display: flex;
  justify-content: center;
}

.case-study-visual img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* Testimonials Scroll Animation */
.testimonials-scroll {
  padding: 60px 0 40px;
  background: white;
  overflow: hidden;
}

.testimonials-stack {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  height: 380px;
}

.testimonial-single {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.testimonial-single.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 10;
}

.testimonial-single.exit-up {
  opacity: 0;
  transform: translateY(-40px) scale(0.95);
}

.testimonial-single-inner {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 48px;
  box-shadow: var(--card-shadow);
  text-align: center;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}

.testimonial-stars svg {
  width: 24px;
  height: 24px;
}

.testimonial-quote {
  font-size: 20px;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 32px;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 80px;
  color: var(--primary);
  opacity: 0.3;
  position: absolute;
  top: -30px;
  left: -10px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author-single {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar-single {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: var(--shadow-md);
}

.testimonial-author-info {
  text-align: left;
}

.testimonial-author-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.testimonial-author-info p {
  font-size: 14px;
  color: var(--text-secondary);
}

.testimonial-brand-logo {
  height: 32px;
  opacity: 0.7;
  margin-left: auto;
}

/* Progress Dots */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-single-inner {
    padding: 32px 24px;
  }

  .testimonial-quote {
    font-size: 17px;
  }

  .testimonial-author-single {
    flex-wrap: wrap;
    gap: 12px;
  }

  .testimonial-brand-logo {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
    height: 24px;
    object-fit: contain;
  }
}

/* Risk Free Section - Blue Theme */
.risk-free {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--primary-bg) 0%, #e0f2fe 100%);
  text-align: center;
}

.risk-free .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.risk-free .icon svg {
  width: 40px;
  height: 40px;
}

.risk-free h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.risk-free p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
}

.risk-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.risk-stat {
  text-align: center;
}

.risk-stat-value {
  font-family: 'Satoshi', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
}

.risk-stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.risk-features,
.risk-free-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.risk-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.risk-feature svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Marketplaces Section */
.marketplaces-vapa {
  padding: 100px 0;
  background: white;
  text-align: center;
}

.marketplace-flags-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto 40px;
}

.flag-item {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.flag-item:hover {
  transform: scale(1.15);
  border-color: #0369a1;
  box-shadow: var(--shadow-md);
}

.flag-item img {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 2px;
}

.marketplaces-count {
  font-size: 18px;
  color: var(--text-secondary);
}

.marketplaces-count strong {
  color: #0369a1;
}

/* Resources / Blog Section */
.resources-section {
  padding: 100px 0;
  background: var(--bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 24px;
}

.blog-card-tag,
.blog-category {
  display: inline-block;
  padding: 4px 12px;
  background: #0369a115;
  color: #0369a1;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-card-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0369a1;
  transition: gap 0.2s;
}

.blog-card-link:hover {
  gap: 12px;
}

/* CTA with Mascot */
.cta-mascot {
  padding: 100px 0;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-mascot .container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-mascot-content {
  text-align: left;
}

.cta-mascot-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: white;
  margin-bottom: 16px;
}

.cta-mascot-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 500px;
}

.cta-mascot-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.cta-text {
  max-width: 600px;
}

.cta-text h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: white;
  margin-bottom: 16px;
}

.cta-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.pointer-img {
  position: absolute;
  bottom: -20px;
  right: -40px;
  width: 100px;
  animation: bounce 2s ease-in-out infinite;
}

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

.mascot-image {
  max-width: 250px;
  animation: float 4s ease-in-out infinite;
}

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

/* VAPA Pricing Cards */
.pricing-vapa {
  padding: 100px 0;
  background: white;
}

.pricing-grid-vapa {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card-vapa {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 40px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card-vapa:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.pricing-card-vapa.featured {
  background: var(--bg-white);
  border-color: var(--primary);
  border-width: 2px;
  transform: scale(1.03);
  box-shadow: var(--card-shadow-hover);
}

.pricing-card-vapa .pricing-badge,
.pricing-badge-vapa {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

.pricing-card-vapa .pricing-header,
.pricing-header-vapa {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.pricing-card-vapa .pricing-name,
.pricing-name-vapa {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card-vapa .pricing-desc,
.pricing-desc-vapa {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.pricing-card-vapa .pricing-price,
.pricing-price-vapa {
  font-family: 'Satoshi', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #0369a1;
}

.pricing-card-vapa .pricing-price span,
.pricing-price-vapa span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
}

.pricing-card-vapa .pricing-commission,
.pricing-commission-vapa {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.pricing-card-vapa .pricing-features,
.pricing-features-vapa {
  list-style: none;
  margin-bottom: 32px;
  padding: 0;
}

.pricing-card-vapa .pricing-features li,
.pricing-features-vapa li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
}

.pricing-card-vapa .pricing-features li svg,
.pricing-features-vapa li svg {
  width: 20px;
  height: 20px;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card-vapa .btn {
  width: 100%;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

.pricing-card-vapa .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Final CTA */
.final-cta {
  padding: 80px 0;
  background: var(--bg);
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .btn {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

.final-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-cta-mascot {
  max-width: 200px;
  height: auto;
  margin-bottom: 24px;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.final-cta-buttons .btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Footer VAPA */
.footer-vapa {
  background: #1a1a2e;
  color: white;
  padding: 60px 0 30px;
}

.footer-grid-vapa {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer-brand-vapa {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-vapa p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-logo-vapa {
  height: 40px;
  width: auto;
}

.footer-col-vapa {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-vapa h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
}

.footer-col-vapa a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col-vapa a:hover {
  color: #0284c7;
}

.footer-vapa-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer-vapa .logo-img {
  height: 36px;
  filter: brightness(0) invert(1);
}

.footer-social {
  display: flex;
  gap: 16px;
}

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

.footer-social a:hover {
  background: #0369a1;
  transform: translateY(-2px);
}

.footer-social img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.footer-bottom-vapa {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #0284c7;
}

/* Responsive - VAPA Specific */
@media (max-width: 1024px) {
  .hero-vapa .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    order: 1;
  }

  .hero-woman {
    max-width: 300px;
  }

  .hero-badge-vapa {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 24px;
    display: inline-flex;
  }

  .auto-insights .container,
  .case-study .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .insights-content,
  .case-study-content {
    max-width: 100%;
  }

  .amazon-says .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .amazon-says-logo {
    display: inline-block;
    margin-bottom: 24px;
  }

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

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

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .cta-mascot .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-mascot-content {
    text-align: center;
  }

  .cta-mascot-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-grid-vapa {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-card-vapa.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .hero-vapa {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .feature-cards-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid-vapa {
    grid-template-columns: 1fr;
  }

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

  .footer-vapa-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-grid-vapa {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand-vapa {
    grid-column: 1 / -1;
  }

  .footer-bottom-vapa {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .language-popup {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}

/* ========================================
   WHY VAPA SECTION - Unified Design
   ======================================== */

.why-vapa {
  padding: var(--section-padding) 0 40px;
  background: var(--bg-white);
  text-align: center;
  position: relative;
}

.why-vapa-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 60px;
  background: repeating-linear-gradient(
    to bottom,
    var(--primary) 0,
    var(--primary) 8px,
    transparent 8px,
    transparent 16px
  );
  animation: dash-flow-vertical 1s linear infinite;
}

@keyframes dash-flow-vertical {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 16px;
  }
}

.why-vapa-line-bottom {
  width: 2px;
  height: 180px;
  margin: 40px auto -180px;
  position: relative;
  z-index: 10;
  background: repeating-linear-gradient(
    to bottom,
    var(--primary) 0,
    var(--primary) 8px,
    transparent 8px,
    transparent 16px
  );
  animation: dash-flow-vertical 1s linear infinite;
}

.why-vapa-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.why-vapa-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 8px 16px;
  background: rgba(2, 132, 199, 0.1);
  border-radius: 50px;
}

.why-vapa-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text);
}

.why-vapa-title .highlight {
  background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-vapa-subtitle {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .why-vapa {
    padding: 60px 0 30px;
  }

  .why-vapa-title br {
    display: none;
  }
}

/* ========================================
   STATS SHOWCASE SECTION (BidX-Style)
   ======================================== */

.stats-showcase {
  padding: 60px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.stats-showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  height: 650px;
}

/* Animierte Verbindungslinien */
.stats-connector-lines {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.connector-line {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  stroke-dasharray: 8 6;
  stroke-linecap: round;
  opacity: 0.3;
  animation: dash-flow 2s linear infinite;
}

.line-before {
  animation-delay: 0s;
  animation-direction: normal;
}

.line-after {
  animation-delay: 0.2s;
}

.line-left {
  animation-delay: 0.4s;
}

.line-center {
  animation-delay: 0.6s;
}

.line-right {
  animation-delay: 0.8s;
}

@keyframes dash-flow {
  0% {
    stroke-dashoffset: 28;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* Vorher/Nachher Comparison Mockups */
.comparison-mockup {
  position: absolute;
  top: 40px;
  background: white;
  border-radius: 12px;
  padding: 16px 20px;
  width: 200px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border: 1px solid #e2e8f0;
  z-index: 8;
}

.mockup-before {
  left: 80px;
}

.mockup-after {
  right: 80px;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.mockup-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.badge-before {
  background: #fef2f2;
  color: #dc2626;
}

.badge-after {
  background: #f0fdf4;
  color: #16a34a;
}

.mockup-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.mockup-metrics {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-metric {
  display: flex;
  align-items: center;
  gap: 8px;
}

.metric-label {
  font-size: 0.75rem;
  color: #64748b;
  width: 65px;
}

.metric-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.metric-trend {
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: auto;
}

.metric-bad .metric-value {
  color: #dc2626;
}

.metric-bad .metric-trend {
  color: #dc2626;
}

.trend-down {
  color: #dc2626;
}

.metric-good .metric-value {
  color: #16a34a;
}

.metric-good .metric-trend {
  color: #16a34a;
}

.trend-up {
  color: #16a34a;
}

/* Zentrales Logo mit Animation */
.stats-center-logo {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  z-index: 10;
}

.logo-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  z-index: 5;
  border: 3px solid #e2e8f0;
}

.logo-inner img {
  width: 60px;
  height: auto;
}

.logo-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: pulse-ring 3s ease-out infinite;
}

.logo-pulse-ring.delay-1 {
  animation-delay: 1s;
}

.logo-pulse-ring.delay-2 {
  animation-delay: 2s;
}

@keyframes pulse-ring {
  0% {
    width: 100px;
    height: 100px;
    opacity: 0.6;
  }
  100% {
    width: 180px;
    height: 180px;
    opacity: 0;
  }
}

/* Statistik-Karten - Unified Design */
.stats-card {
  position: absolute;
  background: var(--bg-white);
  border-radius: var(--card-radius);
  padding: 28px 24px;
  width: 320px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  z-index: 5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.stats-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 0 0 var(--card-radius) var(--card-radius);
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

/* Karte Links */
.stats-card-left {
  left: 40px;
  top: 320px;
}

/* Karte Mitte (unten) */
.stats-card-center {
  left: 50%;
  transform: translateX(-50%);
  top: 380px;
}

.stats-card-center:hover {
  transform: translateX(-50%) translateY(-4px);
}

/* Karte Rechts */
.stats-card-right {
  right: 40px;
  top: 320px;
}

.stats-card-label {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 8px;
}

.stats-card-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.stats-card-value-icon {
  width: 56px;
  height: 56px;
  margin: 8px 0;
}

.stats-card-value-icon svg {
  width: 100%;
  height: 100%;
  color: var(--accent);
}

.stats-unit {
  font-size: 1.8rem;
  color: var(--accent);
}

.stats-card-subtitle {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 12px;
  font-weight: 500;
}

.stats-card-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Stats Showcase Responsive */
@media (max-width: 1200px) {
  .comparison-mockup {
    width: 170px;
    padding: 12px 14px;
  }

  .mockup-before {
    left: 20px;
  }

  .mockup-after {
    right: 20px;
  }

  .metric-label {
    width: 55px;
  }
}

@media (max-width: 1100px) {
  .stats-showcase-container {
    height: auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stats-connector-lines {
    display: none;
  }

  .comparison-mockup {
    display: none;
  }

  .stats-center-logo {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 40px;
  }

  .stats-card {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100%;
    max-width: 400px;
    margin-bottom: 24px;
  }

  .stats-card-center {
    transform: none !important;
  }

  .stats-card:hover {
    transform: translateY(-5px) !important;
  }
}

@media (max-width: 768px) {
  .stats-showcase {
    padding: 40px 0 60px;
  }

  .stats-card {
    padding: 24px 20px;
  }

  .stats-card-value {
    font-size: 2.5rem;
  }

  .stats-unit {
    font-size: 1.5rem;
  }
}

/* ========================================
   REDESIGNED SECTIONS - Lower Sections
   ======================================== */

/* ============================================
   1. TESTIMONIALS SECTION - 2x2 Grid Layout
   ============================================ */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--primary-bg) 100%);
}

.testimonials-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-card-new {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 40px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.testimonial-card-new:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-card-new blockquote {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 28px;
  font-style: normal;
}

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

.testimonial-avatar-new {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-info-new {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-info-new strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.testimonial-info-new span {
  font-size: 14px;
  color: var(--text-secondary);
}

.company-logo-new {
  height: 32px;
  width: auto;
  margin-left: auto;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s;
}

.testimonial-card-new:hover .company-logo-new {
  opacity: 1;
  filter: grayscale(0%);
}

@media (max-width: 900px) {
  .testimonials-grid-new {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-card-new {
    padding: 32px;
  }

  .testimonial-card-new blockquote {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .testimonial-card-new {
    padding: 24px;
  }

  .testimonial-card-new blockquote {
    font-size: 15px;
  }

  .testimonial-avatar-new {
    width: 48px;
    height: 48px;
  }
}

/* ============================================
   2. RISK-FREE SECTION - Blue Theme
   ============================================ */
.risk-free {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--primary-bg) 0%, #e0f2fe 100%);
  text-align: center;
}

.risk-free .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.risk-free .icon svg {
  width: 40px;
  height: 40px;
}

.risk-free h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.risk-free p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
}

.risk-features,
.risk-free-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.risk-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.risk-feature svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ============================================
   3. MARKETPLACES SECTION - Pill Buttons
   ============================================ */
.marketplace-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

.marketplace-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  color: var(--text);
  transition: all 0.2s;
  cursor: default;
}

.marketplace-pill:hover {
  border-color: var(--primary);
  box-shadow: var(--card-shadow);
  transform: translateY(-2px);
}

.marketplace-pill img {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
}

.marketplace-pill span {
  font-weight: 500;
}

@media (max-width: 640px) {
  .marketplace-pill {
    padding: 8px 12px;
    font-size: 13px;
  }

  .marketplace-pill img {
    width: 20px;
    height: 14px;
  }
}

/* ============================================
   4. CTA SECTION - Dashboard Mockup
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cta-text {
  max-width: 500px;
}

.cta-text h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-text p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-mockup-container {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.cta-mockup-main {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

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

.cta-mockup-floating {
  position: absolute;
  z-index: 5;
  animation: ctaFloat 4s ease-in-out infinite;
}

.cta-mockup-stats {
  top: -20px;
  right: -40px;
  width: 140px;
}

.cta-mockup-chart {
  bottom: -20px;
  left: -40px;
  width: 160px;
  animation-delay: 2s;
}

.cta-mockup-floating img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

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

@media (max-width: 1024px) {
  .cta-content-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .cta-text {
    max-width: 100%;
    margin: 0 auto;
  }

  .cta-mockup-container {
    max-width: 350px;
    margin: 0 auto;
  }

  .cta-mockup-stats {
    right: -20px;
    width: 100px;
  }

  .cta-mockup-chart {
    left: -20px;
    width: 120px;
  }
}

@media (max-width: 640px) {
  .cta-mockup-floating {
    display: none;
  }
}

/* ============================================
   5. FINAL CTA - Icon instead of Mascot
   ============================================ */
.final-cta-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-cta-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

/* ============================================
   6. FOOTER - Sellercore Style (Light)
   ============================================ */
.footer-new {
  background: var(--bg-white);
  color: var(--text);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-grid-new {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-new {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-new {
  height: 32px;
  width: auto;
}

.footer-brand-new p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 280px;
}

.footer-social-new {
  display: flex;
  gap: 12px;
}

.footer-social-new a {
  width: 36px;
  height: 36px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.footer-social-new a:hover {
  background: var(--primary);
}

.footer-social-new a:hover img {
  filter: brightness(0) invert(1);
}

.footer-social-new img {
  width: 18px;
  height: 18px;
  opacity: 0.7;
  transition: all 0.2s;
}

.footer-col-new {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-new h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  color: var(--text);
}

.footer-col-new a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col-new a:hover {
  color: var(--primary);
}

.footer-bottom-new {
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer-bottom-new p {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
}

@media (max-width: 1024px) {
  .footer-grid-new {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-new {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-grid-new {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .footer-brand-new {
    align-items: center;
  }

  .footer-brand-new p {
    text-align: center;
    max-width: 100%;
  }

  .footer-social-new {
    justify-content: center;
  }

  .footer-col-new {
    align-items: center;
  }
}

/* ========================================
   PREMIUM UI/UX UPGRADE - NEW FEATURES
   ======================================== */

/* ========================================
   1. SCROLL PROGRESS INDICATOR
   ======================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--cyan) 100%);
  z-index: 10000;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(2, 132, 199, 0.5);
}

/* ========================================
   2. STICKY CTA BAR
   ======================================== */
.sticky-cta {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.visible {
  bottom: 0;
}

.sticky-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.sticky-cta-badge {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #166534;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

.sticky-cta-btn {
  padding: 10px 24px;
  font-size: 14px;
}

@media (max-width: 640px) {
  .sticky-cta-text {
    display: none;
  }

  .sticky-cta-inner {
    justify-content: space-between;
  }
}

/* ========================================
   3. HERO SOCIAL PROOF STATS
   ======================================== */
.hero-proof-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.proof-value {
  font-family: 'Satoshi', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.proof-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

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

@media (max-width: 640px) {
  .hero-proof-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .proof-stat {
    align-items: center;
    text-align: center;
  }

  .proof-value {
    font-size: 24px;
  }

  .proof-divider {
    display: none;
  }
}

/* ========================================
   4. NAVBAR SCROLL STATE
   ======================================== */
.navbar {
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .nav-inner {
  height: 56px;
}

.navbar.scrolled .logo-img {
  height: 28px;
}

/* Nav link underline animation */
.nav-links > a {
  position: relative;
  overflow: hidden;
}

.nav-links > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.nav-links > a:hover::after {
  transform: translateX(0);
}

/* ========================================
   5. ENHANCED HOVER EFFECTS
   ======================================== */

/* Cards - Bigger lift + subtle glow */
.feature-card-vapa:hover,
.testimonial-card-new:hover,
.blog-card:hover,
.sponsored-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(2, 132, 199, 0.15), 0 0 0 1px var(--primary);
}

/* Feature icons - Scale + Rotation on card hover */
.feature-card-vapa:hover .feature-icon-vapa {
  transform: scale(1.1) rotate(5deg);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon-vapa {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Button ripple effect */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* ========================================
   6. GRADIENT ORBS BACKGROUND
   ======================================== */
.hero-vapa {
  position: relative;
}

.hero-vapa::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatOrb 20s ease-in-out infinite;
  pointer-events: none;
}

.hero-vapa::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatOrb 25s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes floatOrb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-10px, 20px) scale(0.95);
  }
  75% {
    transform: translate(-30px, -10px) scale(1.02);
  }
}

/* CTA Section gradient orbs */
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatOrb 15s ease-in-out infinite;
  pointer-events: none;
}

/* ========================================
   7. TESTIMONIAL QUOTE ICON
   ======================================== */
.testimonial-card-new {
  position: relative;
  overflow: hidden;
}

.testimonial-quote-icon {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 1;
  color: var(--primary);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.testimonial-card-new > *:not(.testimonial-quote-icon) {
  position: relative;
  z-index: 1;
}

/* ========================================
   8. PRICING CARD GRADIENT BORDER (Featured)
   ======================================== */
.pricing-card-vapa.featured {
  position: relative;
  background: var(--bg-white);
  border: none;
}

.pricing-card-vapa.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--card-radius);
  padding: 2px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 50%, var(--primary-light) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: gradientRotate 3s linear infinite;
  background-size: 200% 200%;
}

@keyframes gradientRotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ========================================
   9. PRICING TOGGLE
   ======================================== */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.pricing-toggle-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-toggle-label.active,
.pricing-toggle-label[data-period="monthly"] {
  color: var(--text);
}

.pricing-toggle-label[data-period="yearly"].active {
  color: var(--text);
}

.pricing-save-badge {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #166534;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-toggle-switch {
  position: relative;
  width: 56px;
  height: 28px;
  background: var(--border);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s;
}

.pricing-toggle-switch.active {
  background: var(--primary);
}

.pricing-toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-toggle-switch.active .pricing-toggle-slider {
  transform: translateX(28px);
}

.pricing-price-vapa {
  transition: opacity 0.15s, transform 0.15s;
}

.pricing-price-vapa.price-changing {
  opacity: 0;
  transform: translateY(-10px);
}

/* ========================================
   10. SECURITY BADGES
   ======================================== */
.security-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  border: 1px solid var(--border);
}

.security-badge svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ========================================
   11. ENHANCED SCROLL ANIMATIONS
   ======================================== */

/* Fade up (default) */
[data-animate="fade-up"],
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate="fade-up"].visible,
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade left */
[data-animate="fade-left"] {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate="fade-left"].visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade right */
[data-animate="fade-right"] {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate="fade-right"].visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up */
[data-animate="scale-up"] {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-animate="scale-up"].visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered animations with more children */
[data-animate-stagger].visible > *:nth-child(5) { transition-delay: 0.5s; }
[data-animate-stagger].visible > *:nth-child(6) { transition-delay: 0.6s; }
[data-animate-stagger].visible > *:nth-child(7) { transition-delay: 0.7s; }
[data-animate-stagger].visible > *:nth-child(8) { transition-delay: 0.8s; }
[data-animate-stagger].visible > *:nth-child(9) { transition-delay: 0.9s; }
[data-animate-stagger].visible > *:nth-child(10) { transition-delay: 1s; }
[data-animate-stagger].visible > *:nth-child(n+11) { transition-delay: 1.1s; }

/* ========================================
   12. CASE STUDY STATS ANIMATION
   ======================================== */
.case-stat {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.15);
}

.case-stat-value {
  transition: transform 0.3s ease;
}

.case-stat:hover .case-stat-value {
  transform: scale(1.05);
}

/* ========================================
   13. MOBILE RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
  .scroll-progress {
    height: 2px;
  }

  .sticky-cta {
    padding: 10px 16px;
  }

  .hero-proof-stats {
    margin-top: 24px;
    padding-top: 16px;
  }

  .pricing-toggle {
    flex-wrap: wrap;
    gap: 12px;
  }

  .pricing-save-badge {
    font-size: 10px;
    padding: 3px 8px;
  }

  .security-badges {
    gap: 12px;
  }

  .security-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .testimonial-quote-icon {
    font-size: 80px;
    right: 16px;
  }
}

/* ========================================
   14. PERFORMANCE: REDUCE MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress,
  .sticky-cta,
  [data-animate],
  [data-animate-stagger] > *,
  .pricing-toggle-slider,
  .pricing-price-vapa,
  .feature-icon-vapa,
  .case-stat,
  .case-stat-value {
    transition: none !important;
    animation: none !important;
  }

  [data-animate],
  [data-animate-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
  }

  .pricing-card-vapa.featured::before {
    animation: none;
  }
}

/* ========================================
   PHASE 2: B2B CONVERSION OPTIMIZATION
   ======================================== */

/* ========================================
   ROI CALCULATOR SECTION
   ======================================== */
.roi-calculator-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

.roi-calculator-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(2, 132, 199, 0.15);
  border: 2px solid var(--primary);
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.roi-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.roi-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.roi-input-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.roi-input-wrapper {
  display: flex;
  align-items: center;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  gap: 8px;
}

.roi-currency {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
}

.roi-select {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  outline: none;
}

.roi-results {
  padding: 40px;
}

.roi-results-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 24px;
}

.roi-results-header svg {
  color: var(--primary);
}

.roi-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.roi-metric {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px;
}

.roi-metric-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.roi-metric-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
}

.roi-metric-value svg {
  color: var(--primary);
}

.highlight-value {
  color: var(--primary);
  font-weight: 700;
}

.highlight-value-large {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
}

.roi-badge {
  background: #dcfce7;
  color: #16a34a;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
}

.roi-period {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
}

.roi-metric-highlight {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: white;
}

.roi-metric-highlight .roi-metric-label {
  color: rgba(255, 255, 255, 0.8);
}

.roi-metric-highlight .highlight-value-large {
  color: white;
}

.roi-cta {
  width: 100%;
  padding: 20px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .roi-inputs {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .roi-results {
    padding: 24px;
  }

  .roi-metrics {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   TESTIMONIAL METRICS
   ======================================== */
.testimonial-metrics {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.metric-highlight {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
}

.metric-time {
  background: var(--bg-light);
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 14px;
}

.case-study-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s;
}

.case-study-link:hover {
  color: var(--primary-dark);
}

/* ========================================
   COMPARISON SECTION
   ======================================== */
.comparison-section {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.comparison-table-wrapper {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.comparison-table th,
.comparison-table td {
  padding: 20px 24px;
  text-align: left;
}

.comparison-table thead th {
  background: var(--bg-light);
  font-size: 16px;
  font-weight: 600;
  border-bottom: 2px solid var(--border);
}

.comparison-table thead th:first-child {
  width: 180px;
}

.comparison-col-manual {
  text-align: center;
}

.comparison-col-vapa {
  text-align: center;
  background: rgba(2, 132, 199, 0.05);
  position: relative;
}

.comparison-icon {
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
}

.comparison-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 8px;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--bg-light);
}

.comparison-feature {
  font-weight: 600;
  color: var(--text);
}

.comparison-manual {
  text-align: center;
  color: var(--text-secondary);
}

.comparison-vapa {
  text-align: center;
  color: var(--text);
}

.comparison-vapa strong {
  color: var(--primary);
}

.comparison-diff {
  display: inline-block;
  background: #dcfce7;
  color: #16a34a;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 8px;
}

.comparison-cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .comparison-table th,
  .comparison-table td {
    padding: 12px 16px;
    font-size: 14px;
  }

  .comparison-table thead th:first-child {
    width: 120px;
  }

  .comparison-badge {
    display: none;
  }
}

/* ========================================
   EXTENDED TRUST SECTION
   ======================================== */
.trust-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-badge-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.trust-badge-card:hover {
  box-shadow: var(--card-shadow);
  transform: translateY(-4px);
}

.trust-badge-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(2, 132, 199, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.trust-badge-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.trust-badge-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .trust-badge-card {
    padding: 24px 16px;
  }
}

/* ========================================
   GETTING STARTED TIMELINE
   ======================================== */
.getting-started-section {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.timeline-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.timeline-step {
  flex: 1;
  text-align: center;
  max-width: 250px;
  position: relative;
}

.timeline-number {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Satoshi', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 2;
}

.timeline-connector {
  flex: 0 0 60px;
  height: 4px;
  background: repeating-linear-gradient(
    to right,
    var(--primary) 0,
    var(--primary) 8px,
    transparent 8px,
    transparent 16px
  );
  margin-top: 32px;
  animation: dash-flow 1s linear infinite;
}

@keyframes dash-flow {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 16px 0;
  }
}

.timeline-content {
  padding: 0 16px;
}

.timeline-time {
  display: inline-block;
  background: rgba(2, 132, 199, 0.1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.timeline-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .timeline-grid {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .timeline-connector {
    width: 4px;
    height: 40px;
    flex: 0 0 40px;
    margin-top: 0;
    background: repeating-linear-gradient(
      to bottom,
      var(--primary) 0,
      var(--primary) 8px,
      transparent 8px,
      transparent 16px
    );
    animation: dash-flow-vertical 1s linear infinite;
  }

  .timeline-step {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* ========================================
   LIVE ACTIVITY FEED
   ======================================== */
.live-activity-feed {
  position: fixed;
  bottom: 100px;
  left: 24px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.live-activity-feed.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.activity-notification {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  max-width: 320px;
}

.activity-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.activity-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

.activity-action {
  font-size: 13px;
  color: var(--text-secondary);
}

.activity-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  margin-left: 8px;
}

.activity-close:hover {
  color: var(--text);
}

@media (max-width: 768px) {
  .live-activity-feed {
    left: 16px;
    right: 16px;
    bottom: 120px;
  }

  .activity-notification {
    max-width: 100%;
  }
}

/* ========================================
   LIMITED OFFER BADGE
   ======================================== */
.limited-offer-badge {
  position: fixed;
  top: 70px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.limited-offer-badge.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

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

.offer-text strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .limited-offer-badge {
    right: 16px;
    left: 16px;
    justify-content: center;
    font-size: 13px;
    padding: 10px 16px;
  }
}

/* ========================================
   STICKY CTA LIVE COUNTER
   ======================================== */
.sticky-cta-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.sticky-cta-live strong {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .sticky-cta-live {
    display: none;
  }
}

/* ========================================
   EXIT INTENT POPUP
   ======================================== */
.exit-intent-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.exit-intent-popup.visible {
  opacity: 1;
}

.exit-intent-content {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.exit-intent-popup.visible .exit-intent-content {
  transform: scale(1);
}

.exit-intent-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.exit-intent-close:hover {
  color: var(--text);
}

.exit-intent-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.exit-intent-content h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.exit-intent-content > p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.exit-intent-form {
  display: flex;
  gap: 12px;
}

.exit-intent-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  outline: none;
}

.exit-intent-form input:focus {
  border-color: var(--primary);
}

.exit-intent-form .btn {
  flex-shrink: 0;
}

.exit-intent-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.exit-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
}

.exit-success span {
  font-size: 48px;
}

.exit-success p {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 768px) {
  .exit-intent-content {
    padding: 32px 24px;
  }

  .exit-intent-form {
    flex-direction: column;
  }
}
