/* ══════════════════════════════════════════════
   TOKVIO — Landing Page Styles
   ══════════════════════════════════════════════ */

/* ── Animated gradient background ── */
.landing-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: #0B0F1A;
  color: #E2E8F0;
}

.gradient-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #4F46E5 0%, transparent 70%);
  top: -200px; left: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #7C3AED 0%, transparent 70%);
  top: 30%; right: -150px;
  animation-delay: -7s;
  animation-duration: 25s;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #10B981 0%, transparent 70%);
  bottom: -100px; left: 30%;
  animation-delay: -14s;
  animation-duration: 22s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(40px, 30px) scale(1.02); }
}

/* ── Grain texture overlay ── */
.grain-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ── Container ── */
.landing-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════════
   NAV
   ══════════════════════════════════════════ */
.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  position: relative;
  z-index: 10;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  border-radius: 10px;
}
.nav-logo-icon svg {
  width: 20px; height: 20px;
  fill: none; stroke: white;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.nav-logo-text {
  font-size: 22px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.5px;
}

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

.nav-link {
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #94A3B8;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-link:hover {
  color: white;
  background: rgba(255,255,255,0.06);
}

.nav-cta {
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  color: white;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 2px 10px rgba(79, 70, 229, 0.3);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.4);
  color: white;
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  text-align: center;
  padding: 80px 0 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  border-radius: 100px;
  background: rgba(79, 70, 229, 0.15);
  border: 1px solid rgba(79, 70, 229, 0.3);
  font-size: 13px;
  font-weight: 500;
  color: #A5B4FC;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease;
}
.hero-badge .badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: white;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, #818CF8, #A78BFA, #C084FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #94A3B8;
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  color: white;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.35);
}
.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(79, 70, 229, 0.45);
  color: white;
}
.hero-btn-primary svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  background: rgba(255,255,255,0.06);
  color: white;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
  color: white;
}

/* ── AI Logos Row ── */
.ai-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  animation: fadeInUp 0.6s ease 0.4s both;
}

.ai-logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748B;
  font-size: 14px;
  font-weight: 500;
}

.ai-logo-circle {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.ai-logo-circle.claude {
  background: rgba(217, 119, 87, 0.15);
  color: #D97757;
}
.ai-logo-circle.chatgpt {
  background: rgba(16, 163, 127, 0.15);
  color: #10A37F;
}
.ai-logo-circle.gemini {
  background: rgba(66, 133, 244, 0.15);
  color: #4285F4;
}

/* ══════════════════════════════════════════
   LIVE STATS
   ══════════════════════════════════════════ */
.stats-section {
  padding: 40px 0 80px;
}

.stats-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}
.stats-grid .stat-card {
  flex: 1;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.stat-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.stat-number {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #818CF8, #C084FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: #64748B;
  font-weight: 500;
}


.stat-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #10B981;
  margin-top: 8px;
}
.stat-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #10B981;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ══════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════ */
.features-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #818CF8;
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: white;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: #94A3B8;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.feature-card {
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: all 0.3s;
}
.feature-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(79, 70, 229, 0.3);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg {
  width: 24px; height: 24px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.feature-icon.purple { background: rgba(124, 58, 237, 0.15); color: #A78BFA; }
.feature-icon.blue { background: rgba(59, 130, 246, 0.15); color: #60A5FA; }
.feature-icon.green { background: rgba(16, 185, 129, 0.15); color: #34D399; }
.feature-icon.amber { background: rgba(245, 158, 11, 0.15); color: #FBBF24; }
.feature-icon.rose { background: rgba(244, 63, 94, 0.15); color: #FB7185; }
.feature-icon.indigo { background: rgba(79, 70, 229, 0.15); color: #818CF8; }
.feature-icon.teal { background: rgba(20, 184, 166, 0.15); color: #2DD4BF; }

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════ */
.how-section {
  padding: 80px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Connecting line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(90deg, #4F46E5, #7C3AED, #10B981);
  opacity: 0.3;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step-number.s1 {
  background: rgba(79, 70, 229, 0.15);
  color: #818CF8;
  border: 2px solid rgba(79, 70, 229, 0.3);
}
.step-number.s2 {
  background: rgba(124, 58, 237, 0.15);
  color: #A78BFA;
  border: 2px solid rgba(124, 58, 237, 0.3);
}
.step-number.s3 {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 2px solid rgba(16, 185, 129, 0.3);
}

.step-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.step-item p {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
.testimonials-section {
  padding: 80px 0;
}

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

.testimonial-card {
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.testimonial-stars svg {
  width: 16px; height: 16px;
  fill: #FBBF24;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #CBD5E1;
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: white;
}
.author-avatar.a1 { background: linear-gradient(135deg, #4F46E5, #7C3AED); }
.author-avatar.a2 { background: linear-gradient(135deg, #10B981, #059669); }
.author-avatar.a3 { background: linear-gradient(135deg, #F59E0B, #D97706); }

.author-info .author-name {
  font-size: 14px;
  font-weight: 600;
  color: white;
}
.author-info .author-role {
  font-size: 12px;
  color: #64748B;
}

/* ══════════════════════════════════════════
   PRICING PREVIEW
   ══════════════════════════════════════════ */
.pricing-preview-section {
  padding: 80px 0;
}

.pricing-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-preview-card {
  position: relative;
  padding: 40px 32px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.3s;
}
.pricing-preview-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(79, 70, 229, 0.3);
}

.pricing-preview-card.featured {
  background: linear-gradient(
    180deg,
    rgba(124, 58, 237, 0.12) 0%,
    rgba(79, 70, 229, 0.06) 100%
  );
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.15);
}
.pricing-preview-card.featured:hover {
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 0 12px 50px rgba(124, 58, 237, 0.25);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.pricing-badge.popular {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: white;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
}
.pricing-badge.power {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: white;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.5);
}

.pricing-plan-name {
  font-size: 15px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.pricing-plan-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
  color: white;
}
.pricing-currency {
  font-size: 24px;
  font-weight: 700;
  color: #cbd5e1;
  margin-right: 2px;
}
.pricing-amount {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
}
.pricing-period {
  font-size: 16px;
  color: #64748b;
  margin-left: 6px;
  font-weight: 500;
}

.pricing-plan-tagline {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.5;
}
.pricing-feature-list li strong {
  color: white;
  font-weight: 700;
}
.pricing-feature-list svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: #10b981;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pricing-preview-card.featured .pricing-feature-list svg {
  stroke: #a78bfa;
}

.pricing-preview-cta {
  display: block;
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.2s;
  box-sizing: border-box;
}
.pricing-preview-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
  color: white;
}
.pricing-preview-cta.featured {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.35);
}
.pricing-preview-cta.featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(79, 70, 229, 0.45);
}

.pricing-preview-footer {
  text-align: center;
  margin-top: 40px;
}
.pricing-see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #a78bfa;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.2s;
}
.pricing-see-all:hover {
  color: #c4b5fd;
  background: rgba(167, 139, 250, 0.08);
  gap: 12px;
}
.pricing-see-all svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ══════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════ */
.cta-section {
  padding: 80px 0 100px;
}

.cta-card {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(79,70,229,0.15), rgba(124,58,237,0.1));
  border: 1px solid rgba(79,70,229,0.2);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(79,70,229,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: 36px;
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
  margin-bottom: 16px;
  position: relative;
}

.cta-card p {
  font-size: 18px;
  color: #94A3B8;
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.6;
  position: relative;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.landing-footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

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

/* Override compact-footer (from main.css) when used inside the dark landing page */
.landing-page .compact-footer {
  background: #0D0F18 !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
}

.landing-page .footer-copy {
  color: rgba(255,255,255,0.45) !important;
}

.landing-page .footer-links a {
  color: rgba(255,255,255,0.45) !important;
  text-decoration: none !important;
}

.landing-page .footer-links a:hover {
  color: rgba(255,255,255,0.8) !important;
}

.footer-copy {
  font-size: 13px;
  color: #475569;
}

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #94A3B8;
}

/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero { padding: 50px 0 40px; }

  .hero h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .hero-subtitle { font-size: 16px; }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .ai-logos {
    flex-direction: column;
    gap: 16px;
  }

  .stats-grid {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 320px;
  }
  .stats-grid .stat-card {
    width: 100%;
  }
  .stat-number { font-size: 32px; }

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

  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .steps-grid::before { display: none; }

  .pricing-preview-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 400px;
  }
  .pricing-preview-card {
    padding: 36px 24px 28px;
  }
  .pricing-amount { font-size: 48px; }

  .cta-card {
    padding: 40px 24px;
  }
  .cta-card h2 { font-size: 28px; }
  .cta-actions {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    gap: 16px;
  }

  .nav-links .nav-link { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .section-title { font-size: 24px; }
  .landing-container { padding: 0 16px; }
}


/* ── Hero feature pills ── */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 8px;
}

.hero-pill {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(99, 102, 241, 0.12);
  color: #A5B4FC;
  border: 1px solid rgba(99, 102, 241, 0.25);
  white-space: nowrap;
}
