/* =========================================
   AdSnatch Landing Page — styles.css
   ========================================= */

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

:root {
  --purple-50: #f5f3ff;
  --purple-100: #ede9fe;
  --purple-200: #ddd6fe;
  --purple-400: #a78bfa;
  --purple-500: #8b5cf6;
  --purple-600: #7c3aed;
  --purple-700: #6d28d9;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  --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;
  --green-500: #10b981;
  --amber-500: #f59e0b;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: 12px; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: linear-gradient(135deg, var(--indigo-500), var(--purple-600));
  color: #fff;
  box-shadow: 0 2px 8px rgba(99,102,241,.35);
}
.btn-primary:hover {
  box-shadow: 0 4px 16px rgba(99,102,241,.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-600);
}
.btn-ghost:hover { color: var(--gray-900); }

.btn-white {
  background: #fff;
  color: var(--indigo-600);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--gray-900);
}
.nav-logo-icon { width: 32px; height: 32px; }

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  transition: color .2s;
}
.nav-links a:hover { color: var(--gray-900); }

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gray-600);
  border-radius: 2px;
  transition: all .3s;
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  top: -200px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(99,102,241,.08) 0%, transparent 70%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-50);
  border: 1px solid var(--purple-200);
  color: var(--purple-600);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--purple-500);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--gray-900);
  margin-bottom: 24px;
}
.hero-gradient-text {
  background: linear-gradient(135deg, var(--indigo-500), var(--purple-500), #e879f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
}
.hero-avatars { display: flex; }
.hero-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-right: -8px;
}
.hero-social-proof p {
  font-size: 14px;
  color: var(--gray-500);
}
.hero-social-proof strong { color: var(--gray-700); }

/* --- Hero Visual (Browser Mockup) --- */
.hero-visual {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.hero-browser {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.browser-dots {
  display: flex;
  gap: 6px;
}
.browser-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
}
.browser-dots span:first-child { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:last-child { background: #28c840; }
.browser-url {
  flex: 1;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--gray-400);
}

.browser-content { padding: 16px; }

.mock-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--indigo-500), var(--purple-600));
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 16px;
}
.mock-toolbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.mock-logo-sm {
  width: 20px; height: 20px;
  background: rgba(255,255,255,.25);
  border-radius: 5px;
}
.mock-toolbar-actions {
  display: flex;
  gap: 8px;
}
.mock-btn {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}
.mock-btn-capture { background: rgba(255,255,255,.2); color: #fff; }
.mock-btn-auto { background: rgba(255,255,255,.15); color: rgba(255,255,255,.85); }
.mock-btn-save { background: #fff; color: var(--indigo-600); }

.mock-ad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.mock-ad {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.mock-ad-img {
  height: 80px;
  width: 100%;
}
.mock-ad-text {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-line {
  height: 6px;
  background: var(--gray-100);
  border-radius: 3px;
}
.w40 { width: 40%; }
.w50 { width: 50%; }
.w60 { width: 60%; }
.w70 { width: 70%; }
.w80 { width: 80%; }
.w90 { width: 90%; }

.mock-ad-badge {
  position: absolute;
  top: 6px; left: 6px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--gray-500);
}
.mock-ad-badge.winner {
  background: rgba(16,185,129,.15);
  color: var(--green-500);
}

.mock-ad-check {
  position: absolute;
  top: 6px; right: 6px;
  width: 16px; height: 16px;
  border: 2px solid var(--gray-300);
  border-radius: 4px;
  background: #fff;
}
.mock-ad-check.checked {
  background: var(--indigo-500);
  border-color: var(--indigo-500);
}
.mock-ad-check.checked::after {
  content: '';
  display: block;
  width: 4px; height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin: 1px auto 0;
}

/* Floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}
.float-card div strong {
  display: block;
  font-size: 13px;
  color: var(--gray-800);
}
.float-card div span {
  font-size: 11px;
  color: var(--gray-400);
}

.float-card-ai {
  top: 30%;
  left: -40px;
  animation-delay: 0s;
}
.float-card-saved {
  bottom: 20%;
  right: -30px;
  animation-delay: 3s;
}

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

/* --- Logos --- */
.logos-section {
  padding: 48px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.logos-label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 24px;
}
.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.logo-item {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: -.02em;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-600);
  background: var(--purple-50);
  border: 1px solid var(--purple-200);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 580px;
  margin: 0 auto;
}

/* --- Features --- */
.features {
  padding: 100px 0;
}

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

.feature-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .3s ease;
}
.feature-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.feature-card-lg {
  grid-column: span 2;
}

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon-purple { background: var(--purple-50); color: var(--purple-600); }
.feature-icon-blue   { background: #eff6ff; color: #3b82f6; }
.feature-icon-green  { background: #ecfdf5; color: #10b981; }
.feature-icon-orange { background: #fff7ed; color: #f97316; }
.feature-icon-pink   { background: #fdf2f8; color: #ec4899; }
.feature-icon-cyan   { background: #ecfeff; color: #06b6d4; }
.feature-icon-yellow { background: #fefce8; color: #eab308; }

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.feature-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

.feature-visual { margin-top: 24px; }

.feat-stat-row {
  display: flex;
  gap: 24px;
}
.feat-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.feat-stat-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--indigo-500);
}
.feat-stat-label {
  font-size: 12px;
  color: var(--gray-400);
}

.model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.model-tag {
  padding: 4px 12px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
}
.tag-more {
  background: var(--purple-50);
  border-color: var(--purple-200);
  color: var(--purple-600);
}

/* --- How It Works --- */
.how-it-works {
  padding: 100px 0;
  background: var(--gray-50);
}

.steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
}

.step-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--indigo-500), var(--purple-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 80px;
  line-height: 1;
}

.step-content {
  flex: 1;
}
.step-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

.step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.step-connector {
  display: flex;
  justify-content: center;
  margin: 8px 0;
  padding-left: 32px;
}

/* --- Stats --- */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--indigo-500), var(--purple-600));
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
}

/* --- Testimonials --- */
.testimonials {
  padding: 100px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .3s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--gray-800);
}
.testimonial-author span {
  font-size: 12px;
  color: var(--gray-400);
}

/* --- Pricing --- */
.pricing {
  padding: 100px 0;
  background: var(--gray-50);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  transition: all .3s;
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.pricing-card-popular {
  border-color: var(--indigo-500);
  box-shadow: 0 0 0 1px var(--indigo-500), var(--shadow-xl);
}
.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--indigo-500), var(--purple-600));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-header { margin-bottom: 28px; }
.pricing-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.price-amount {
  font-size: 42px;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1;
}
.price-period {
  font-size: 15px;
  color: var(--gray-400);
}
.pricing-desc {
  font-size: 14px;
  color: var(--gray-500);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
}
.pricing-features li svg { flex-shrink: 0; }

/* --- CTA --- */
.cta-section {
  padding: 100px 0;
}
.cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--indigo-500), var(--purple-700));
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  text-align: center;
}
.cta-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .3;
}
.cta-orb-1 {
  width: 400px; height: 400px;
  background: #e879f9;
  top: -100px; right: -100px;
}
.cta-orb-2 {
  width: 300px; height: 300px;
  background: #818cf8;
  bottom: -80px; left: -80px;
}
.cta-card h2 {
  position: relative;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.cta-card p {
  position: relative;
  font-size: 17px;
  color: rgba(255,255,255,.8);
  max-width: 540px;
  margin: 0 auto 32px;
}
.cta-actions {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--gray-100);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  max-width: 280px;
}
.footer-brand .nav-logo {
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 64px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-900);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--gray-500);
  transition: color .2s;
}
.footer-col a:hover { color: var(--gray-700); }

.footer-bottom {
  border-top: 1px solid var(--gray-100);
  padding-top: 24px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--gray-400);
}

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card-lg { grid-column: span 2; }
  .float-card { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: #fff;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
  }
  .nav-actions .btn-ghost,
  .nav-actions .btn-primary { display: none; }

  .hero { padding: 120px 0 60px; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 16px; }

  .mock-ad-grid { grid-template-columns: repeat(2, 1fr); }
  .mock-toolbar-actions { display: none; }

  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card-lg { grid-column: span 1; }

  .step {
    flex-direction: column;
    gap: 16px;
  }
  .step-visual { align-self: flex-start; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stat-number { font-size: 32px; }

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

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .feat-stat-row { flex-direction: column; gap: 12px; }
  .cta-card { padding: 48px 24px; }
}
