﻿:root {
  --aeo-primary: #2563eb;
  --aeo-primary-dark: #1d4ed8;
  --aeo-accent: #7c3aed;
  --aeo-accent-light: #a78bfa;
  --aeo-dark: #0f172a;
  --aeo-mid: #1e293b;
  --aeo-text: #334155;
  --aeo-muted: #64748b;
  --aeo-border: #e2e8f0;
  --aeo-bg-light: #f8fafc;
  --aeo-gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --aeo-gradient-soft: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(37,99,235,.1);
  --shadow-lg: 0 20px 60px rgba(37,99,235,.14);
}

* { box-sizing: border-box; }

@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 400 700; font-display: swap;
  src: url('/fonts/Inter-Variable.woff2') format('woff2');
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--aeo-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.navbar {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--aeo-border);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--aeo-dark) !important;
  letter-spacing: -0.02em;
}

.navbar-brand span {
  background: var(--aeo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  font-weight: 500;
  font-size: .92rem;
  color: var(--aeo-muted) !important;
  padding: .5rem .9rem !important;
  border-radius: 8px;
  transition: color .2s, background .2s;
}

.nav-link:hover, .nav-link.active {
  color: var(--aeo-primary) !important;
  background: #eff6ff;
}

.nav-cta {
  background: var(--aeo-gradient) !important;
  color: #fff !important;
  border-radius: 8px;
  padding: .45rem 1.1rem !important;
  font-weight: 600;
}

.nav-cta.active {
  background: var(--aeo-gradient) !important;
  color: #fff !important;
  border-radius: 8px;
  padding: .45rem 1.1rem !important;
  font-weight: 600;
}

.nav-cta:hover { opacity: .9; background: var(--aeo-gradient) !important; }

.hero {
  background: var(--aeo-dark);
  position: relative;
  overflow: hidden;
  padding: 7rem 0 6rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 20%, rgba(124,58,237,.35) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 20% 80%, rgba(37,99,235,.3) 0%, transparent 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(124,58,237,.18);
  color: var(--aeo-accent-light);
  border: 1px solid rgba(124,58,237,.3);
  border-radius: 50px;
  padding: .35rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.25rem;
}

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

.typing {
    display: inline-block;
    position: relative;
    min-height: 2.4em;
}

.typing::after {
    content: "_";
    margin-left: 2px;
    animation: blink .75s infinite;
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.hero .badge-pill {
    display: inline-flex;
    margin-bottom: 1.5rem;
}

.hero h1.typing {
    display: block;
    width: 100%;
    margin-top: 0;
}

.hero p.lead {
  color: rgba(255,255,255,.65);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2rem;
}

.btn-hero-primary {
  background: var(--aeo-gradient);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: .85rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(124,58,237,.45);
  transition: transform .2s, box-shadow .2s;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124,58,237,.55);
  color: #fff;
}

.btn-hero-ghost {
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: .85rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  background: transparent;
  transition: all .2s;
}

.btn-hero-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
}

.hero-stats {
  margin-top: 3.5rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-top: .25rem;
  font-weight: 500;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  position: relative;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}

.hero-card-dot {
  width: 10px; height: 10px; border-radius: 50%;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.metric-row:last-child { border-bottom: none; }

.metric-label { color: rgba(255,255,255,.5); font-size: .83rem; }

.metric-value { color: #fff; font-weight: 700; font-size: .95rem; }

.metric-change {
  font-size: .75rem;
  font-weight: 600;
  padding: .15rem .5rem;
  border-radius: 20px;
}

.metric-change.up { background: rgba(34,197,94,.15); color: #4ade80; }
.metric-change.neutral { background: rgba(148,163,184,.15); color: #94a3b8; }

.floating-badge {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: .6rem 1rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--aeo-dark);
  white-space: nowrap;
}

.floating-badge.top-right {
  top: -1.5rem;
  right: -1rem;
}

.floating-badge.bottom-left {
  bottom: -1.5rem;
  left: -1rem;
}

.trust-bar {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--aeo-border);
}

.trust-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--aeo-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-logo {
  font-weight: 700;
  font-size: 1.05rem;
  color: #cbd5e1;
  letter-spacing: -0.02em;
  transition: color .2s;
}

.trust-logo:hover { color: var(--aeo-muted); }

.section-label {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--aeo-primary);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--aeo-dark);
  line-height: 1.15;
}

.section-sub {
  color: var(--aeo-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
}

.service-card {
  border: 1px solid var(--aeo-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--aeo-gradient);
  opacity: 0;
  transition: opacity .25s;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.service-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--aeo-dark);
  margin-bottom: .5rem;
}

.service-card p {
  font-size: .9rem;
  color: var(--aeo-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  font-size: .85rem;
  color: var(--aeo-text);
  padding: .3rem 0;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.service-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--aeo-primary);
  flex-shrink: 0;
}

.platform-section {
  background: var(--aeo-dark);
  position: relative;
  overflow: hidden;
}

.platform-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(37,99,235,.2) 0%, transparent 70%);
}

.platform-tab {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s;
  border: 1px solid transparent;
}

.platform-tab:hover {
  background: rgba(255,255,255,.05);
}

.platform-tab.active {
  background: rgba(37,99,235,.15);
  border-color: rgba(37,99,235,.3);
}

.platform-tab-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.platform-tab-title {
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}

.platform-tab.active .platform-tab-title { color: #fff; }

.platform-tab-sub {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin-top: .1rem;
}

.platform-panel {
  display: none;
}

.platform-panel.active {
  display: block;
}

.platform-demo {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.platform-demo-bar {
  background: rgba(255,255,255,.06);
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.demo-dot {
  width: 10px; height: 10px; border-radius: 50%;
}

.platform-demo-body {
  padding: 1.5rem;
}

.demo-table-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.demo-table-row:last-child { border-bottom: none; }

.demo-avatar {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.demo-text { flex: 1; }
.demo-text-main { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.85); }
.demo-text-sub { font-size: .75rem; color: rgba(255,255,255,.4); }

.demo-badge {
  font-size: .72rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 20px;
}

.pricing-card {
  border: 2px solid var(--aeo-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  height: 100%;
  position: relative;
  transition: transform .25s, box-shadow .25s;
  background: #fff;
}

.pricing-card.featured {
  border-color: var(--aeo-primary);
  background: linear-gradient(180deg, #eff6ff 0%, #fff 40%);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--aeo-gradient);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 20px;
}

.pricing-plan-name {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--aeo-primary);
  margin-bottom: .5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--aeo-dark);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: .25rem;
}

.pricing-price sup {
  font-size: 1.3rem;
  font-weight: 700;
  vertical-align: super;
}

.pricing-price .period {
  font-size: .9rem;
  font-weight: 500;
  color: var(--aeo-muted);
  letter-spacing: 0;
}

.pricing-desc {
  font-size: .88rem;
  color: var(--aeo-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--aeo-border);
  margin: 1.5rem 0;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: var(--aeo-text);
  margin-bottom: .75rem;
}

.pricing-feature i {
  color: #22c55e;
  margin-top: .1rem;
  flex-shrink: 0;
}

.pricing-feature.muted { color: var(--aeo-muted); }
.pricing-feature.muted i { color: #cbd5e1; }

.btn-pricing {
  border-radius: 10px;
  padding: .75rem;
  font-weight: 700;
  font-size: .95rem;
  width: 100%;
  transition: all .2s;
}

.btn-pricing-primary {
  background: var(--aeo-gradient);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(37,99,235,.3);
}

.btn-pricing-primary:hover {
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,99,235,.45);
  transform: translateY(-1px);
}

.btn-pricing-outline {
  background: transparent;
  color: var(--aeo-primary);
  border: 2px solid var(--aeo-border);
}

.btn-pricing-outline:hover {
  border-color: var(--aeo-primary);
  background: #eff6ff;
}

.testimonial-card {
  background: var(--aeo-bg-light);
  border: 1px solid var(--aeo-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
}

.testimonial-stars { color: #f59e0b; font-size: .9rem; margin-bottom: 1rem; }

.testimonial-text {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--aeo-text);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--aeo-dark);
}

.testimonial-role {
  font-size: .78rem;
  color: var(--aeo-muted);
}

.cta-section {
  background: var(--aeo-dark);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(124,58,237,.3) 0%, transparent 70%);
}

footer {
  background: var(--aeo-dark);
  color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-brand {
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-brand span {
  background: var(--aeo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-heading {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}

.footer-link {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  text-decoration: none;
  margin-bottom: .6rem;
  transition: color .2s;
}

.footer-link:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0;
  font-size: .82rem;
}

.page-hero {
  background: var(--aeo-dark);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(37,99,235,.25) 0%, transparent 70%);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,.6);
  font-size: 1.1rem;
  max-width: 560px;
}

.feature-block {
  padding: 5rem 0;
}

.feature-block.alt { background: var(--aeo-bg-light); }

.feature-icon-lg {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .5rem 0;
  font-size: .95rem;
  color: var(--aeo-text);
}

.check-list li i {
  color: var(--aeo-primary);
  margin-top: .1rem;
  flex-shrink: 0;
}

.gradient-text {
  background: var(--aeo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-soft { background: var(--aeo-gradient-soft); }

.rounded-xl { border-radius: var(--radius-lg) !important; }

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* icon color helpers */
.icon-blue { background: #eff6ff; color: var(--aeo-primary); }
.icon-purple { background: #f5f3ff; color: var(--aeo-accent); }
.icon-green { background: #f0fdf4; color: #16a34a; }
.icon-orange { background: #fff7ed; color: #ea580c; }
.icon-pink { background: #fdf2f8; color: #db2777; }
.icon-teal { background: #f0fdfa; color: #0d9488; }
.icon-amber { background: #fffbeb; color: #d97706; }

/* demo colors */
.demo-green { background: rgba(34,197,94,.15); color: #4ade80; }
.demo-blue { background: rgba(59,130,246,.15); color: #60a5fa; }
.demo-amber { background: rgba(245,158,11,.15); color: #fbbf24; }
.demo-purple { background: rgba(167,139,250,.15); color: #a78bfa; }

/* avatar colors */
.av-blue { background: #3b82f6; }
.av-purple { background: #8b5cf6; }
.av-green { background: #22c55e; }
.av-orange { background: #f97316; }
.av-pink { background: #ec4899; }
.av-teal { background: #14b8a6; }

/* progress bars */
.mini-progress {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
  margin-top: .4rem;
}

.mini-progress-bar {
  height: 100%;
  border-radius: 3px;
  background: var(--aeo-gradient);
}

/* scroll animation delays */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ── COMPARISON TABLE (flex/div) ─────────── */
.ctab {
  border: 1px solid var(--aeo-border);
  border-radius: var(--radius-lg);
  /*overflow: hidden;*/
  background: #fff;
}

.ctab-head {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  /*background: #fff;*/
  border-bottom: 2px solid var(--aeo-border);
  position: sticky;
  top: 64px;
  z-index: 10;
}

.ctab-head-cell {
  padding: .9rem .5rem;
  text-align: center;
  font-weight: 700;
  font-size: .88rem;
}

.ctab-head-cell:first-child {
  text-align: left;
  padding-left: 1.25rem;
  color: var(--aeo-dark);
}

.ctab-group {
  padding: .5rem 1.25rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--aeo-muted);
  background: var(--aeo-bg-light);
  border-top: 1px solid var(--aeo-border);
}

.ctab-group:first-of-type { border-top: none; }

.ctab-row {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  border-top: 1px solid var(--aeo-border);
}

.ctab-row.alt { background: #fafbfc; }

.ctab-feat {
  padding: .7rem 1.25rem;
  font-size: .88rem;
  color: var(--aeo-text);
  display: flex;
  align-items: center;
  line-height: 1.4;
}

.ctab-cell {
  padding: .7rem .4rem;
  font-size: .82rem;
  color: var(--aeo-text);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--aeo-border);
  line-height: 1.35;
}

/* mobile — stack each row as a labeled card */
@media (max-width: 639px) {
  .ctab-head { display: none; }

  .ctab-row {
    display: block;
    padding: .85rem 1rem 1rem;
  }

  .ctab-feat {
    padding: 0 0 .6rem;
    font-weight: 600;
    font-size: .88rem;
    color: var(--aeo-dark);
  }

  .ctab-cell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: none;
    border-top: 1px solid var(--aeo-border);
    padding: .45rem 0;
    text-align: right;
  }

  .ctab-cell::before {
    content: attr(data-plan);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    flex-shrink: 0;
    margin-right: .75rem;
    white-space: nowrap;
  }

  .ctab-cell[data-plan=Starter]::before    { color: var(--aeo-muted); }
  .ctab-cell[data-plan=Growth]::before     { color: var(--aeo-primary); }
  .ctab-cell[data-plan=Pro]::before        { color: var(--aeo-dark); }
  .ctab-cell[data-plan=Enterprise]::before { color: var(--aeo-accent); }
}

@media (max-width: 767px) {
  .hero { padding: 4rem 0 3rem; }
  .hero-stats { gap: 1.5rem; }
  .floating-badge { display: none; }
  .hero-visual { margin-top: 2rem; }
}
