/* ═══════════════════════════════════════════════════════════════
   Phoenix Suite — Marketing Site Styles
   Pure CSS, no frameworks. Sub-second load.
   ═══════════════════════════════════════════════════════════════ */

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #050709;
  color: #c8d0de;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ─── Animations ────────────────────────────────────────────── */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--delay, 0s);
}
.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes glow-drift { 0% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-20px) scale(1.1); } 100% { transform: translate(0,0) scale(1); } }

/* ─── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  background: rgba(5,7,9,.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(5,7,9,.92);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 700; color: #fff;
}
.nav-logo img { border-radius: 8px; }
.nav-links {
  display: flex; gap: 28px; flex: 1;
}
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: #8493ad;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-link-subtle { opacity: .7; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.nav-mobile-toggle span {
  display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 10px;
  font-family: inherit; font-size: 14px; font-weight: 600;
  cursor: pointer; border: none; transition: all .2s;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, #5b6cf0, #7c3aed);
  color: #fff; box-shadow: 0 4px 20px rgba(91,108,240,.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(91,108,240,.4);
}
.btn-outline {
  background: transparent; color: #c8d0de;
  border: 1px solid rgba(255,255,255,.15);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.05);
}
.btn-ghost {
  background: transparent; color: #8493ad;
  padding: 8px 16px;
}
.btn-ghost:hover { color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 14px 32px; font-size: 15px; border-radius: 12px; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Section Utilities ─────────────────────────────────────── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-tag {
  display: inline-block; padding: 4px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  color: #5b6cf0; background: rgba(91,108,240,.1);
  border: 1px solid rgba(91,108,240,.2);
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800;
  color: #fff; line-height: 1.15; margin-bottom: 16px;
}
.section-header p { font-size: 16px; color: #8493ad; line-height: 1.7; }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative; padding: 140px 0 60px;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(120px); opacity: .5;
}
.hero-glow-1 {
  width: 600px; height: 600px; top: -200px; left: 10%;
  background: radial-gradient(circle, rgba(91,108,240,.25), transparent 70%);
  animation: glow-drift 12s ease-in-out infinite;
}
.hero-glow-2 {
  width: 500px; height: 500px; top: 100px; right: 5%;
  background: radial-gradient(circle, rgba(192,38,211,.2), transparent 70%);
  animation: glow-drift 15s ease-in-out infinite reverse;
}
.hero-glow-3 {
  width: 400px; height: 400px; bottom: -100px; left: 40%;
  background: radial-gradient(circle, rgba(6,182,212,.15), transparent 70%);
  animation: glow-drift 18s ease-in-out infinite 3s;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 28px;
  font-size: 12.5px; font-weight: 500; color: #22c55e;
  background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.2);
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
  animation: pulse 2s ease-in-out infinite;
}
.hero-title {
  font-size: clamp(36px, 6vw, 64px); font-weight: 900;
  color: #fff; line-height: 1.08; margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero-gradient-text {
  background: linear-gradient(135deg, #5b6cf0 0%, #c026d3 50%, #06b6d4 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px); color: #8493ad;
  max-width: 620px; margin: 0 auto 36px; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 28px; font-weight: 800; color: #fff; }
.hero-stat span { font-size: 12px; color: #5e6b80; text-transform: uppercase; letter-spacing: .5px; font-weight: 500; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.08); }

/* Mockup */
.hero-mockup { position: relative; z-index: 1; max-width: 960px; margin: 60px auto 0; }
.mockup-browser {
  background: #0d1017; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05);
}
.mockup-dots {
  display: flex; gap: 6px; padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.1); }
.mockup-screen { aspect-ratio: 16/9.5; background: #0a0d14; overflow: hidden; }
.mockup-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ─── Social Proof Bar ──────────────────────────────────────── */
.proof { padding: 48px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.proof-label {
  text-align: center; font-size: 12px; text-transform: uppercase;
  letter-spacing: 1px; color: #3e4a5e; font-weight: 600; margin-bottom: 20px;
}
.proof-items {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 24px 40px;
}
.proof-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 500; color: #6b7a90;
}
.proof-item svg { color: #22c55e; flex-shrink: 0; }

/* ─── Problem / Solution ────────────────────────────────────── */
.problem { padding: 100px 0; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto; }
.problem-card {
  padding: 36px; border-radius: 16px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
}
.problem-card-good {
  background: rgba(34,197,94,.03);
  border-color: rgba(34,197,94,.15);
}
.problem-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04); margin-bottom: 20px;
  color: var(--accent);
}
.problem-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.problem-list li {
  padding: 6px 0; font-size: 14px; color: #6b7a90;
  padding-left: 22px; position: relative;
}
.problem-list li::before {
  content: '\2717'; position: absolute; left: 0; color: #ef4444; font-size: 12px;
}
.problem-list-good li::before { content: '\2713'; color: #22c55e; }

/* ─── Feature Cards ─────────────────────────────────────────── */
.features { padding: 100px 0; }
.feature-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
  padding: 32px; border-radius: 16px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05);
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
}
.feature-card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  color: var(--card-accent, #5b6cf0); margin-bottom: 20px;
}
.feature-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.feature-card p { font-size: 13.5px; color: #6b7a90; line-height: 1.6; margin-bottom: 16px; }
.feature-tag {
  display: inline-block; padding: 3px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .3px;
  color: #5b6cf0; background: rgba(91,108,240,.1);
}
.tag-gold { color: #f59e0b; background: rgba(245,158,11,.1); }

/* ─── Highlight Sections ────────────────────────────────────── */
.highlight { padding: 100px 0; }
.highlight-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.highlight-reverse .highlight-inner { direction: rtl; }
.highlight-reverse .highlight-inner > * { direction: ltr; }
.highlight-text h2 {
  font-size: clamp(28px, 3.5vw, 38px); font-weight: 800;
  color: #fff; line-height: 1.15; margin-bottom: 16px;
}
.highlight-text p { font-size: 15px; color: #8493ad; line-height: 1.7; margin-bottom: 28px; }
.highlight-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: 14px; color: #c8d0de;
}
.highlight-features svg { color: #22c55e; flex-shrink: 0; }

/* Kiosk mockup */
.kiosk-mockup {
  background: #0d1017; border-radius: 20px; padding: 32px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
}
.kiosk-header {
  font-size: 18px; font-weight: 700; color: #fff;
  text-align: center; margin-bottom: 24px;
}
.kiosk-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px;
}
.kiosk-avatar {
  aspect-ratio: 1; border-radius: 14px;
  background: var(--bg); display: flex;
  align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; color: #fff;
  cursor: pointer; transition: transform .2s, box-shadow .2s;
}
.kiosk-avatar:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.kiosk-status {
  text-align: center; font-size: 13px; color: #5e6b80;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,.06);
}

/* Phone mockup */
.phone-mockup {
  width: 280px; margin: 0 auto;
  background: #0d1017; border-radius: 32px; padding: 12px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
}
.phone-notch {
  width: 100px; height: 6px; background: #1a1f2b;
  border-radius: 4px; margin: 0 auto 16px;
}
.phone-screen { padding: 8px 16px 24px; }
.phone-header {
  font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 20px;
}
.phone-card {
  padding: 14px; border-radius: 12px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  margin-bottom: 12px;
}
.phone-label { font-size: 11px; color: #5e6b80; text-transform: uppercase; letter-spacing: .5px; font-weight: 600; margin-bottom: 4px; }
.phone-value { font-size: 14px; color: #e4e8f0; font-weight: 500; }
.phone-sub { font-size: 12px; color: #5e6b80; margin-top: 4px; }
.phone-belt { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #e4e8f0; font-weight: 500; }
.belt-chip { width: 18px; height: 10px; border-radius: 3px; flex-shrink: 0; }

/* ─── Pricing ───────────────────────────────────────────────── */
.pricing { padding: 100px 0; }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-cards-4 { grid-template-columns: repeat(4, 1fr); }
.pricing-card {
  padding: 36px; border-radius: 16px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  position: relative;
  transition: transform .3s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card-pop {
  background: rgba(91,108,240,.04);
  border-color: rgba(91,108,240,.25);
  box-shadow: 0 0 60px rgba(91,108,240,.08);
}
.pricing-card-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px; border-radius: 20px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  color: #fff; background: linear-gradient(135deg, #5b6cf0, #7c3aed);
}
.pricing-card-header h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.pricing-card-header p { font-size: 13px; color: #5e6b80; margin-bottom: 20px; }
.pricing-price { margin-bottom: 28px; }
.pricing-amount { font-size: 48px; font-weight: 900; color: #fff; letter-spacing: -.02em; }
.pricing-period { font-size: 16px; color: #5e6b80; font-weight: 400; }
.pricing-features { margin-bottom: 28px; }
.pricing-features li {
  padding: 8px 0; font-size: 13.5px; color: #8493ad;
  padding-left: 24px; position: relative;
}
.pricing-features li::before {
  content: '\2713'; position: absolute; left: 0; color: #22c55e; font-size: 13px;
}
.pricing-features li strong { color: #c8d0de; }
.pricing-features li em { color: #5e6b80; font-size: 12px; font-style: normal; }
.pricing-divider { height: 1px; background: rgba(255,255,255,.06); margin: 4px 0; padding: 0 !important; }
.pricing-divider::before { display: none; }

/* Platinum card */
.pricing-card-plat {
  background: rgba(245,158,11,.03);
  border-color: rgba(245,158,11,.2);
  box-shadow: 0 0 60px rgba(245,158,11,.06);
}
.pricing-badge-plat {
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;
}

/* Add-ons section */
.pricing-addons { margin-top: 48px; text-align: center; }
.pricing-addon-label {
  font-size: 13px; font-weight: 600; color: #5e6b80;
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 20px;
}
.pricing-addon-items { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.pricing-addon {
  padding: 20px 28px; border-radius: 12px;
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.06);
  text-align: left; min-width: 240px;
}
.pricing-addon strong { display: block; font-size: 14px; color: #fff; margin-bottom: 2px; }
.pricing-addon span { font-size: 16px; font-weight: 700; color: #5b6cf0; }
.pricing-addon p { font-size: 12px; color: #5e6b80; margin-top: 6px; }

/* ─── Comparison Table ──────────────────────────────────────── */
.comparison { padding: 100px 0; }
.comparison-table-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
.comparison-table th, .comparison-table td {
  padding: 14px 20px; text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.comparison-table th {
  font-size: 13px; font-weight: 600; color: #5e6b80;
  text-transform: uppercase; letter-spacing: .3px;
}
.comp-highlight {
  background: rgba(91,108,240,.04) !important;
  color: #fff;
  font-weight: 600;
}
.comp-yes { color: #22c55e; font-weight: 700; font-size: 16px; }
.comp-no { color: #ef4444; font-weight: 700; font-size: 16px; }
.comp-partial {
  font-size: 11px; padding: 2px 8px; border-radius: 4px;
  background: rgba(245,158,11,.1); color: #f59e0b; font-weight: 600;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq { padding: 100px 0; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.faq-item summary {
  padding: 20px 0; font-size: 16px; font-weight: 600; color: #e4e8f0;
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: '+'; font-size: 22px; color: #5e6b80; transition: transform .3s;
}
.faq-item[open] summary::after { content: '\2212'; color: #5b6cf0; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  padding: 0 0 20px; font-size: 14px; color: #8493ad; line-height: 1.7;
}

/* ─── Trial Signup ──────────────────────────────────────────── */
.trial { padding: 100px 0; }
.trial-card {
  padding: 56px; border-radius: 24px;
  background: linear-gradient(135deg, rgba(91,108,240,.06), rgba(192,38,211,.04));
  border: 1px solid rgba(91,108,240,.15);
  text-align: center;
}
.trial-text h2 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.trial-text p { font-size: 16px; color: #8493ad; margin-bottom: 36px; line-height: 1.7; }
.trial-row { display: flex; gap: 12px; margin-bottom: 12px; justify-content: center; }
.trial-input {
  padding: 14px 18px; border-radius: 10px; border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04); color: #fff; font-family: inherit;
  font-size: 14px; width: 200px; outline: none;
  transition: border-color .2s;
}
.trial-input:focus { border-color: #5b6cf0; }
.trial-input::placeholder { color: #3e4a5e; }
.trial-input-wide { width: 280px; }
.trial-row-submit { margin-top: 8px; }
.trial-btn { min-width: 240px; }
.trial-msg { margin-top: 16px; font-size: 14px; min-height: 24px; }
.trial-msg.success { color: #22c55e; }
.trial-msg.error { color: #ef4444; }
.trial-fine { font-size: 12px; color: #3e4a5e; margin-top: 16px; }

/* ─── Downloads ─────────────────────────────────────────────── */
.downloads { padding: 80px 0; }
.download-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.download-card {
  padding: 32px; border-radius: 16px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .3s, border-color .3s;
  text-align: center;
}
.download-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.12); }
.download-icon { color: #5b6cf0; margin: 0 auto 16px; }
.download-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.download-card p { font-size: 13px; color: #6b7a90; margin-bottom: 12px; line-height: 1.5; }
.download-meta { font-size: 12px; color: #3e4a5e; font-weight: 500; }

/* ─── Footer ────────────────────────────────────────────────── */
.footer { padding: 80px 0 0; border-top: 1px solid rgba(255,255,255,.04); }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-brand span { font-size: 18px; font-weight: 700; color: #fff; }
.footer-brand p { font-size: 13px; color: #5e6b80; line-height: 1.6; max-width: 280px; }
.footer-brand img { border-radius: 6px; }
.footer-col h4 {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .5px; color: #5e6b80; margin-bottom: 16px;
}
.footer-col a {
  display: block; padding: 5px 0; font-size: 13.5px; color: #6b7a90;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px; padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.04);
}
.footer-bottom p { font-size: 12px; color: #3e4a5e; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .feature-cards { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards, .pricing-cards-4 { grid-template-columns: repeat(2, 1fr); max-width: 700px; margin: 0 auto; }
  .highlight-inner { grid-template-columns: 1fr; gap: 40px; }
  .highlight-reverse .highlight-inner { direction: ltr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .comparison-table { font-size: 12px; }
  .download-cards { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(5,7,9,.98); padding: 20px 24px; gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  .hero { padding: 120px 0 40px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .problem-grid { grid-template-columns: 1fr; }
  .feature-cards { grid-template-columns: 1fr; }
  .pricing-cards, .pricing-cards-4 { grid-template-columns: 1fr; max-width: 380px; }
  .pricing-addon-items { flex-direction: column; align-items: center; }
  .trial-card { padding: 32px 20px; }
  .trial-row { flex-direction: column; align-items: center; }
  .trial-input, .trial-input-wide { width: 100%; max-width: 320px; }
  .footer-inner { grid-template-columns: 1fr; }
}
