/* ══════════════════════════════════════════════
   INFLUENCE LAB — Premium Landing Page
   Light theme with neuromarketing principles
   ══════════════════════════════════════════════ */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ─── CSS Variables (Design Tokens) ─── */
:root {
  /* Primary — warm purple-blue gradient */
  --primary-50: #f5f3ff;
  --primary-100: #ede9fe;
  --primary-200: #ddd6fe;
  --primary-300: #c4b5fd;
  --primary-400: #a78bfa;
  --primary-500: #8b5cf6;
  --primary-600: #7c3aed;
  --primary-700: #6d28d9;

  /* Accent — warm coral/orange */
  --accent-400: #fb923c;
  --accent-500: #f97316;
  --accent-600: #ea580c;

  /* Success — for positive indicators */
  --success-400: #4ade80;
  --success-500: #22c55e;

  /* Danger — for fake/warning */
  --danger-400: #f87171;
  --danger-500: #ef4444;

  /* Neutrals — warm tones */
  --gray-50: #fafaf9;
  --gray-100: #f5f5f4;
  --gray-200: #e7e5e4;
  --gray-300: #d6d3d1;
  --gray-400: #a8a29e;
  --gray-500: #78716c;
  --gray-600: #57534e;
  --gray-700: #44403c;
  --gray-800: #292524;
  --gray-900: #1c1917;

  /* Background */
  --bg-primary: #ffffff;
  --bg-secondary: #fafaf9;
  --bg-elevated: #ffffff;

  /* Text */
  --text-primary: #1c1917;
  --text-secondary: #57534e;
  --text-muted: #a8a29e;

  /* Typography scale */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: clamp(60px, 8vw, 120px);
  --container-max: 1200px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 40px rgba(139,92,246,0.15);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

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

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

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

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

/* ─── Section Base ─── */
.section {
  padding: var(--section-padding) 0;
}

.section-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-500);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--primary-500);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

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

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: white;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.45);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::after {
  opacity: 1;
}

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

.btn-outline:hover {
  background: var(--primary-50);
  border-color: var(--primary-400);
  transform: translateY(-2px);
}

.btn-large {
  padding: 20px 44px;
  font-size: 18px;
}

.btn-icon {
  font-size: 20px;
}

/* ─── Animated gradient background ─── */
.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.gradient-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.gradient-bg .orb-1 {
  width: 600px;
  height: 600px;
  background: var(--primary-200);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.gradient-bg .orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-400);
  bottom: -100px;
  left: -100px;
  animation-delay: -7s;
  opacity: 0.15;
}

.gradient-bg .orb-3 {
  width: 300px;
  height: 300px;
  background: var(--primary-300);
  top: 50%;
  left: 50%;
  animation-delay: -14s;
  opacity: 0.2;
}

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

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger > * {
  transition-delay: calc(var(--i, 0) * 0.1s);
}

/* ═══════════════════════════════════════
   HEADER / NAVIGATION
   ═══════════════════════════════════════ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease-out);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--text-primary);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

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

.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav a:hover {
  color: var(--primary-600);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-500);
  transition: width 0.3s var(--ease-out);
  border-radius: 2px;
}

.nav a:hover::after {
  width: 100%;
}

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

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--primary-50);
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-600);
  margin-bottom: 24px;
  animation: pulse-soft 3s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(139, 92, 246, 0); }
}

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

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

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

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
}

.hero-stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 2px;
}

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

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating cards on hero */
.float-card {
  position: absolute;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,0.04);
  animation: float-card 6s ease-in-out infinite;
  z-index: 10;
}

.float-card-1 {
  top: 20%;
  left: -30px;
  animation-delay: 0s;
}

.float-card-2 {
  bottom: 15%;
  right: -20px;
  animation-delay: -2s;
}

.float-card-3 {
  top: 60%;
  left: -20px;
  animation-delay: -4s;
}

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

.float-card .card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.float-card .card-icon.green {
  background: #dcfce7;
  color: var(--success-500);
}

.float-card .card-icon.red {
  background: #fee2e2;
  color: var(--danger-500);
}

.float-card .card-icon.purple {
  background: var(--primary-100);
  color: var(--primary-600);
}

/* ═══════════════════════════════════════
   PAIN / PROBLEM SECTION
   ═══════════════════════════════════════ */

.pain {
  background: var(--bg-secondary);
}

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

.pain-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

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

.pain-card .pain-icon {
  width: 56px;
  height: 56px;
  background: #fee2e2;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

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

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

.pain-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #fee2e2;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--danger-500);
  margin-top: 16px;
}

/* ═══════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════ */

.how-it-works .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
  padding: 0 24px;
}

.step::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -10%;
  width: 20%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-300), var(--primary-100));
}

.step:last-child::after {
  display: none;
}

.step-number {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.25);
  position: relative;
  z-index: 2;
}

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

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

/* ═══════════════════════════════════════
   COMPARISON SECTION
   ═══════════════════════════════════════ */

.comparison {
  background: var(--bg-secondary);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  align-items: start;
}

.comparison-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.comparison-image img {
  width: 100%;
}

.comparison-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all 0.3s var(--ease-out);
}

.comparison-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.comparison-item .check-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.comparison-item .check-icon.yes {
  background: #dcfce7;
  color: var(--success-500);
}

.comparison-item .check-icon.no {
  background: #fee2e2;
  color: var(--danger-500);
}

.comparison-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

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

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */

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

.pricing-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  border: 2px solid var(--gray-200);
  position: relative;
  transition: all 0.4s var(--ease-out);
}

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

.pricing-card.popular {
  border-color: var(--primary-400);
  box-shadow: var(--shadow-glow);
}

.pricing-card.popular::before {
  content: '🔥 Найпопулярніший';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: white;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-500);
  margin-bottom: 8px;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-description {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-period {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-note {
  font-size: 13px;
  color: var(--primary-500);
  font-weight: 500;
  margin-bottom: 28px;
}

.pricing-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 24px 0;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.pricing-features li .feat-icon {
  color: var(--success-500);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-features li.disabled {
  color: var(--text-muted);
}

.pricing-features li.disabled .feat-icon {
  color: var(--gray-300);
}

.pricing-btn {
  width: 100%;
}

/* ═══════════════════════════════════════
   SOCIAL PROOF / TRUST
   ═══════════════════════════════════════ */

.trust-bar {
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-item .trust-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
}

.trust-item .trust-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

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

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

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

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

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-200), var(--primary-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.testimonial-name {
  font-weight: 700;
  font-size: 15px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  border-radius: var(--radius-xl);
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box .section-title {
  color: white;
  position: relative;
  z-index: 2;
}

.cta-box .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 32px;
  position: relative;
  z-index: 2;
}

.cta-box .btn-primary {
  background: white;
  color: var(--primary-700);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}

.cta-box .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.cta-spots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 600;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.cta-spots .dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

.footer {
  padding: 48px 0 24px;
  border-top: 1px solid var(--gray-200);
}

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

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

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

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-500);
}

/* ═══════════════════════════════════════
   COUNTER ANIMATION
   ═══════════════════════════════════════ */

.counter {
  display: inline;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { order: -1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .pain-grid { grid-template-columns: 1fr; }
  .how-it-works .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .step::after { display: none; }
  .comparison-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .order-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-toggle { display: flex; }
  .hero-title { font-size: clamp(32px, 8vw, 48px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-stats { gap: 24px; }
  .hero-stat-value { font-size: 24px; }
  .how-it-works .steps { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 24px; }
  .trust-bar .container { gap: 32px; }
  .footer .container { flex-direction: column; gap: 16px; text-align: center; }
  .float-card { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   WHY US SECTION
   ═══════════════════════════════════════ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.why-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-300);
}

.why-card .why-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.why-card .why-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
}

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

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

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

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* ═══════════════════════════════════════
   ORDER FORM SECTION
   ═══════════════════════════════════════ */

.order-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.order-info {
  padding-top: 20px;
}

.order-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.order-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
}

.order-benefit-icon {
  width: 28px;
  height: 28px;
  background: #dcfce7;
  color: var(--success-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.order-form-wrapper {
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 2px solid var(--gray-200);
  background: var(--bg-secondary);
  color: var(--text-primary);
  transition: all 0.3s var(--ease-out);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-400);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
  background: white;
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2378716c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success .success-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--success-500);
}

.form-success p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .order-wrapper { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .order-form-wrapper { padding: 24px; }
}

/* ═══════════════════════════════════════
   ABOUT US SECTION
   ═══════════════════════════════════════ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: white;
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.about-exp-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.about-exp-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.9;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

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

.about-stats {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 28px;
}

.about-stat-item {
  text-align: center;
  flex: 1;
}

.about-stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.about-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.about-team-roles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-role {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all 0.3s var(--ease-out);
}

.about-role:hover {
  background: var(--primary-50);
  border-color: var(--primary-200);
  transform: translateX(4px);
}

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

.about-role strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

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

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-experience-badge { bottom: -16px; right: 16px; }
}

@media (max-width: 768px) {
  .about-stats { gap: 16px; }
  .about-stat-value { font-size: 28px; }
  .about-experience-badge { padding: 16px 20px; }
  .about-exp-number { font-size: 32px; }
}

/* ═══════════════════════════════════════
   GUARANTEES SECTION
   ═══════════════════════════════════════ */

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.guarantee-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--success-400), var(--success-500));
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.guarantee-card:hover::before {
  opacity: 1;
}

.guarantee-icon-wrap {
  margin-bottom: 18px;
}

.guarantee-icon {
  width: 56px;
  height: 56px;
  background: #dcfce7;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

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

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

.guarantee-card p strong {
  color: var(--text-primary);
}

.guarantee-bottom {
  margin-top: 40px;
}

.guarantee-promise {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 36px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  border: 2px solid var(--success-400);
  border-radius: var(--radius-xl);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
  animation: pulse-guarantee 3s ease-in-out infinite;
}

@keyframes pulse-guarantee {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.2); }
  50% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
}

.guarantee-shield {
  font-size: 32px;
  flex-shrink: 0;
}

.guarantee-promise strong {
  color: var(--success-500);
  font-weight: 800;
}

@media (max-width: 768px) {
  .guarantees-grid { grid-template-columns: 1fr; }
  .guarantee-promise {
    flex-direction: column;
    gap: 8px;
    padding: 20px 24px;
    font-size: 15px;
    text-align: center;
  }
}

/* ═══════════════════════════════════════
   CRO IMPROVEMENTS (VSL, Logos, FAQ, Sticky CTA)
   ═══════════════════════════════════════ */

/* VSL Hero Image */
.hero-video-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  transition: transform 0.3s var(--ease-out);
  aspect-ratio: 4/5;
  background: var(--bg-secondary);
}

.hero-video-wrapper:hover {
  transform: translateY(-8px);
}

.hero-vsl-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s;
}

.hero-video-wrapper:hover .hero-vsl-thumbnail {
  filter: brightness(0.85);
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: all 0.3s var(--ease-out);
  animation: pulse-play 2s infinite;
}

.play-icon {
  font-size: 32px;
  color: var(--primary-500);
  margin-left: 6px;
}

.hero-video-wrapper:hover .play-button-overlay {
  background: var(--primary-500);
  transform: translate(-50%, -50%) scale(1.1);
}

.hero-video-wrapper:hover .play-icon {
  color: white;
}

.vsl-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: white;
  padding: 14px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.1);
}

@keyframes pulse-play {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  70% { box-shadow: 0 0 0 20px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* VSL Modal */
.vsl-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.vsl-modal.active {
  opacity: 1;
  pointer-events: all;
}

.vsl-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(5px);
}

.vsl-modal-content {
  position: relative;
  z-index: 1001;
  width: 90%;
  max-width: 800px;
  background: white;
  border-radius: var(--radius-xl);
  padding: 24px;
  transform: scale(0.95) translateY(20px);
  transition: all 0.4s var(--ease-out);
}

.vsl-modal.active .vsl-modal-content {
  transform: scale(1) translateY(0);
}

.vsl-close-btn {
  position: absolute;
  top: -40px;
  right: -40px;
  background: none;
  border: none;
  color: white;
  font-size: 36px;
  cursor: pointer;
  transition: color 0.3s;
}

.vsl-close-btn:hover {
  color: var(--primary-400);
}

.vsl-video-container {
  aspect-ratio: 16/9;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Logos Bar */
.logos-bar {
  padding: 40px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: white;
  overflow: hidden;
}

.logos-text {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.logo-item {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--gray-300);
  letter-spacing: 0.5px;
  transition: color 0.3s;
  cursor: default;
}

.logo-item:hover {
  color: var(--primary-300);
}

/* FAQ Section */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: var(--primary-300);
}

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

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--primary-500);
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

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

/* Sticky CTA Mobile */
.sticky-cta-btn {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: white;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
  z-index: 900;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  white-space: nowrap;
}

.sticky-cta-btn.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (min-width: 769px) {
  .sticky-cta-btn {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .vsl-close-btn {
    top: -40px;
    right: 0;
  }
  .logos-track {
    justify-content: center;
  }
}
