/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #0C4A6E;
  line-height: 1.65;
  background: #F0F9FF;
  overflow-x: hidden;
  position: relative;
}
:root {
  --primary: #0369A1;
  --primary-dark: #075985;
  --secondary: #0EA5E9;
  --cta: #22C55E;
  --cta-dark: #16A34A;
  --bg: #F0F9FF;
  --text: #0C4A6E;
  --text-muted: #475569;
  --white: #ffffff;
  --border: #E0F2FE;
  --shadow-sm: 0 2px 8px rgba(3, 105, 161, 0.06);
  --shadow: 0 10px 30px rgba(3, 105, 161, 0.10);
  --shadow-lg: 0 20px 50px rgba(3, 105, 161, 0.15);
  --grad-hero: linear-gradient(135deg, #0EA5E9 0%, #0369A1 50%, #6366F1 100%);
  --grad-cta: linear-gradient(135deg, #22C55E 0%, #10B981 100%);
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.2; color: #0C4A6E; letter-spacing: -0.02em; }
h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 22px; }
h2 { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 18px; text-align: center; }
h3 { font-size: 20px; margin-bottom: 12px; }
p { color: var(--text-muted); }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--secondary); }

.text-gradient {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-animation {
  position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
.bg-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .35;
  animation: float 22s ease-in-out infinite;
}
.blob-1 { width: 600px; height: 600px; background: #0EA5E9; top: -200px; left: -200px; }
.blob-2 { width: 500px; height: 500px; background: #6366F1; top: 30%; right: -150px; animation-delay: -7s; animation-duration: 28s; }
.blob-3 { width: 700px; height: 700px; background: #22C55E; bottom: -300px; left: 30%; animation-delay: -14s; animation-duration: 32s; opacity: .22; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, -60px) scale(1.1); }
  66% { transform: translate(-60px, 80px) scale(.9); }
}
#particles { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 12px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: none; font-family: inherit;
  transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap; text-decoration: none;
}
.btn-large { padding: 16px 32px; font-size: 16px; border-radius: 14px; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 14px rgba(3, 105, 161, 0.3);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 6px 20px rgba(3, 105, 161, 0.4); transform: translateY(-1px); }
.btn-cta {
  background: var(--grad-cta); color: #fff;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}
.btn-cta:hover { box-shadow: 0 10px 30px rgba(34, 197, 94, 0.5); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,.7); color: var(--primary);
  border: 1.5px solid rgba(3,105,161,.2); backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: #fff; border-color: var(--primary); }
.btn:focus-visible { outline: 3px solid #FBBF24; outline-offset: 3px; }

/* ===== HEADER ===== */
#site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 24px; }
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 22px; color: var(--primary);
}
.logo svg { color: var(--secondary); }
nav ul { display: flex; gap: 32px; list-style: none; }
nav ul a { color: var(--text); font-weight: 500; font-size: 15px; position: relative; padding: 6px 0; }
nav ul a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--secondary);
  transition: width .25s;
}
nav ul a:hover::after { width: 100%; }
.nav-actions { display: flex; gap: 14px; align-items: center; }
.link-muted { color: var(--text-muted); font-weight: 500; font-size: 14px; }

.burger {
  display: none; background: none; border: none; padding: 8px;
  flex-direction: column; gap: 4px; cursor: pointer;
}
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }
.burger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===== HERO ===== */
.hero { padding: 80px 0 100px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(34, 197, 94, 0.1); color: var(--cta-dark);
  padding: 8px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cta);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.hero p.lead { font-size: 18px; margin-bottom: 32px; max-width: 560px; }
.hero-buttons { display: flex; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; font-size: 14px; color: var(--text-muted); }
.trust-item { display: flex; align-items: center; gap: 6px; }
.trust-item svg { color: var(--cta); }

/* APP MOCKUP */
.hero-visual { display: flex; justify-content: center; }
.app-window {
  width: 100%; max-width: 420px;
  background: #fff; border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.app-titlebar {
  background: #F1F5F9; padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid #E2E8F0;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-r { background: #EF4444; } .dot-y { background: #F59E0B; } .dot-g { background: #22C55E; }
.app-title { margin-left: auto; margin-right: auto; font-size: 13px; color: var(--text-muted); font-weight: 600; }
.app-body { padding: 32px 28px; }
.connect-circle {
  position: relative; width: 180px; height: 180px;
  margin: 0 auto 24px; display: flex; align-items: center; justify-content: center;
}
.connect-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--cta); opacity: .4;
  animation: ringPulse 2.5s ease-out infinite;
}
.connect-ring-2 { animation-delay: 1.25s; }
@keyframes ringPulse {
  0% { transform: scale(.7); opacity: .7; }
  100% { transform: scale(1.15); opacity: 0; }
}
.connect-btn {
  width: 140px; height: 140px; border-radius: 50%;
  background: var(--grad-cta); color: #fff;
  border: none; font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: .1em;
  cursor: pointer; box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
  transition: transform .2s;
}
.connect-btn:hover { transform: scale(1.05); }
.app-stats { display: flex; flex-direction: column; gap: 10px; }
.stat-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; background: #F8FAFC; border-radius: 10px;
  font-size: 14px;
}
.stat-row span { color: var(--text-muted); }
.stat-row strong { color: var(--text); font-weight: 600; }
.speed-num { color: var(--cta-dark) !important; }

/* ===== METRICS STRIP ===== */
.metrics-strip {
  background: var(--grad-hero); color: #fff;
  padding: 36px 0; position: relative;
}
.metrics-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  text-align: center;
}
.metrics-grid > div { display: flex; flex-direction: column; gap: 4px; }
.metrics-grid strong { font-family: 'Space Grotesk', sans-serif; font-size: 30px; font-weight: 700; }
.metrics-grid span { font-size: 13px; opacity: .85; }

/* ===== SECTION HEAD ===== */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.kicker {
  display: inline-block; color: var(--secondary);
  font-weight: 700; font-size: 13px; letter-spacing: .15em;
  margin-bottom: 16px;
}
.section-sub { font-size: 17px; margin-top: 14px; }

/* ===== PLATFORMS ===== */
.platforms { padding: 80px 0; }
.platforms .section-sub { text-align: center; max-width: 680px; margin: 0 auto 36px; }
.platforms h2 { margin-bottom: 14px; }
.platforms-list {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.platform {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; background: #fff; border: 1px solid var(--border);
  border-radius: 12px; font-weight: 600; font-size: 14px;
  color: var(--text); box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: pointer;
}
.platform:hover { transform: translateY(-3px); border-color: var(--secondary); box-shadow: var(--shadow); }
.platform svg { color: var(--secondary); }

/* ===== FEATURES ===== */
.features { padding: 80px 0; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 32px; border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(14, 165, 233, 0.3); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: #fff;
}
.icon-blue { background: linear-gradient(135deg, #0EA5E9, #0369A1); }
.icon-green { background: linear-gradient(135deg, #22C55E, #16A34A); }
.icon-purple { background: linear-gradient(135deg, #8B5CF6, #6366F1); }
.icon-orange { background: linear-gradient(135deg, #F59E0B, #F97316); }
.icon-pink { background: linear-gradient(135deg, #EC4899, #DB2777); }
.icon-teal { background: linear-gradient(135deg, #14B8A6, #0D9488); }

/* ===== STEPS ===== */
.steps { padding: 80px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step {
  text-align: center; padding: 36px 24px;
  background: #fff; border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  width: 56px; height: 56px; line-height: 56px;
  border-radius: 50%; background: var(--grad-hero);
  color: #fff; font-family: 'Space Grotesk', sans-serif;
  font-size: 24px; font-weight: 700;
  margin: 0 auto 22px;
  box-shadow: 0 8px 20px rgba(3, 105, 161, 0.3);
}
.step-meta {
  display: inline-block; margin-top: 14px;
  padding: 4px 12px; background: #F0F9FF;
  border-radius: 100px; font-size: 12px; font-weight: 600;
  color: var(--primary);
}

/* ===== USE CASES ===== */
.usecases { padding: 80px 0; }
.usecases-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.usecase {
  background: rgba(255,255,255,.85); backdrop-filter: blur(10px);
  padding: 26px; border-radius: 14px;
  border: 1px solid var(--border);
  transition: transform .25s, border-color .25s;
  cursor: pointer;
}
.usecase:hover { transform: translateY(-4px); border-color: var(--secondary); }
.uc-icon { font-size: 32px; margin-bottom: 14px; }
.usecase h3 { font-size: 17px; margin-bottom: 8px; }
.usecase p { font-size: 14px; }

/* ===== PRICING ===== */
.comparison { padding: 80px 0; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 820px; margin: 0 auto;
}
.price-card {
  background: #fff; padding: 40px 32px; border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.price-card-featured {
  background: linear-gradient(180deg, #fff 0%, #F0F9FF 100%);
  border: 2px solid var(--cta);
  box-shadow: 0 20px 50px rgba(34, 197, 94, 0.18);
  transform: scale(1.02);
}
.price-badge {
  display: inline-block; align-self: flex-start;
  padding: 6px 14px; background: #F0F9FF;
  color: var(--primary); border-radius: 100px;
  font-size: 13px; font-weight: 700;
}
.price-badge-hot { background: var(--cta); color: #fff; }
.price-card h3 { font-size: 44px; margin: 0; }
.price-month { font-size: 16px; color: var(--text-muted); font-weight: 500; }
.price-sub { font-size: 14px; color: var(--text-muted); margin-top: -10px; }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.price-list li { color: var(--text); }
.price-list li.muted { color: #94A3B8; text-decoration: line-through; }
.guarantee-mini { font-size: 13px; color: var(--text-muted); text-align: center; }

/* ===== REVIEWS ===== */
.reviews { padding: 80px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: #fff; padding: 30px; border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s, box-shadow .25s;
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars { color: #F59E0B; font-size: 18px; letter-spacing: 2px; }
.review p { font-size: 15px; color: var(--text); }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 14px;
  font-family: 'Space Grotesk', sans-serif;
}
.avatar-1 { background: linear-gradient(135deg, #0EA5E9, #6366F1); }
.avatar-2 { background: linear-gradient(135deg, #EC4899, #F59E0B); }
.avatar-3 { background: linear-gradient(135deg, #22C55E, #0EA5E9); }
.review-author strong { display: block; font-size: 14px; color: var(--text); }
.review-author small { font-size: 12px; color: var(--text-muted); }

/* ===== MEDIA ===== */
.media { padding: 60px 0; text-align: center; }
.media-title { font-size: 16px !important; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 28px; }
.media-logos {
  display: flex; justify-content: center; gap: 50px;
  flex-wrap: wrap; opacity: .55;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 22px; color: var(--text);
}

/* ===== CTA ===== */
.cta-block {
  padding: 80px 0; margin: 40px 24px; border-radius: 28px;
  background: var(--grad-hero);
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,.15), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(34,197,94,.2), transparent 50%);
}
.cta-inner { position: relative; }
.cta-block h2 { color: #fff; margin-bottom: 16px; }
.cta-block p { color: rgba(255,255,255,.9); margin-bottom: 32px; font-size: 18px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.guarantee { font-size: 14px; color: rgba(255,255,255,.85); }

/* ===== FAQ ===== */
.faq { padding: 80px 0; }
.faq-container { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 4px 24px;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] { border-color: var(--secondary); box-shadow: var(--shadow-sm); }
.faq-item summary {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 16px; color: var(--text);
  cursor: pointer; padding: 18px 0;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: #F0F9FF; color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 400;
  transition: transform .25s, background .25s;
  flex-shrink: 0;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--secondary); color: #fff; }
.faq-item p { padding: 0 0 20px; font-size: 15px; line-height: 1.7; }

/* ===== FOOTER ===== */
footer {
  background: #0F172A; color: #CBD5E1;
  padding: 70px 0 30px; position: relative; z-index: 2;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 50px;
  margin-bottom: 40px;
}
.footer-logo { color: #fff; margin-bottom: 18px; }
.footer-logo svg { color: var(--secondary); }
.footer-about { color: #94A3B8; font-size: 14px; line-height: 1.7; }
footer h4 { color: #fff; margin-bottom: 18px; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul a { color: #CBD5E1; font-size: 14px; }
footer ul a:hover { color: var(--secondary); }
.footer-bottom {
  border-top: 1px solid #1E293B; padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: #94A3B8;
}

/* ===== MODAL ===== */
.modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal.active { display: flex; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(12, 74, 110, 0.6);
  backdrop-filter: blur(8px);
}
.modal-card {
  position: relative; background: #fff;
  padding: 40px; border-radius: 20px;
  max-width: 440px; width: 100%;
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: pop .35s cubic-bezier(.34, 1.56, .64, 1);
}
@keyframes pop { from { transform: scale(.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: #F1F5F9; border: none; border-radius: 50%;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-muted); transition: background .2s;
}
.modal-close:hover { background: #E2E8F0; color: var(--text); }
.modal-icon {
  width: 80px; height: 80px; border-radius: 20px;
  background: var(--grad-cta); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.35);
}
.modal-card h3 { font-size: 22px; margin-bottom: 10px; }
.modal-card > p { margin-bottom: 18px; }
.modal-progress {
  height: 6px; background: #F1F5F9; border-radius: 100px;
  overflow: hidden; margin-bottom: 24px;
}
.modal-progress-bar {
  height: 100%; width: 0%;
  background: var(--grad-cta);
  transition: width .3s linear;
}
.modal-info {
  display: flex; flex-direction: column; gap: 8px;
  background: #F8FAFC; padding: 16px; border-radius: 12px;
  margin-bottom: 22px; font-size: 13px; color: var(--text-muted); text-align: left;
}
.modal-info strong { color: var(--text); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: #0F172A; color: #fff;
  padding: 14px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 1100; opacity: 0;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), opacity .3s;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ===== ABOUT PROSE ===== */
.about-prose { padding: 30px 0 50px; }
.about-card {
  background: rgba(255,255,255,.85); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: 18px;
  padding: 36px 40px; box-shadow: var(--shadow-sm);
}
.about-card h2 { font-size: 24px; margin-bottom: 14px; text-align: left; }
.about-card p { font-size: 16px; line-height: 1.75; color: var(--text); }

/* ===== VS COMPARISON TABLE ===== */
.vs-section { padding: 80px 0; }
.vs-table-wrap {
  overflow-x: auto; border-radius: 18px;
  box-shadow: var(--shadow); background: #fff;
}
.vs-table {
  width: 100%; border-collapse: collapse; min-width: 720px;
  font-size: 15px;
}
.vs-table thead th {
  background: var(--grad-hero); color: #fff;
  padding: 18px 16px; text-align: center; font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
}
.vs-table thead th:first-child { text-align: left; }
.vs-table thead th.vs-highlight { background: var(--grad-cta); }
.vs-table tbody td {
  padding: 14px 16px; text-align: center;
  border-bottom: 1px solid var(--border); color: var(--text);
}
.vs-table tbody td:first-child { text-align: left; color: var(--text-muted); font-weight: 500; }
.vs-table tbody td.vs-highlight { background: rgba(34, 197, 94, 0.05); font-weight: 600; color: var(--cta-dark); }
.vs-table tbody tr:last-child td { border-bottom: none; }
.vs-table tbody tr:hover { background: rgba(14, 165, 233, 0.04); }
.vs-table tbody tr:hover td.vs-highlight { background: rgba(34, 197, 94, 0.10); }
.vs-note { margin-top: 18px; font-size: 13px; color: var(--text-muted); text-align: center; font-style: italic; }

/* ===== MODAL DISCLAIMER ===== */
.modal-disclaimer {
  margin-top: 6px; padding-top: 10px;
  border-top: 1px dashed #FCD34D;
  color: #B45309; font-size: 12px;
}

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 60px 0 100px; max-width: 760px; margin: 0 auto; }
.legal-page h1 { font-size: 36px; margin-bottom: 20px; }
.legal-page h2 { font-size: 22px; text-align: left; margin: 30px 0 12px; }
.legal-page p, .legal-page li { font-size: 15px; line-height: 1.75; color: var(--text); }
.legal-page ul { margin: 12px 0 12px 24px; }
.legal-page .updated { color: var(--text-muted); font-size: 13px; margin-bottom: 24px; }
.legal-page a { text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid, .usecases-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hero { padding: 50px 0 70px; }
  .hero-grid, .steps-grid, .reviews-grid, .pricing-grid { grid-template-columns: 1fr; }
  .features-grid, .usecases-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  nav ul { display: none; }
  nav ul.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 20px 24px;
    box-shadow: var(--shadow);
    border-top: 1px solid var(--border);
  }
  nav ul.open li { padding: 12px 0; border-bottom: 1px solid var(--border); }
  nav ul.open li:last-child { border-bottom: none; }
  .burger { display: flex; }
  .nav-actions .link-muted { display: none; }
  .cta-block { margin: 30px 16px; padding: 60px 24px; }
  .price-card-featured { transform: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .bg-blob, .connect-ring, .pulse, .app-window { animation: none !important; }
}
