/* =========================================================
   WebLite • aeo-styles.css (Premium Design v2.0)
   ========================================================= */

/* ---------- משתני צבע ועיצוב ---------- */
:root {
  --aeo-bg-light: #f8fafc;
  --aeo-primary: #2563eb;
  --aeo-primary-dark: #1e40af;
  --aeo-secondary: #9333ea;
  --aeo-secondary-dark: #7c3aed;
  --aeo-text-dark: #0f172a;
  --aeo-text-muted: #64748b;
  --aeo-card-bg: #ffffff;
  --aeo-border: #e2e8f0;
  --aeo-success: #10b981;
  --aeo-warning: #f59e0b;
  --aeo-danger: #ef4444;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #2563eb 0%, #9333ea 100%);
  --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
}

/* ---------- הגדרות בסיס ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.aeo-page {
  background-color: var(--aeo-bg-light);
  color: var(--aeo-text-dark);
  overflow-x: hidden;
  font-family: 'Heebo', sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Background Animation ---------- */
.aeo-bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

#aeo-canvas {
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.gradient-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gradient-orbs::before,
.gradient-orbs::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.gradient-orbs::before {
  width: 500px;
  height: 500px;
  background: var(--gradient-2);
  top: -250px;
  right: -250px;
}

.gradient-orbs::after {
  width: 400px;
  height: 400px;
  background: var(--gradient-3);
  bottom: -200px;
  left: -200px;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -50px) scale(1.1); }
  66% { transform: translate(-50px, 50px) scale(0.9); }
}

/* ---------- כל הסקשנים ---------- */
section {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

/* ---------- Utilities ---------- */
.text-gradient {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: var(--aeo-primary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--aeo-text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn-primary-glow,
.btn-secondary-outline,
.btn-plan,
.btn-cta-primary,
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Heebo', sans-serif;
}

.btn-primary-glow,
.btn-cta-primary {
  background: var(--gradient-2);
  color: #fff;
  box-shadow: 0 8px 25px -8px var(--aeo-primary);
}

.btn-primary-glow:hover,
.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px -10px var(--aeo-primary);
}

.btn-secondary-outline,
.btn-cta-secondary {
  background: transparent;
  color: var(--aeo-primary);
  border: 2px solid var(--aeo-primary);
}

.btn-secondary-outline:hover,
.btn-cta-secondary:hover {
  background: var(--aeo-primary);
  color: #fff;
  transform: translateY(-3px);
}

/* ---------- HERO SECTION ---------- */
.aeo-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.aeo-hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  color: var(--aeo-primary);
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  border: 1px solid var(--aeo-border);
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  display: block;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  margin-top: 1rem;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--aeo-text-muted);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-inline: auto;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number::after {
  content: '%';
}

.stat-item:last-child .stat-number::after {
  content: 'x';
}

.stat-label {
  font-size: 0.95rem;
  color: var(--aeo-text-muted);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--aeo-primary);
  border-radius: 25px;
  position: relative;
  margin: 0 auto 10px;
}

.wheel {
  width: 4px;
  height: 10px;
  background: var(--aeo-primary);
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% { opacity: 1; top: 10px; }
  100% { opacity: 0; top: 30px; }
}

.arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--aeo-primary);
  margin: 0 auto;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ---------- PROBLEM SECTION ---------- */
.aeo-problem {
  background: #fff;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.problem-card {
  background: var(--aeo-card-bg);
  border: 2px solid var(--aeo-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--aeo-danger);
}

.problem-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--aeo-danger);
}

.problem-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--aeo-text-dark);
}

.problem-card p {
  color: var(--aeo-text-muted);
  line-height: 1.8;
}

/* ---------- SOLUTION SECTION ---------- */
.aeo-solution {
  background: linear-gradient(180deg, #f8fafc 0%, #f0f4ff 100%);
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.visual-card {
  background: var(--aeo-card-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--aeo-border);
}

.visual-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--aeo-border);
}

.ai-avatar {
  width: 60px;
  height: 60px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  color: #fff;
}

.ai-thinking {
  display: flex;
  gap: 0.5rem;
}

.ai-thinking .dot {
  width: 8px;
  height: 8px;
  background: var(--aeo-primary);
  border-radius: 50%;
  animation: thinking 1.4s infinite;
}

.ai-thinking .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.ai-thinking .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes thinking {
  0%, 60%, 100% { opacity: 0.3; transform: scale(0.8); }
  30% { opacity: 1; transform: scale(1.2); }
}

.visual-query {
  background: #f1f5f9;
  padding: 1.5rem;
  border-radius: var(--radius);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--aeo-text-dark);
  margin-bottom: 1.5rem;
}

.visual-answer {
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius);
  border-right: 4px solid var(--aeo-success);
}

.answer-source {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--aeo-success);
  margin-bottom: 1rem;
}

.answer-source i {
  font-size: 1.5rem;
}

.answer-authority {
  margin-top: 1rem;
}

.authority-bar {
  height: 8px;
  background: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.authority-fill {
  height: 100%;
  width: 95%;
  background: var(--gradient-2);
  border-radius: 10px;
  animation: fillBar 2s ease-out;
}

@keyframes fillBar {
  from { width: 0%; }
  to { width: 95%; }
}

.benefit-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: var(--aeo-card-bg);
  border: 2px solid var(--aeo-primary);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--aeo-primary);
}

.benefit-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: var(--aeo-text-muted);
  line-height: 1.7;
}

/* ---------- PROCESS SECTION (TIMELINE) ---------- */
.aeo-process {
  background: #fff;
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  right: 60px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--aeo-primary), var(--aeo-secondary));
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-number {
  width: 120px;
  height: 120px;
  background: var(--gradient-2);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  font-weight: 900;
  box-shadow: 0 0 0 10px var(--aeo-bg-light), var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.timeline-content {
  background: var(--aeo-card-bg);
  border: 2px solid var(--aeo-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  transform: translateX(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--aeo-primary);
}

.timeline-icon {
  width: 70px;
  height: 70px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  color: var(--aeo-primary);
  margin-bottom: 1.5rem;
}

.timeline-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--aeo-text-dark);
}

.timeline-content > p {
  color: var(--aeo-text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.timeline-features {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.timeline-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--aeo-text-dark);
  font-weight: 500;
}

.timeline-features i {
  color: var(--aeo-success);
  font-size: 1.125rem;
}

/* ---------- COMPARISON SECTION ---------- */
.aeo-comparison {
  background: linear-gradient(180deg, #f0f4ff 0%, #f8fafc 100%);
}

.comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--aeo-card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.comparison-card {
  padding: 3rem 2.5rem;
}

.seo-card {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.aeo-card {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.comparison-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.comparison-header i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.seo-card .comparison-header i {
  color: #64748b;
}

.aeo-card .comparison-header i {
  color: var(--aeo-primary);
}

.comparison-header h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.era-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.era-badge.old {
  background: rgba(100, 116, 139, 0.2);
  color: #475569;
}

.era-badge.new {
  background: rgba(37, 99, 235, 0.2);
  color: var(--aeo-primary);
}

.comparison-goal {
  background: rgba(255, 255, 255, 0.6);
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.comparison-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.comparison-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.seo-card .comparison-features i {
  color: var(--aeo-danger);
  font-size: 1.125rem;
  margin-top: 0.125rem;
}

.aeo-card .comparison-features i {
  color: var(--aeo-success);
  font-size: 1.125rem;
  margin-top: 0.125rem;
}

.comparison-analogy {
  background: rgba(255, 255, 255, 0.6);
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-style: italic;
}

.vs-divider {
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--aeo-card-bg);
}

.vs-circle {
  width: 70px;
  height: 70px;
  background: var(--gradient-2);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.vs-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--aeo-primary), var(--aeo-secondary));
}

.comparison-conclusion {
  max-width: 800px;
  margin: 3rem auto 0;
  background: var(--aeo-card-bg);
  border: 2px solid var(--aeo-primary);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.conclusion-icon {
  width: 80px;
  height: 80px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  color: var(--aeo-primary);
  margin: 0 auto 1.5rem;
}

.comparison-conclusion p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--aeo-text-dark);
}

.highlight {
  color: var(--aeo-primary);
  font-weight: 700;
}

/* ---------- PRICING SECTION ---------- */
.aeo-pricing {
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: var(--aeo-card-bg);
  border: 2px solid var(--aeo-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--aeo-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--gradient-2);
  color: #fff;
  padding: 0.5rem 2.5rem;
  transform: rotate(-45deg);
  font-weight: 700;
  font-size: 0.75rem;
  box-shadow: var(--shadow-md);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
  padding: 2.5rem 2rem;
  text-align: center;
  border-bottom: 2px solid var(--aeo-border);
}

.pricing-card.featured .pricing-header {
  background: var(--gradient-2);
  color: #fff;
}

.pricing-header h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-header h3 {
  color: #fff;
}

.plan-description {
  font-size: 0.95rem;
  opacity: 0.9;
}

.pricing-body {
  padding: 2.5rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.price-tag {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--aeo-border);
}

.price-tag .currency {
  font-size: 1.5rem;
  font-weight: 700;
  vertical-align: super;
}

.price-tag .amount {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-tag .period {
  font-size: 1.125rem;
  color: var(--aeo-text-muted);
  font-weight: 500;
}

.price-tag.custom .amount {
  font-size: 1.75rem;
}

.plan-tagline {
  text-align: center;
  color: var(--aeo-text-muted);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.features-list i {
  color: var(--aeo-success);
  font-size: 1.125rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.features-list .fa-times {
  color: var(--aeo-text-muted);
}

.opacity-50 {
  opacity: 0.5;
}

.btn-plan {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  background: var(--aeo-primary);
  color: #fff;
}

.btn-plan:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-plan.primary {
  background: var(--gradient-2);
  box-shadow: 0 8px 25px -8px var(--aeo-primary);
}

.pricing-note {
  background: rgba(37, 99, 235, 0.1);
  border: 2px solid var(--aeo-primary);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-note i {
  color: var(--aeo-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* ---------- FAQ SECTION ---------- */
.aeo-faq {
  background: linear-gradient(180deg, #f8fafc 0%, #f0f4ff 100%);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--aeo-card-bg);
  border: 2px solid var(--aeo-border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--aeo-primary);
}

.faq-question {
  width: 100%;
  text-align: right;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--aeo-text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Heebo', sans-serif;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--aeo-primary);
}

.faq-question i {
  color: var(--aeo-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer > div {
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  color: var(--aeo-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.faq-answer ul,
.faq-answer ol {
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.faq-answer li {
  color: var(--aeo-text-muted);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

/* ---------- FINAL CTA ---------- */
.aeo-cta-final {
  background: var(--gradient-2);
  color: #fff;
  text-align: center;
  padding: 6rem 1rem;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
}

.aeo-cta-final h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #fff;
}

.aeo-cta-final .text-gradient {
  background: linear-gradient(135deg, #fff 0%, #f0f4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aeo-cta-final p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-cta-primary {
  background: #fff;
  color: var(--aeo-primary);
}

.btn-cta-primary:hover {
  background: #f8fafc;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px -10px rgba(255, 255, 255, 0.5);
}

.btn-cta-secondary {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-cta-secondary:hover {
  background: #fff;
  color: var(--aeo-primary);
}

.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.cta-guarantee i {
  font-size: 1.25rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .solution-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .comparison-wrapper {
    grid-template-columns: 1fr;
  }
  
  .vs-divider {
    width: 100%;
    height: 80px;
    flex-direction: column;
  }
  
  .vs-line {
    width: 100%;
    height: 3px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  
  .process-timeline::before {
    right: 40px;
  }
  
  .timeline-number {
    width: 80px;
    height: 80px;
    font-size: 1.75rem;
  }
  
  .timeline-item {
    gap: 1.5rem;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
  
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary-glow,
  .btn-secondary-outline,
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
  }
}