@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-deep: #080c14;
  --bg-dark: #0c1220;
  --bg-card: #111827;
  --bg-card-hover: #1a2332;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --text: #f1f5f9;
  --text-sub: #94a3b8;
  --text-muted: #64748b;
  --green: #10b981;
  --green-glow: rgba(16,185,129,0.15);
  --blue: #3b82f6;
  --blue-glow: rgba(59,130,246,0.15);
  --purple: #8b5cf6;
  --yellow: #eab308;
  --orange: #f97316;
  --red: #ef4444;
  --pink: #ec4899;
  --gradient: linear-gradient(135deg, #10b981, #3b82f6);
  --gradient-text: linear-gradient(135deg, #10b981 0%, #3b82f6 50%, #8b5cf6 100%);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ════════════════ UTILITIES ════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════════ NAVBAR ════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar.scrolled {
  background: rgba(8,12,20,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 24px; font-weight: 900; letter-spacing: -0.5px;
  text-decoration: none; color: white; display: flex; align-items: center;
}
.nav-logo-img { height: 28px; width: auto; }
.footer-logo-img { height: 32px; width: auto; margin-bottom: 4px; }
.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
.nav-links a {
  color: var(--text-sub); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover { color: white; }
.nav-cta {
  background: var(--gradient); color: white !important;
  padding: 10px 24px; border-radius: 50px; font-weight: 600 !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16,185,129,0.3);
}
.nav-menu-btn {
  display: none; background: none; border: none; color: white;
  font-size: 24px; cursor: pointer;
}

/* ════════════════ HERO ════════════════ */
.hero {
  min-height: auto; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 120px 0 40px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(120px);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb--green {
  width: 600px; height: 600px; background: var(--green);
  top: 10%; left: -10%; opacity: 0.07;
}
.hero-orb--blue {
  width: 500px; height: 500px; background: var(--blue);
  bottom: 10%; right: -5%; opacity: 0.07;
  animation-delay: -4s;
}
.hero-orb--purple {
  width: 400px; height: 400px; background: var(--purple);
  top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.04;
  animation-delay: -2s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-content {
  text-align: center; position: relative; z-index: 1;
  max-width: 820px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 50px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  font-size: 14px; font-weight: 500; color: var(--green);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out;
}
.hero-title {
  font-size: clamp(40px, 6vw, 72px); font-weight: 900;
  line-height: 1.05; letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.15s both;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px); color: var(--text-sub);
  line-height: 1.6; max-width: 600px; margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.45s both;
}
.btn-primary {
  background: var(--gradient); color: white;
  padding: 16px 36px; border-radius: 50px; border: none;
  font-size: 16px; font-weight: 700; cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(16,185,129,0.2);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(16,185,129,0.35);
}
.btn-secondary {
  background: transparent; color: white;
  padding: 16px 36px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 16px; font-weight: 600; cursor: pointer;
  transition: all 0.3s; text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.3);
}
.hero-trust {
  margin-top: 32px; display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}
.hero-trust span {
  font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 6px;
}

/* Trust bar logos */
.trust-bar {
  margin-top: 40px; text-align: center;
  animation: fadeInUp 0.8s ease-out 0.75s both;
}
.trust-bar-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-muted); margin-bottom: 16px; display: block;
}
.trust-bar-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.trust-logo {
  height: 24px; width: auto; opacity: 0.35;
  transition: opacity 0.3s, transform 0.3s;
}
.trust-logo:hover { opacity: 1; transform: scale(1.1); }
.trust-logo-wide { height: 22px; }

/* Product logos */
.product-logo { height: 36px; width: auto; margin-bottom: 16px; display: block; }
.product-logo-wide { height: 28px; }
.product-icon-text {
  font-size: 28px; font-weight: 900; margin-bottom: 16px; display: block;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Table logos */
.table-logo { height: 18px; width: auto; vertical-align: middle; margin-right: 6px; }

/* Footer disclaimer */
.footer-disclaimer {
  font-size: 11px; color: var(--text-muted); text-align: center;
  margin-bottom: 24px; line-height: 1.5; opacity: 0.7;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ════════════════ SECTIONS COMMON ════════════════ */
section { padding: 80px 0; position: relative; }
.section-label {
  display: inline-block; font-size: 13px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--green); margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px); font-weight: 800;
  letter-spacing: -1px; margin-bottom: 16px;
}
.section-subtitle {
  font-size: 18px; color: var(--text-sub); max-width: 600px;
  margin: 0 auto 60px; line-height: 1.6;
}
.section-header { text-align: center; }

/* ════════════════ PRODUCTS ════════════════ */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden; cursor: pointer;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; border-radius: 4px 0 0 4px;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.product-card[data-color="green"]::before { background: var(--green); }
.product-card[data-color="blue"]::before { background: var(--blue); }
.product-card[data-color="yellow"]::before { background: var(--yellow); }
.product-card[data-color="purple"]::before { background: var(--purple); }
.product-card[data-color="orange"]::before { background: var(--orange); }
.product-card[data-color="red"]::before { background: var(--red); }
.product-card[data-color="pink"]::before { background: var(--pink); }
.product-card:hover .product-glow { opacity: 1; }
.product-glow {
  position: absolute; top: -50%; right: -50%;
  width: 200%; height: 200%; opacity: 0;
  transition: opacity 0.5s; pointer-events: none;
}
.product-card[data-color="green"] .product-glow { background: radial-gradient(circle at 30% 60%, rgba(16,185,129,0.06) 0%, transparent 60%); }
.product-card[data-color="blue"] .product-glow { background: radial-gradient(circle at 30% 60%, rgba(59,130,246,0.06) 0%, transparent 60%); }
.product-card[data-color="yellow"] .product-glow { background: radial-gradient(circle at 30% 60%, rgba(234,179,8,0.06) 0%, transparent 60%); }
.product-card[data-color="purple"] .product-glow { background: radial-gradient(circle at 30% 60%, rgba(139,92,246,0.06) 0%, transparent 60%); }
.product-card[data-color="orange"] .product-glow { background: radial-gradient(circle at 30% 60%, rgba(249,115,22,0.06) 0%, transparent 60%); }
.product-card[data-color="red"] .product-glow { background: radial-gradient(circle at 30% 60%, rgba(239,68,68,0.06) 0%, transparent 60%); }
.product-card[data-color="pink"] .product-glow { background: radial-gradient(circle at 30% 60%, rgba(236,72,153,0.06) 0%, transparent 60%); }
.product-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.product-name { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.product-platform {
  display: inline-block; font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 50px; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.platform-shopify { background: rgba(16,185,129,0.12); color: var(--green); }
.platform-woo { background: rgba(139,92,246,0.12); color: var(--purple); }
.platform-ps { background: rgba(59,130,246,0.12); color: var(--blue); }
.product-desc { font-size: 14px; color: var(--text-sub); line-height: 1.5; margin-bottom: 16px; }
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.product-tag {
  font-size: 11px; color: var(--text-muted); padding: 4px 10px;
  border: 1px solid var(--border); border-radius: 50px;
}
.product-price {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
  font-size: 14px; color: var(--text-sub);
}
.product-price strong {
  font-size: 20px; font-weight: 800; color: var(--text);
}

/* ════════════════ PRICING TABS ════════════════ */
.pricing-tabs {
  display: flex; justify-content: center; gap: 8px;
  margin-bottom: 40px; flex-wrap: wrap;
}
.pricing-tab {
  padding: 12px 28px; border-radius: 50px; border: 1px solid var(--border);
  background: var(--bg-card); color: var(--text-sub);
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all 0.3s;
}
.pricing-tab:hover { border-color: var(--border-hover); color: white; }
.pricing-tab.active {
  background: var(--gradient); border-color: transparent;
  color: white; box-shadow: 0 4px 20px rgba(16,185,129,0.25);
}
.pricing-panel { display: none; animation: fadeInUp 0.5s ease-out; }
.pricing-panel.active { display: block; }
.pricing-panel-desc {
  text-align: center; font-size: 15px; color: var(--text-sub);
  margin-bottom: 32px;
}

/* ════════════════ STEPS ════════════════ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 40px;
  left: 16.66%; right: 16.66%; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--purple));
  opacity: 0.3;
}
.step { text-align: center; position: relative; }
.step-number {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800; margin: 0 auto 24px;
  position: relative; z-index: 1;
}
.step:nth-child(1) .step-number { background: rgba(16,185,129,0.1); color: var(--green); border: 2px solid rgba(16,185,129,0.2); }
.step:nth-child(2) .step-number { background: rgba(59,130,246,0.1); color: var(--blue); border: 2px solid rgba(59,130,246,0.2); }
.step:nth-child(3) .step-number { background: rgba(139,92,246,0.1); color: var(--purple); border: 2px solid rgba(139,92,246,0.2); }
.step-icon { font-size: 32px; margin-bottom: 4px; }
.step-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.step-desc { font-size: 14px; color: var(--text-sub); line-height: 1.6; }

/* ════════════════ PLATFORMS TABLE ════════════════ */
.platforms-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
}
.platforms-table th {
  padding: 20px 24px; font-size: 15px; font-weight: 700;
  color: var(--text-sub); border-bottom: 1px solid var(--border);
  text-align: center;
}
.platforms-table th:first-child { text-align: left; }
.platforms-table td {
  padding: 16px 24px; border-bottom: 1px solid var(--border);
  text-align: center; font-size: 14px;
}
.platforms-table td:first-child { text-align: left; font-weight: 600; }
.platforms-table tr:last-child td { border-bottom: none; }
.platforms-table tr:hover td { background: rgba(255,255,255,0.02); }
.check { color: var(--green); font-size: 20px; }
.soon { color: var(--yellow); font-size: 12px; }
.platform-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
.platform-stat {
  text-align: center; padding: 24px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px;
}
.platform-stat-num { font-size: 28px; font-weight: 800; margin-bottom: 4px; }
.platform-stat-label { font-size: 13px; color: var(--text-sub); }

/* ════════════════ METRICS ════════════════ */
.metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 60px;
}
.metric {
  text-align: center; padding: 32px 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px;
}
.metric-value {
  font-size: 42px; font-weight: 900; margin-bottom: 4px;
}
.metric-label { font-size: 14px; color: var(--text-sub); }

/* ════════════════ TESTIMONIALS ════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
  transition: all 0.4s;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: var(--border-hover); }
.testimonial-stars { color: var(--yellow); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote { font-size: 15px; color: var(--text-sub); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { font-size: 14px; font-weight: 600; }
.testimonial-role { font-size: 12px; color: var(--text-muted); }
.testimonial-badge {
  display: inline-block; font-size: 11px; padding: 3px 10px;
  border-radius: 50px; margin-top: 8px; font-weight: 600;
}

/* ════════════════ PRICING ════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px 32px;
  transition: all 0.4s; position: relative;
}
.pricing-card.featured {
  border-color: transparent; transform: scale(1.05);
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
              var(--gradient) border-box;
  border: 2px solid transparent;
  box-shadow: 0 20px 60px rgba(16,185,129,0.1);
}
.pricing-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: white;
  padding: 6px 20px; border-radius: 50px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.pricing-name { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.pricing-price { font-size: 48px; font-weight: 900; margin-bottom: 4px; }
.pricing-price span { font-size: 18px; font-weight: 400; color: var(--text-sub); }
.pricing-desc { font-size: 14px; color: var(--text-sub); margin-bottom: 32px; }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
  padding: 8px 0; font-size: 14px; color: var(--text-sub);
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; }
.pricing-features li.no::before { content: '✗'; color: var(--text-muted); }
.pricing-features li.no { color: var(--text-muted); }
.pricing-btn {
  display: block; width: 100%; padding: 14px; border-radius: 12px;
  border: none; font-size: 15px; font-weight: 700; cursor: pointer;
  text-align: center; text-decoration: none; transition: all 0.3s;
}
.pricing-btn-primary { background: var(--gradient); color: white; }
.pricing-btn-primary:hover { box-shadow: 0 8px 30px rgba(16,185,129,0.3); transform: translateY(-2px); }
.pricing-btn-secondary { background: rgba(255,255,255,0.05); color: white; border: 1px solid var(--border); }
.pricing-btn-secondary:hover { background: rgba(255,255,255,0.1); }
.pricing-note { text-align: center; margin-top: 32px; font-size: 13px; color: var(--text-muted); }

/* ════════════════ FAQ ════════════════ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: 12px;
  margin-bottom: 12px; overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.active { border-color: rgba(16,185,129,0.3); }
.faq-question {
  padding: 20px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 600;
  background: var(--bg-card); transition: background 0.3s;
}
.faq-question:hover { background: var(--bg-card-hover); }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--text-sub); transition: all 0.3s;
  flex-shrink: 0;
}
.faq-item.active .faq-toggle { background: var(--green); color: white; transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-inner {
  padding: 0 24px 20px; font-size: 14px;
  color: var(--text-sub); line-height: 1.7;
}

/* ════════════════ FINAL CTA ════════════════ */
.cta-section {
  text-align: center; padding: 120px 0; position: relative;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.08), transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(36px, 5vw, 56px); font-weight: 900;
  letter-spacing: -1px; margin-bottom: 16px;
}
.cta-subtitle { font-size: 18px; color: var(--text-sub); margin-bottom: 40px; }
.cta-email { font-size: 14px; color: var(--text-muted); margin-top: 20px; }
.cta-email a { color: var(--green); text-decoration: none; }

/* ════════════════ FOOTER ════════════════ */
.footer {
  border-top: 1px solid var(--border); padding: 60px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-desc { font-size: 14px; color: var(--text-sub); margin: 12px 0 16px; line-height: 1.6; }
.footer-email { color: var(--green); text-decoration: none; font-size: 14px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; color: var(--text-sub); }
.footer-col a { display: block; color: var(--text-muted); text-decoration: none; font-size: 14px; padding: 4px 0; transition: color 0.3s; }
.footer-col a:hover { color: white; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-muted); }

/* ════════════════ SCROLL ANIMATIONS ════════════════ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.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; }

/* ════════════════ RESPONSIVE ════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(8,12,20,0.95); backdrop-filter: blur(20px);
    padding: 24px; gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .platform-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { letter-spacing: -1px; }
  .platforms-table { font-size: 13px; }
  .platforms-table th, .platforms-table td { padding: 12px 8px; }
}
