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

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary: #8b5cf6;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 10px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-logo:hover {
  background: rgba(99, 102, 241, 0.08);
  gap: 12px;
}

.nav-logo .logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.3;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transform: translateX(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo:hover .logo-text {
  max-width: 250px;
  opacity: 1;
  transform: translateX(0);
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.3;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.logo-text .brand-primary {
  color: white;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.logo-text .brand-secondary {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95em;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.3);
  display: block;
}

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

.nav-links a {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.4);
}

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

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: 0.05;
  z-index: -1;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.hero-content {
  animation: fadeInUp 0.8s ease;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid var(--primary-light);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}

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

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.gradient-text {
  display: block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 20px;
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
  transition: all 0.3s ease;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 35px -5px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--gray-700);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--gray-300);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

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

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

.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
}

.hero-image {
  animation: fadeInRight 0.8s ease 0.2s both;
}

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

.extension-preview {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--gray-200);
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 16px;
}

.preview-header .logo-text {
  font-size: 16px;
  max-width: none !important;
  opacity: 1 !important;
  transform: none !important;
  overflow: visible;
}

.preview-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
  display: block;
}

.preview-warning {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border: 2px solid #fca5a5;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.warning-icon {
  font-size: 24px;
}

.preview-warning strong {
  color: #991b1b;
  font-size: 14px;
}

.preview-warning p {
  color: #b91c1c;
  font-size: 12px;
  margin: 0;
}

.preview-chart {
  height: 100px;
  background: white;
  border-radius: 10px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  padding: 10px;
}

.chart-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Grid lines fade in */
.grid-line {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

/* Chart path draws progressively */
.chart-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawChart 2.5s ease-in-out forwards;
}

/* Areas fade in after line draws */
.chart-area-normal {
  opacity: 0;
  animation: fadeInArea 0.6s ease 1.8s forwards;
}

.chart-area-spike {
  opacity: 0;
  animation: fadeInArea 0.6s ease 2.2s forwards;
}

/* Chart points appear sequentially */
.chart-point {
  opacity: 0;
  transform: scale(0);
  animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.chart-point-1 {
  animation-delay: 1.2s;
}

.chart-point-2 {
  animation-delay: 2.0s;
}

.chart-point-3 {
  animation-delay: 2.8s;
}

.chart-point-spike {
  animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards, pulseSpike 1.5s ease-in-out 2.4s infinite;
}

/* Pulse effect on spike point */
.chart-pulse {
  opacity: 0;
  transform: scale(0);
  animation: pulseWave 2s ease-in-out 2.4s infinite;
}

/* Labels fade in */
.chart-label {
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.chart-label-1 {
  animation-delay: 1.4s;
}

.chart-label-2 {
  animation-delay: 2.2s;
}

.chart-label-3 {
  animation-delay: 3.0s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes drawChart {
  0% {
    stroke-dashoffset: 1000;
  }
  70% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeInArea {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes pulseSpike {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@keyframes pulseWave {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(2.5);
  }
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}

/* Restart animation on hover */
.preview-chart:hover .chart-path {
  animation: drawChart 2.5s ease-in-out forwards;
}

.preview-chart:hover .chart-point-spike {
  animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards, pulseSpike 1.5s ease-in-out 0.1s infinite;
}

.preview-alternatives {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.alt-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: var(--gray-50);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.badge-trusted {
  margin-left: auto;
  background: #d1fae5;
  color: #065f46;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 500;
  animation: bounce 2s infinite;
}

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

.features {
  padding: 120px 0;
  background: white;
}

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

.section-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-description {
  font-size: 20px;
  color: var(--gray-600);
}

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

.feature-card {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
}

.gradient-red {
  background: linear-gradient(135deg, #f43f5e, #ef4444);
}

.gradient-blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.gradient-green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.gradient-purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.gradient-orange {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.gradient-pink {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.feature-description {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-stats {
  display: flex;
  gap: 8px;
}

.stat-badge {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.how-it-works {
  padding: 120px 0;
  background: var(--gray-50);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 64px;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.step:nth-child(even) {
  grid-template-columns: 80px 1fr 1fr;
}

.step:nth-child(even) .step-content {
  order: 2;
}

.step:nth-child(even) .step-visual {
  order: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 900;
  box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
}

.step-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
}

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

.browser-mockup {
  width: 100%;
  max-width: 400px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.browser-header {
  background: var(--gray-200);
  padding: 12px;
  display: flex;
  gap: 6px;
}

.browser-header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-400);
}

.browser-content {
  padding: 40px 20px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
}

.install-button {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 700;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.amazon-page {
  background: var(--warning);
  color: white;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 700;
}

.insights-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.insight-item {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  color: white;
  animation: slideIn 0.5s ease forwards;
}

.insight-item.red {
  background: var(--danger);
  animation-delay: 0.2s;
}

.insight-item.blue {
  background: var(--primary);
  animation-delay: 0.4s;
}

.insight-item.green {
  background: var(--success);
  animation-delay: 0.6s;
}

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

.reviews {
  padding: 120px 0;
  background: white;
}

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

.review-card {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.reviewer-info {
  display: flex;
  gap: 12px;
  align-items: center;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.reviewer-name {
  font-weight: 700;
  color: var(--gray-900);
}

.reviewer-role {
  font-size: 14px;
  color: var(--gray-600);
}

.review-stars {
  color: #fbbf24;
  font-size: 18px;
}

.review-text {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

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

.review-date {
  font-size: 14px;
  color: var(--gray-500);
}

.review-badge {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
  color: var(--success);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.reviews-summary {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 48px;
  background: var(--gray-50);
  border-radius: 20px;
}

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

.summary-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.summary-label {
  font-size: 16px;
  color: var(--gray-600);
  font-weight: 600;
}

.summary-stars {
  color: #fbbf24;
  font-size: 24px;
  margin-top: 8px;
}

.pricing {
  padding: 120px 0;
  background: var(--gray-50);
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border: 2px solid var(--primary);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 12px;
}

.price-currency {
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-500);
}

.price-amount {
  font-size: 72px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.price-period {
  font-size: 18px;
  color: var(--gray-500);
  margin-left: 8px;
}

.pricing-description {
  color: var(--gray-600);
  font-size: 16px;
}

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

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--gray-700);
  font-weight: 500;
}

.pricing-features svg {
  color: var(--success);
}

.btn-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 18px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
}

.btn-pricing:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 35px -5px rgba(99, 102, 241, 0.5);
}

.pricing-note {
  text-align: center;
  color: var(--gray-600);
  font-size: 14px;
  margin-top: 16px;
}

.faq {
  padding: 120px 0;
  background: white;
}

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

.faq-item {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
}

.faq-question svg {
  color: var(--primary);
  transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--gray-600);
  line-height: 1.7;
}

.cta-final {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  text-align: center;
}

.cta-title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.cta-description {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0.95;
}

.btn-cta-final {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: var(--primary);
  padding: 20px 40px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.btn-cta-final:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 50px -5px rgba(0, 0, 0, 0.4);
}

.cta-note {
  margin-top: 24px;
  opacity: 0.9;
  font-size: 16px;
}

.footer {
  background: var(--gray-900);
  color: white;
  padding: 80px 0 40px;
}

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

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo .logo-text {
  font-size: 18px;
  max-width: none !important;
  opacity: 1 !important;
  transform: none !important;
  overflow: visible;
}

.footer-logo .logo-text .brand-secondary {
  color: var(--primary-light);
}

.footer-tagline {
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--gray-800);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all 0.3s ease;
}

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

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-column a {
  display: block;
  color: var(--gray-400);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--gray-800);
  color: var(--gray-500);
  font-size: 14px;
}

.footer-bottom p:first-child {
  margin-bottom: 8px;
}

[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

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

[data-aos="fade-left"] {
  transform: translateX(30px);
}

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

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

  .hero-image {
    order: -1;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

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

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: 40px;
  }

  .section-title {
    font-size: 36px;
  }

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

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

  .step-number {
    margin: 0 auto;
  }

  .step:nth-child(even) .step-content,
  .step:nth-child(even) .step-visual {
    order: unset;
  }

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

  .reviews-summary {
    flex-direction: column;
    gap: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}
