/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
.top-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: rgba(10,10,15,0.7);
  backdrop-filter: blur(var(--blur-lg)) saturate(1.5);
  -webkit-backdrop-filter: blur(var(--blur-lg)) saturate(1.5);
  border-bottom: 1px solid var(--border-glass);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; z-index: 1000;
}
.nav-left { display: flex; align-items: center; gap: 36px; }
.nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(139,92,246,0.4);
  transition: all var(--transition-smooth);
}
.nav-logo:hover .nav-logo-icon {
  box-shadow: 0 4px 20px rgba(139,92,246,0.6); transform: scale(1.05);
}
.nav-logo-icon svg { width: 18px; height: 18px; }
.nav-logo-text {
  font-size: 18px; font-weight: 800; color: var(--text-primary);
  letter-spacing: -0.5px; font-family: var(--font-display);
}
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  color: var(--text-secondary); font-size: 14px; font-weight: 500;
  transition: all var(--transition-smooth);
}
.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--accent); background: var(--accent-light); }
.nav-right { display: flex; align-items: center; gap: 12px; }

.nav-mobile-toggle {
  display: none; background: none; border: none; color: var(--text-primary);
  padding: 8px; cursor: pointer;
}
.nav-mobile-toggle svg { width: 24px; height: 24px; }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(10,10,15,0.98); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  padding: 80px 24px 40px;
  opacity: 0; transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.mobile-menu.open { display: flex; opacity: 1; transform: translateY(0); }
.mobile-menu a {
  font-size: 18px; font-weight: 600; padding: 14px 24px;
  border-radius: var(--radius-sm); width: 100%; max-width: 280px;
  text-align: center; color: var(--text-secondary);
  transition: all var(--transition-smooth);
}
.mobile-menu a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.mobile-menu .mobile-menu-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: var(--text-primary); padding: 8px; cursor: pointer;
}
.mobile-menu .mobile-menu-close svg { width: 24px; height: 24px; }
.mobile-menu-actions { display: flex; gap: 12px; margin-top: 24px; }

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px; position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-bg-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.6) 0%, rgba(10,10,15,0.8) 50%, var(--bg-primary) 100%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.2; }
.hero-orb-1 {
  width: 600px; height: 600px;
  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
  top: -200px; right: -100px; animation: float 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: linear-gradient(135deg, #3B82F6, #2563EB);
  bottom: -150px; left: -100px; animation: float 10s ease-in-out infinite 2s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: linear-gradient(135deg, #22D3EE, #06B6D4);
  top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.1;
  animation: float 12s ease-in-out infinite 4s;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(139,92,246,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; max-width: 900px; padding-top: 40px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.2); border-radius: var(--radius-full);
  font-size: 13px; font-weight: 500; color: var(--accent);
  margin-bottom: 28px; backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease-out;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--success);
  border-radius: 50%; animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(38px, 6vw, 76px); font-weight: 900; line-height: 1.05;
  margin-bottom: 24px; letter-spacing: -2px; font-family: var(--font-display);
  animation: fadeInUp 0.6s ease-out 0.1s forwards; opacity: 0;
}
.hero-title-gradient {
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 50%, #22D3EE 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  background-size: 200% 200%; animation: gradientShift 6s ease infinite;
}

.hero-subtitle {
  font-size: 18px; color: var(--text-secondary); max-width: 600px;
  margin: 0 auto 40px; line-height: 1.7; font-weight: 400;
  animation: fadeInUp 0.6s ease-out 0.2s forwards; opacity: 0;
}

.hero-actions {
  display: flex; gap: 16px; justify-content: center; margin-bottom: 64px;
  animation: fadeInUp 0.6s ease-out 0.3s forwards; opacity: 0;
}

.hero-stats {
  display: flex; gap: 56px; justify-content: center;
  animation: fadeInUp 0.6s ease-out 0.4s forwards; opacity: 0;
}
.hero-stat-value { font-size: 32px; font-weight: 900; letter-spacing: -1px; font-family: var(--font-display); }
.hero-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ══════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════ */
.page-section { padding: 100px 24px; max-width: var(--max-width); margin: 0 auto; }
.section-header-center { text-align: center; margin-bottom: 56px; }
.section-label {
  font-size: 12px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
  font-family: var(--font-display);
}
.section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  margin-bottom: 14px; letter-spacing: -1px; font-family: var(--font-display);
}
.section-subtitle { font-size: 16px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ══════════════════════════════════════════════
   FEATURES GRID
   ══════════════════════════════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all var(--transition-smooth); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--cyan), transparent);
  opacity: 0; transition: opacity var(--transition-smooth);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  border-color: rgba(139,92,246,0.3); transform: translateY(-4px); box-shadow: var(--shadow-glow-sm);
}
.feature-icon {
  margin-bottom: 18px; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-subtle); border-radius: var(--radius);
  border: 1px solid var(--border);
}
.feature-icon img { width: 28px; height: 28px; display: block; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.3px; font-family: var(--font-display); }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ══════════════════════════════════════════════
   HOW IT WORKS (Timeline)
   ══════════════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; max-width: 900px; margin: 0 auto; }
.step-card { text-align: center; position: relative; }
.step-num {
  width: 64px; height: 64px; margin: 0 auto 16px;
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800; font-family: var(--font-display);
}
.step-num-1 { background: var(--accent-light); border: 1px solid rgba(139,92,246,0.2); color: var(--accent); }
.step-num-2 { background: var(--secondary-light); border: 1px solid rgba(59,130,246,0.2); color: var(--secondary); }
.step-num-3 { background: var(--cyan-light); border: 1px solid rgba(34,211,238,0.2); color: var(--cyan); }
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; }

/* ══════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all var(--transition-smooth);
}
.testimonial-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow); }
.testimonial-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: white;
}
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

/* ══════════════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════════════ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 8px; overflow: hidden;
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-item.open { border-color: rgba(139,92,246,0.3); box-shadow: 0 0 20px rgba(139,92,246,0.05); }
.faq-question {
  padding: 20px 24px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg-card); transition: background var(--transition); font-size: 15px;
}
.faq-question:hover { background: var(--bg-card-hover); }
.faq-arrow { transition: transform var(--transition-smooth); font-size: 12px; color: var(--text-muted); }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  font-size: 14px; color: var(--text-secondary); line-height: 1.8;
}
.faq-item.open .faq-answer { padding: 20px 24px; max-height: 500px; }

/* ══════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1040px; margin: 0 auto; align-items: start;
}
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px 32px 36px;
  text-align: center; transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-xl);
  background: radial-gradient(ellipse at 50% 0%, rgba(139,92,246,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(139,92,246,0.06);
  border-color: var(--border-hover);
}
.pricing-card.featured {
  border-color: rgba(139,92,246,0.4);
  box-shadow: 0 0 60px rgba(139,92,246,0.1), 0 8px 40px rgba(0,0,0,0.3);
  transform: scale(1.03); z-index: 2;
  background: linear-gradient(180deg, rgba(139,92,246,0.06) 0%, var(--bg-card) 40%);
}
.pricing-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #8B5CF6, #3B82F6, #22D3EE);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.pricing-card.featured::after {
  content: ''; position: absolute; inset: -1px; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(139,92,246,0.3), transparent 40%, transparent 60%, rgba(34,211,238,0.2));
  z-index: -1; opacity: 0.5;
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); box-shadow: 0 0 80px rgba(139,92,246,0.15), 0 20px 60px rgba(0,0,0,0.4); }

.pricing-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
  color: white; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; padding: 6px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: 0 4px 16px rgba(139,92,246,0.4); z-index: 3;
}

.pricing-name { font-size: 22px; font-weight: 700; margin-bottom: 6px; font-family: var(--font-display); letter-spacing: -0.3px; }
.pricing-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.5; }

.pricing-price {
  font-size: 60px; font-weight: 900; margin-bottom: 8px;
  letter-spacing: -4px; line-height: 1; font-family: var(--font-display); position: relative;
}
.pricing-price .currency { font-size: 28px; font-weight: 700; vertical-align: super; letter-spacing: 0; color: var(--text-secondary); margin-right: 2px; }
.pricing-price .period { font-size: 15px; font-weight: 500; color: var(--text-muted); letter-spacing: 0; display: block; margin-top: 6px; }
.pricing-price .price-monthly, .pricing-price .price-yearly { display: inline; transition: opacity 0.2s ease; }

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

.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-features li {
  display: flex; align-items: center; gap: 12px; padding: 11px 0;
  font-size: 14px; color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li .check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: rgba(34,197,94,0.12); transition: all var(--transition-smooth);
}
.pricing-features li .check-icon svg { width: 12px; height: 12px; }
.pricing-features li.disabled { opacity: 0.35; }
.pricing-features li.disabled .check-icon { background: rgba(255,255,255,0.04); }
.pricing-features li.disabled .check-icon svg { color: var(--text-muted); }
.pricing-features li .feature-label { flex: 1; }

.pricing-cta { width: 100%; justify-content: center; padding: 14px 24px; font-size: 15px; }
.pricing-card.featured .pricing-cta { box-shadow: 0 4px 24px rgba(139,92,246,0.4); }

.pricing-toggle { display: flex; align-items: center; gap: 14px; justify-content: center; margin-bottom: 48px; }
.pricing-toggle-label {
  font-size: 14px; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: color var(--transition); user-select: none;
}
.pricing-toggle-label.active { color: var(--text-primary); }
.pricing-toggle-switch {
  width: 52px; height: 28px; background: var(--bg-tertiary);
  border-radius: 14px; position: relative; cursor: pointer;
  border: 1px solid var(--border); transition: all var(--transition-smooth);
}
.pricing-toggle-switch:hover { border-color: var(--border-hover); }
.pricing-toggle-switch.active {
  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
  border-color: var(--accent); box-shadow: 0 0 20px rgba(139,92,246,0.3);
}
.pricing-toggle-switch::after {
  content: ''; position: absolute; width: 22px; height: 22px;
  background: white; border-radius: 50%; top: 2px; left: 2px;
  transition: all var(--transition-spring); box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.pricing-toggle-switch.active::after { left: 26px; }
.pricing-save-badge {
  font-size: 11px; font-weight: 700; color: var(--success);
  background: var(--success-light); padding: 4px 10px;
  border-radius: var(--radius-full); border: 1px solid rgba(34,197,94,0.2);
}

/* ══════════════════════════════════════════════
   COMPARISON TABLE
   ══════════════════════════════════════════════ */
.comparison-section { max-width: 960px; margin: 80px auto 0; }
.comparison-title { font-size: 24px; font-weight: 800; text-align: center; margin-bottom: 8px; letter-spacing: -0.5px; font-family: var(--font-display); }
.comparison-subtitle { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 36px; }
.table-container { border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; background: var(--bg-card); }
.table { width: 100%; border-collapse: collapse; }
.table th {
  padding: 14px 18px; text-align: left; font-size: 12px; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px;
  border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.02);
}
.table th.highlight { color: var(--accent); background: rgba(139,92,246,0.06); }
.table td { padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.03); font-size: 14px; color: var(--text-secondary); }
.table td.highlight { background: rgba(139,92,246,0.03); color: var(--text-primary); font-weight: 500; }
.table tr { transition: background var(--transition); }
.table tbody tr:hover td { background: rgba(255,255,255,0.03); }
.table tbody tr:last-child td { border-bottom: none; }
.table .yes { color: var(--success); font-weight: 600; }
.table .no { color: var(--text-muted); }

.payment-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 36px; padding: 20px 32px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.payment-bar-label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.payment-bar-logos { display: flex; align-items: center; gap: 16px; }
.payment-bar-logos img,
.payment-bar-logos svg {
  height: 32px; width: auto; max-width: 60px; object-fit: contain;
  border-radius: 6px; opacity: 0.7; transition: opacity var(--transition);
}
.payment-bar-logos img:hover, .payment-bar-logos svg:hover { opacity: 1; }

/* ══════════════════════════════════════════════
   TRUSTED BY
   ══════════════════════════════════════════════ */
.trusted-section { padding: 60px 24px; text-align: center; border-bottom: 1px solid var(--border); }
.trusted-label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; }
.trusted-logos { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; opacity: 0.4; }
.trusted-logo { font-size: 20px; font-weight: 700; color: var(--text-secondary); font-family: var(--font-display); }

/* ══════════════════════════════════════════════
   STATS BANNER
   ══════════════════════════════════════════════ */
.stats-banner {
  display: flex; justify-content: center; gap: 64px; padding: 64px 24px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(139,92,246,0.03), transparent);
}
.stats-banner-value { font-size: 40px; font-weight: 900; color: var(--accent); letter-spacing: -1px; font-family: var(--font-display); }
.stats-banner-label { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* ══════════════════════════════════════════════
   PAGE HERO
   ══════════════════════════════════════════════ */
.page-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  max-width: var(--max-width); margin: 0 auto; padding: 80px 24px 60px;
}
.page-hero-text { max-width: 520px; }
.page-hero-text .section-label { text-align: left; }
.page-hero-text h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 16px; }
.page-hero-text p { color: var(--text-secondary); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero-image {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.06);
}
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(139,92,246,0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border); padding: 72px 32px 28px;
  background: var(--bg-secondary);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; max-width: var(--max-width); margin: 0 auto; }
.footer-brand p { font-size: 14px; color: var(--text-muted); margin-top: 14px; line-height: 1.7; max-width: 300px; }
.footer-col h4 { font-size: 13px; font-weight: 700; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-secondary); }
.footer-col a { display: block; font-size: 14px; color: var(--text-muted); padding: 5px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0 0; margin-top: 48px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-muted);
  max-width: var(--max-width); margin-left: auto; margin-right: auto;
}

/* ══════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════ */
.cta-section {
  text-align: center; padding: 100px 24px; max-width: var(--max-width); margin: 0 auto;
}
.cta-section .section-title { margin-bottom: 16px; }
.cta-section .section-subtitle { margin-bottom: 32px; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .hero { height: 100vh; padding: 0 16px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
  .stats-banner { flex-direction: column; gap: 24px; align-items: center; }
  .page-hero { grid-template-columns: 1fr; padding: 60px 16px 40px; }
  .page-hero-image { max-height: 280px; }
  .page-hero-text { max-width: 100%; }
  .page-hero-text .section-label, .page-hero-text h1, .page-hero-text p { text-align: center; }
  .page-hero-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trusted-logos { gap: 24px; }
  .comparison-section { margin-top: 48px; }
  .payment-bar { flex-direction: column; gap: 12px; }
}
