:root {
  --bg-deep: #070912;
  --bg-section: #0a0d18;
  --bg-card: rgba(13, 15, 28, 0.8);
  --accent-primary: #6c5ce7;
  --accent-primary-light: #a29bfe;
  --accent-secondary: #25D366;
  --text-primary: #f0f2ff;
  --text-secondary: #8892aa;
  --text-muted: #3d4561;
  --border-subtle: rgba(255,255,255,0.06);
  --border-glow: rgba(108, 92, 231, 0.3);
  --font-base: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-base);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* Animations */
@keyframes gridDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

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

@keyframes glowSweep {
  0% { left: -100%; }
  100% { left: 200%; }
}

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

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

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

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(7, 9, 18, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 15px 5%;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-icon {
  color: var(--accent-primary);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-secondary);
}

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

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

.btn-nav-login {
  color: var(--text-primary);
  font-weight: 500;
}

.btn-nav-cta {
  background: var(--accent-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
}

.btn-nav-cta:hover {
  background: var(--accent-primary-light);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 150px 5% 100px;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(108, 92, 231, 0.15) 0%, transparent 60%);
  z-index: -2;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background-image: linear-gradient(var(--border-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  animation: gridDrift 20s linear infinite;
  opacity: 0.5;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(108, 92, 231, 0.1);
  border: 1px solid var(--border-glow);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  margin-bottom: 30px;
  color: var(--accent-primary-light);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-primary-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-headline {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 0%, #a29bfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-hero-primary {
  background: var(--accent-primary);
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}

.btn-hero-primary:hover {
  background: var(--accent-primary-light);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  border: 1px solid var(--border-subtle);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* App Mockup */
.hero-mockup {
  margin-top: 80px;
  width: 100%;
  max-width: 1100px;
  position: relative;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, var(--border-glow), transparent);
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  z-index: 1;
}

.hero-mockup-inner {
  background: var(--bg-deep);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.mockup-topbar {
  height: 30px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  padding: 0 15px;
  gap: 8px;
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-muted);
}
.mockup-dot:nth-child(1) { background: #ff5f56; }
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #27c93f; }

.mockup-body {
  display: flex;
  height: 500px;
}

.mockup-sidebar {
  width: 220px;
  border-right: 1px solid var(--border-subtle);
  padding: 20px 0;
  background: rgba(255,255,255,0.01);
}

.mockup-nav-item {
  padding: 12px 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-nav-item.active {
  background: rgba(108, 92, 231, 0.1);
  color: var(--accent-primary-light);
  border-left: 3px solid var(--accent-primary);
}

.mockup-main {
  flex: 1;
  padding: 30px;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wMykiLz48L3N2Zz4=') repeat;
}

.mockup-header {
  margin-bottom: 24px;
}

.mockup-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.mockup-glow-bar {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  animation: glowSweep 3s infinite;
}

.mockup-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mockup-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--text-primary);
}

.mockup-name {
  font-weight: 600;
  font-size: 1rem;
}

.mockup-detail {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.mockup-badge {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(108, 92, 231, 0.15);
  color: var(--accent-primary-light);
}

.mockup-float-badge {
  position: absolute;
  top: 40px;
  right: -40px;
  background: #fff;
  color: #000;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatBadge 4s ease-in-out infinite;
  z-index: 10;
}

.mockup-float-badge-2 {
  position: absolute;
  bottom: 80px;
  left: -30px;
  background: #111;
  color: #fff;
  border: 1px solid #333;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatBadge 5s ease-in-out infinite reverse;
  z-index: 10;
}

/* Stats Ticker */
.stats-ticker {
  background: var(--bg-section);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 40px 0;
}

.stats-ticker-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 5px;
}

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

/* Sections */
.section {
  padding: 100px 5%;
}

.section-full {
  background: var(--bg-section);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  color: var(--accent-primary-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 24px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin-bottom: 60px;
}

/* Problem Grid */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
}

.problem-stat {
  font-size: 4rem;
  font-weight: 900;
  color: #ff5f56;
  margin-bottom: 20px;
}

.problem-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.problem-desc {
  color: var(--text-secondary);
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
  z-index: 0;
}

.step-item {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--bg-deep);
  padding: 20px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--bg-section);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto 24px;
  color: var(--accent-primary-light);
  box-shadow: 0 0 30px rgba(108, 92, 231, 0.2);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-desc {
  color: var(--text-secondary);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 40px;
  border-radius: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-desc {
  color: var(--text-secondary);
}

/* Industries */
.industries-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
}
.industries-scroll::-webkit-scrollbar { display: none; }

.industry-chip {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 16px 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-weight: 500;
  transition: all 0.3s ease;
}

.industry-chip:hover {
  background: rgba(108, 92, 231, 0.1);
  border-color: var(--accent-primary);
}

.industry-icon {
  font-size: 1.2rem;
}

/* Pricing */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.toggle-label {
  font-weight: 500;
  color: var(--text-secondary);
}

.toggle-switch {
  width: 60px;
  height: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 32px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.toggle-knob {
  width: 24px;
  height: 24px;
  background: var(--accent-primary);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 4px;
  transition: all 0.3s;
}

.toggle-switch.active {
  background: rgba(108, 92, 231, 0.2);
  border-color: var(--accent-primary);
}

.toggle-switch.active .toggle-knob {
  left: 30px;
}

.toggle-discount {
  background: rgba(37, 211, 102, 0.15);
  color: var(--accent-secondary);
  padding: 4px 8px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--accent-primary);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(108, 92, 231, 0.15);
  background: rgba(13, 15, 28, 0.95);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-primary);
  color: #fff;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-plan {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pricing-desc {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.pricing-feature::before {
  content: '✓';
  color: var(--accent-primary-light);
  font-weight: bold;
}

.btn-pricing {
  display: block;
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-pricing-primary {
  background: var(--accent-primary);
  color: #fff;
}
.btn-pricing-primary:hover { background: var(--accent-primary-light); }

.btn-pricing-secondary {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}
.btn-pricing-secondary:hover { background: rgba(255,255,255,0.1); }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 40px;
}

.testimonial-quote {
  font-size: 3rem;
  color: rgba(108, 92, 231, 0.2);
  line-height: 1;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

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

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

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

.faq-chevron {
  transition: transform 0.3s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-secondary);
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

/* CTA Banner */
.cta-banner {
  padding: 100px 5%;
}

.cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(108,92,231,0.2), rgba(13,15,28,0.8));
  border: 1px solid var(--border-glow);
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 24px;
}

.cta-sub {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background: #040509;
  padding: 80px 5% 40px;
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand-desc {
  color: var(--text-secondary);
  max-width: 300px;
}

.footer-col-title {
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 12px;
}

.footer-link a {
  color: var(--text-secondary);
}

.footer-link a:hover {
  color: var(--accent-primary-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-legal a {
  color: var(--text-muted);
}

/* Cookie Consent */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 24px;
  border-radius: 16px;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  transition: transform 0.4s, opacity 0.4s;
}

.cookie-banner.hidden {
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}

.cookie-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.btn-cookie-accept {
  background: var(--accent-primary);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  flex: 1;
}

.btn-cookie-reject {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  flex: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-mockup-inner { border-radius: 10px; }
  .mockup-sidebar { display: none; }
  .mockup-float-badge { right: 0; top: -20px; }
  .pricing-card.featured { transform: scale(1); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-mobile-toggle { display: block; }
  .hero { padding-top: 120px; }
  .stats-ticker-inner { gap: 20px; }
  .stat-item { flex: 1 1 40%; }
}

@media (max-width: 640px) {
  .hero-actions { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 60px 5%; }
  .problem-stat { font-size: 3rem; }
  .cta-inner { padding: 40px 20px; }
}
