/* =============================
   BASE & RESET
   ============================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #050505;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
}

/* =============================
   TYPOGRAPHY & UTILITIES
   ============================= */
.gradient-text {
  background: linear-gradient(135deg, #a5b4fc, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-red { color: #ef4444; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.section-eyebrow {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.25);
  margin-bottom: 14px;
}

/* =============================
   BUTTONS
   ============================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 24px; border-radius: 12px;
  font-weight: 700; font-size: 15px; cursor: pointer;
  border: none; text-decoration: none;
  transition: all 0.2s ease; white-space: nowrap;
}
.btn-primary { background: #6366f1; color: #fff; }
.btn-primary:hover { background: #4f46e5; transform: translateY(-1px); box-shadow: 0 8px 32px rgba(99,102,241,0.35); }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.6); border: 1.5px solid rgba(255,255,255,0.12); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: #a5b4fc; border: 1.5px solid #6366f1; }
.btn-outline:hover { background: rgba(99,102,241,0.1); }
.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: 10px; }
.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* =============================
   NAVBAR
   ============================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 100;
  padding: 0; transition: background 0.3s, box-shadow 0.3s;
  background: rgba(5,5,5,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar.scrolled {
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; width: 100%; }
.logo { font-size: 18px; font-weight: 900; color: #fff; text-decoration: none; letter-spacing: -0.02em; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link { color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 600; text-decoration: none; padding: 6px 12px; border-radius: 8px; transition: color 0.2s; white-space: nowrap; }
.nav-link:hover { color: #fff; }
.nav-link-dim { color: rgba(255,255,255,0.3); }
.nav-link-dim:hover { color: rgba(255,255,255,0.6); }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0; }
.nav-mobile-toggle span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.7); border-radius: 2px; transition: 0.2s; }
.nav-mobile-menu { display: none; flex-direction: column; padding: 16px 24px 20px; border-top: 1px solid rgba(255,255,255,0.06); background: rgba(5,5,5,0.97); width: 100%; }
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link { color: rgba(255,255,255,0.6); font-size: 15px; font-weight: 600; text-decoration: none; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.nav-mobile-link:hover { color: #fff; }

/* =============================
   BADGE
   ============================= */
.badge {
  display: inline-block; background: rgba(99,102,241,0.12); color: #a5b4fc;
  border: 1px solid rgba(99,102,241,0.25); border-radius: 100px;
  padding: 6px 16px; font-size: 13px; font-weight: 600; margin-bottom: 20px;
}

/* =============================
   SECTIONS
   ============================= */
.section { padding: 96px 0; }
.section-alt { background: #080808; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.15; }

/* =============================
   HERO
   ============================= */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 80px 0 60px; position: relative; overflow: hidden; }
.hero-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px; background: radial-gradient(ellipse, rgba(99,102,241,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.15em;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px; padding: 6px 14px; margin-bottom: 16px;
}
.hero-eyebrow a { color: #6366f1; text-decoration: none; font-weight: 700; }
.hero-eyebrow a:hover { color: #a5b4fc; }
.hero-content h1 { font-size: clamp(32px, 4.5vw, 54px); font-weight: 900; line-height: 1.1; letter-spacing: -0.04em; margin-bottom: 20px; }
.hero-desc { color: rgba(255,255,255,0.45); font-size: 17px; line-height: 1.75; margin-bottom: 32px; max-width: 480px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.trust-line { color: rgba(255,255,255,0.25); font-size: 13px; }

/* =============================
   MOCK TERMINAL
   ============================= */
.hero-mock { display: flex; flex-direction: column; gap: 12px; }
.mock-window {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.mock-titlebar {
  background: rgba(0,0,0,0.4); padding: 12px 16px;
  display: flex; align-items: center; gap: 6px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }
.mock-title { margin-left: 8px; font-size: 12px; color: rgba(255,255,255,0.3); }
.mock-body { padding: 16px; }
.mock-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.mock-text p { color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 8px; }
.mock-list { font-size: 13px; color: rgba(255,255,255,0.65); }
.mock-list-item { padding: 2px 0; opacity: 0; transform: translateX(-6px); transition: opacity 0.3s, transform 0.3s; }
.mock-list-item.visible { opacity: 1; transform: translateX(0); }
.mock-list-item.muted { color: rgba(255,255,255,0.2); }
.mock-actions { display: flex; align-items: center; gap: 10px; margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.06); flex-wrap: wrap; }
.mock-icon { font-size: 16px; cursor: pointer; opacity: 0.4; }
.mock-execute-btn {
  background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff; border: none;
  border-radius: 6px; padding: 6px 14px; font-size: 12px; font-weight: 700; cursor: pointer;
  animation: pulse-glow 2.5s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(99,102,241,0); }
}
.mock-popup {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(99,102,241,0.3);
  border-radius: 16px; padding: 14px 16px; box-shadow: 0 8px 32px rgba(99,102,241,0.15);
}
.mock-popup-header { font-size: 13px; font-weight: 700; color: #a5b4fc; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.mock-detected { color: rgba(255,255,255,0.3); font-weight: 400; font-size: 12px; }
.mock-popup-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.mock-action-btn {
  background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 8px;
  padding: 7px 12px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.mock-action-btn:hover, .mock-action-btn.active { border-color: #6366f1; background: rgba(99,102,241,0.15); color: #a5b4fc; }

/* Inline bar (Copy / Save / Agent) */
.mock-inline-bar { display: flex; gap: 6px; margin-top: 10px; }
.mock-quick-btn {
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 6px;
  padding: 5px 10px; font-size: 11px; font-weight: 600; cursor: pointer;
}
.mock-quick-btn.accent { background: rgba(99,102,241,0.2); border-color: #6366f1; color: #a5b4fc; }

/* Primary recommended action */
.mock-primary-action {
  width: 100%; background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff; border: none; border-radius: 10px;
  padding: 10px 14px; font-size: 13px; font-weight: 700; cursor: pointer;
  margin-bottom: 10px; text-align: left;
}

/* Follow-up prompts */
.mock-followup-label { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 0.1em; margin: 10px 0 6px; }
.mock-followup-item {
  display: block; width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 7px;
  color: rgba(255,255,255,0.55); font-size: 11px; padding: 6px 10px;
  margin-bottom: 5px; cursor: pointer; text-align: left;
  transition: border-color 0.2s, color 0.2s;
}
.mock-followup-item:hover { border-color: #6366f1; color: #a5b4fc; }

/* =============================
   PAIN CARDS
   ============================= */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.pain-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid #ef4444; border-radius: 16px; padding: 24px;
  transition: transform 0.2s;
}
.pain-card:hover { transform: translateY(-2px); }
.pain-icon { font-size: 28px; margin-bottom: 12px; }
.pain-card p { color: rgba(255,255,255,0.5); font-size: 15px; line-height: 1.65; }
.pain-card strong { color: #e2e8f0; }
.section-closing { text-align: center; font-size: 18px; color: rgba(255,255,255,0.45); }
.section-closing strong { color: #a5b4fc; }

/* =============================
   STEPS
   ============================= */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 28px 20px; position: relative; transition: border-color 0.2s, transform 0.2s;
}
.step-card:hover { border-color: rgba(99,102,241,0.3); transform: translateY(-2px); }
.step-number {
  position: absolute; top: -14px; left: 20px; background: #6366f1; color: #fff;
  width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 13px; font-weight: 800;
}
.step-icon { font-size: 28px; margin-bottom: 12px; margin-top: 6px; }
.step-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step-card p { color: rgba(255,255,255,0.35); font-size: 13px; line-height: 1.65; margin-bottom: 10px; }
.step-link { font-size: 12px; font-weight: 700; color: #6366f1; text-decoration: none; }
.step-link:hover { color: #a5b4fc; }

/* =============================
   FEATURES GRID
   ============================= */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 28px; transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: rgba(99,102,241,0.25); transform: translateY(-2px); }
.feature-icon { font-size: 32px; margin-bottom: 14px; }
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: rgba(255,255,255,0.35); font-size: 13px; line-height: 1.7; }

/* =============================
   PERSONA GRID
   ============================= */
.persona-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.persona-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 28px; display: flex; gap: 20px; align-items: flex-start;
  transition: border-color 0.2s, transform 0.2s;
}
.persona-card:hover { border-color: rgba(99,102,241,0.25); transform: translateY(-2px); }
.persona-avatar { font-size: 36px; flex-shrink: 0; }
.persona-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.persona-card p { color: rgba(255,255,255,0.35); font-size: 14px; line-height: 1.65; }

/* =============================
   TRUST
   ============================= */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.trust-item {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 24px; display: flex; gap: 14px; align-items: flex-start;
}
.trust-check { font-size: 20px; flex-shrink: 0; }
.trust-item p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.65; }
.trust-item strong { color: #e2e8f0; }
.trust-note { text-align: center; color: rgba(255,255,255,0.3); font-size: 13px; }
.trust-note code { background: rgba(255,255,255,0.06); color: #a5b4fc; padding: 2px 8px; border-radius: 4px; font-size: 12px; }

/* =============================
   PRICING
   ============================= */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 760px; margin: 0 auto; }
.pricing-card {
  background: rgba(255,255,255,0.02); border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 24px; padding: 36px; position: relative;
}
.pricing-card-pro {
  border-color: rgba(99,102,241,0.4); background: rgba(99,102,241,0.04);
  box-shadow: 0 0 60px rgba(99,102,241,0.12); transform: translateY(-4px);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #6366f1; color: #fff; border-radius: 100px; padding: 4px 16px;
  font-size: 12px; font-weight: 700; white-space: nowrap;
}
.pricing-plan-name { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 12px; }
.pricing-price { font-size: 44px; font-weight: 900; color: #e2e8f0; letter-spacing: -0.03em; margin-bottom: 28px; }
.pricing-period { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.3); }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li { font-size: 14px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; align-items: center; gap: 8px; }
.pricing-features li.has { color: rgba(255,255,255,0.6); }
.pricing-features li.has::before { content: '✓'; color: #00FFC2; font-weight: 700; font-size: 13px; }
.pricing-features li.not { color: rgba(255,255,255,0.2); }
.pricing-features li.not::before { content: '✗'; color: rgba(255,255,255,0.2); }
.pricing-note { text-align: center; color: rgba(255,255,255,0.25); font-size: 12px; margin-top: 12px; }

/* =============================
   CHECKOUT FORM
   ============================= */
.checkout-box { max-width: 520px; margin: 0 auto; text-align: center; }
.checkout-badge {
  display: inline-block; background: rgba(99,102,241,0.1); color: #a5b4fc;
  border: 1px solid rgba(99,102,241,0.2); border-radius: 100px; padding: 5px 14px;
  font-size: 12px; font-weight: 700; margin-bottom: 20px; letter-spacing: 0.05em;
}
.checkout-box h2 { font-size: 30px; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.03em; }
.checkout-sub { color: rgba(255,255,255,0.35); font-size: 15px; margin-bottom: 28px; }
.checkout-form { display: flex; flex-direction: column; gap: 12px; }
.checkout-form input[type="email"] {
  background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px; color: #e2e8f0; font-size: 15px; padding: 14px 18px; outline: none;
  transition: border-color 0.2s; font-family: inherit;
}
.checkout-form input[type="email"]:focus { border-color: #6366f1; }
.checkout-form input[type="email"]::placeholder { color: rgba(255,255,255,0.2); }
.checkout-secure { color: rgba(255,255,255,0.25); font-size: 13px; margin-top: 12px; }
.checkout-free { color: rgba(255,255,255,0.25); font-size: 13px; margin-top: 8px; }
.link { color: #a5b4fc; text-decoration: none; }
.link:hover { text-decoration: underline; }

/* =============================
   FAQ
   ============================= */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; overflow: hidden; transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(99,102,241,0.3); }
.faq-question {
  width: 100%; background: none; border: none; color: #e2e8f0; font-size: 15px; font-weight: 600;
  padding: 18px 20px; text-align: left; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 12px; font-family: inherit; transition: color 0.2s;
}
.faq-question:hover { color: #a5b4fc; }
.faq-icon { font-size: 20px; font-weight: 300; color: #6366f1; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 20px 18px; color: rgba(255,255,255,0.4); font-size: 14px; line-height: 1.75; }
.faq-answer a { color: #a5b4fc; text-decoration: none; }
.faq-answer a:hover { text-decoration: underline; }
.faq-answer code { background: rgba(255,255,255,0.06); color: #a5b4fc; padding: 2px 6px; border-radius: 4px; font-size: 12px; }

/* =============================
   CTA SECTION
   ============================= */
.cta-section { padding: 80px 0; }
.cta-box {
  position: relative; text-align: center; padding: 80px 40px;
  background: rgba(99,102,241,0.04); border: 1px solid rgba(99,102,241,0.15);
  border-radius: 32px; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-icon { font-size: 48px; margin-bottom: 20px; position: relative; }
.cta-box h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 12px; position: relative; }
.cta-box p { color: rgba(255,255,255,0.4); font-size: 16px; margin-bottom: 32px; position: relative; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* =============================
   FOOTER
   ============================= */
.footer { background: #030303; border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1fr auto; gap: 60px; margin-bottom: 48px; }
.footer-brand .logo { display: block; margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,0.25); font-size: 13px; line-height: 1.7; max-width: 220px; }
.footer-cols { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.25); margin-bottom: 4px; }
.footer-col a { color: rgba(255,255,255,0.4); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.04); padding-top: 24px; display: flex; flex-direction: column; gap: 6px; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,0.15); font-size: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.2); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }

/* =============================
   ANIMATE ON SCROLL
   ============================= */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }

  /* Hero */
  .hero { min-height: auto; padding: 80px 0 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-mock { display: none; }
  .hero-content h1 { font-size: 34px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Sections */
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }

  /* Grids */
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-pro { transform: none; }
  .faq-list { grid-template-columns: 1fr; }

  /* CTA */
  .cta-box { padding: 48px 24px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Footer */
  .footer-cols { flex-direction: column; gap: 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 28px; }
}