/* ═══════════════════════════════════════════════════════════════════
   NICE SPACESHIP — Community Site
   nicespaceship.com
   Matches the NICE app default theme (dark command center).
═══════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Tokens pulled directly from app theme.css :root */
:root {
  --bg: #09090b;
  --bg2: #18181b;
  --bg-alt: #18181b;
  --surface: #18181b;
  --surface2: #27272a;
  --border: #3f3f46;
  --border-hi: #71717a;
  --accent: #e0e7ff;
  --accent2: #a5b4fc;
  --text: #fafafa;
  --text-muted: #a1a1aa;
  --text-dim: #3f3f46;
  --glow: 0 0 0 1px rgba(224,231,255,0.06);
  --glow-hi: 0 0 12px rgba(224,231,255,0.08);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-m: 'Fira Code', monospace;
  --radius: 10px;
  --nav-bg: rgba(9,9,11,0.92);
  --panel-bg: rgba(24,24,27,0.75);
  --max-w: 1200px;
  --hero-grad: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(224,231,255,0.04) 0%, transparent 70%);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent2); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--accent2); color: var(--bg); }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font); font-weight: 600; letter-spacing: -0.02em; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.1; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); line-height: 1.15; }
h3 { font-size: 1.1rem; line-height: 1.3; }
h4 { font-size: 0.95rem; line-height: 1.4; }
p { margin-bottom: 0.75rem; font-size: 0.92rem; line-height: 1.65; color: var(--text-muted); }

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 500; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 12px; border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 12px;
  background: var(--panel-bg);
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent2); flex-shrink: 0; }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; border-top: 1px solid var(--border); }
.text-center { text-align: center; }
.section-header { margin-bottom: 36px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin-left: auto; margin-right: auto; }
.section-desc { font-size: 0.92rem; color: var(--text-muted); max-width: 480px; margin-top: 8px; }

/* ── Buttons (same as app) ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: var(--bg); font-size: 0.82rem; font-weight: 500;
  padding: 10px 20px; border: none; border-radius: var(--radius);
  font-family: var(--font); cursor: pointer; transition: all 0.15s;
  text-decoration: none; letter-spacing: -0.01em;
}
.btn-primary:hover { background: var(--accent2); color: var(--bg); text-decoration: none; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--text-muted); font-size: 0.82rem; font-weight: 500;
  padding: 10px 20px; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font); cursor: pointer; transition: all 0.15s;
  text-decoration: none;
}
.btn-secondary:hover { border-color: var(--border-hi); color: var(--text); text-decoration: none; }

/* ═══════════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 52px; gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.nav-logo { width: 22px; height: 22px; }
.nav-brand-text { font-size: 0.82rem; color: var(--text); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.nav-links { display: flex; gap: 2px; flex: 1; }
.nav-link {
  color: var(--text-muted); font-size: 0.78rem; font-weight: 400;
  padding: 6px 12px; text-decoration: none; border-radius: var(--radius);
  transition: all 0.15s;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.04); text-decoration: none; }
.nav-link.active { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-theme-btn {
  background: transparent; border: 1px solid var(--border); color: var(--text-muted);
  font-size: 0.7rem; padding: 4px 10px; cursor: pointer; font-family: var(--font);
  border-radius: var(--radius); transition: all 0.15s;
}
.nav-theme-btn:hover { border-color: var(--border-hi); color: var(--text); }
.nav-cta {
  background: var(--accent); color: var(--bg); font-size: 0.75rem; font-weight: 500;
  padding: 6px 16px; text-decoration: none; border-radius: var(--radius);
  transition: all 0.15s;
}
.nav-cta:hover { background: var(--accent2); text-decoration: none; }
.nav-mobile-btn { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 4px; }

/* ═══════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════ */
.hero {
  text-align: center; padding: 72px 24px 48px;
  max-width: var(--max-w); margin: 0 auto;
  background: var(--hero-grad);
}
.hero h1 { margin-bottom: 16px; max-width: 640px; margin-left: auto; margin-right: auto; }
.hero h1 .hl { color: var(--accent2); }
.hero-sub {
  font-size: 0.92rem; color: var(--text-muted); max-width: 480px;
  margin: 0 auto 24px; line-height: 1.6;
}
.hero-ctas { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }

.hero-screenshot {
  max-width: 840px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--glow-hi), 0 16px 48px rgba(0,0,0,0.5);
}
.hero-screenshot img { width: 100%; display: block; }

/* ═══════════════════════════════════════════════════════════════════
   LOGO CLOUD
═══════════════════════════════════════════════════════════════════ */
.logo-cloud { text-align: center; padding: 32px 0; }
.logo-cloud p { font-size: 0.72rem; color: var(--text-dim); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; }
.logo-row { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.logo-row span { font-size: 0.82rem; font-weight: 500; color: var(--text-dim); transition: color 0.15s; }
.logo-row span:hover { color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════════
   LOGO TICKER
═══════════════════════════════════════════════════════════════════ */
.logo-ticker { overflow: hidden; padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; }
.logo-ticker::before, .logo-ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.logo-ticker::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.logo-ticker::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.logo-ticker-track {
  display: flex; gap: 48px; align-items: center; width: max-content;
  animation: ticker-scroll 30s linear infinite;
}
.logo-ticker-track:hover { animation-play-state: paused; }
.logo-ticker-item {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
  font-size: 0.82rem; font-weight: 600; color: var(--text-dim);
  white-space: nowrap; transition: color 0.2s; letter-spacing: -0.01em;
}
.logo-ticker-item:hover { color: var(--text-muted); }
.logo-ticker-item i { font-size: 1rem; }
.logo-ticker-item .ticker-tag {
  font-size: 0.55rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 1px 5px; border-radius: 4px; border: 1px solid; margin-left: 2px;
}
.ticker-tag.text { border-color: rgba(165,180,252,0.3); color: var(--accent2); }
.ticker-tag.image { border-color: rgba(74,222,128,0.3); color: #4ade80; }
.ticker-tag.video { border-color: rgba(251,191,36,0.3); color: #fbbf24; }
.ticker-tag.voice { border-color: rgba(244,114,182,0.3); color: #f472b6; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════════════════════════ */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-w); margin: 0 auto; padding: 32px 24px;
}
.stat-item { text-align: center; position: relative; }
.stat-item + .stat-item::before {
  content: ''; position: absolute; left: 0; top: 15%; height: 70%;
  width: 1px; background: var(--border);
}
.stat-num {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600;
  color: var(--text); display: block; letter-spacing: -0.03em; line-height: 1.1;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; display: block; }

/* ═══════════════════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.feature-card {
  background: var(--panel-bg); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all 0.2s;
}
.feature-card:hover { border-color: var(--border-hi); box-shadow: var(--glow-hi); }
.feature-card-body { padding: 20px; }
.feature-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(165,180,252,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--accent2); margin-bottom: 12px;
}
.feature-card h3 { margin-bottom: 6px; }
.feature-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }
.feature-card-img {
  width: 100%; aspect-ratio: 16/10; background: var(--surface2);
  border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════════════════
   STEPS
═══════════════════════════════════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.step-card {
  padding: 20px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--panel-bg); transition: all 0.2s;
}
.step-card:hover { border-color: var(--border-hi); box-shadow: var(--glow-hi); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: var(--bg);
  font-size: 0.7rem; font-weight: 600; margin-bottom: 14px;
}
.step-card h3 { margin-bottom: 6px; }
.step-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ═══════════════════════════════════════════════════════════════════
   COST COMPARISON
═══════════════════════════════════════════════════════════════════ */
.cost-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cost-card { border: 1px solid var(--border); padding: 24px; border-radius: var(--radius); background: var(--panel-bg); }
.cost-card h3 { margin-bottom: 16px; font-size: 1rem; }
.cost-card.nice-card { border-color: var(--accent2); box-shadow: 0 0 16px rgba(165,180,252,0.08); }
.cost-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.82rem; }
.cost-row:last-child { border-bottom: none; }
.cost-row .tool { color: var(--text-muted); }
.cost-row .price { font-weight: 500; }
.cost-total { display: flex; justify-content: space-between; padding: 12px 0; margin-top: 8px; border-top: 1px solid var(--border-hi); font-size: 1rem; font-weight: 600; }
.cost-total .price { color: #f87171; }
.nice-card .cost-total .price { color: var(--accent2); }

/* ═══════════════════════════════════════════════════════════════════
   MODELS
═══════════════════════════════════════════════════════════════════ */
.models-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.model-card {
  border: 1px solid var(--border); padding: 20px; border-radius: var(--radius);
  background: var(--panel-bg); transition: all 0.2s;
}
.model-card:hover { border-color: var(--border-hi); box-shadow: var(--glow-hi); }
.model-card h4 { margin-bottom: 2px; font-size: 0.92rem; }
.model-provider { font-size: 0.72rem; color: var(--text-dim); margin-bottom: 10px; }
.model-desc { font-size: 0.82rem; color: var(--text-muted); margin: 0; }
.model-badge {
  display: inline-flex; font-size: 0.62rem; padding: 2px 8px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  border-radius: var(--radius); border: 1px solid; margin-bottom: 10px;
}
.model-badge.free { border-color: rgba(74,222,128,0.3); color: #4ade80; background: rgba(74,222,128,0.06); }
.model-badge.premium { border-color: rgba(165,180,252,0.3); color: var(--accent2); background: rgba(165,180,252,0.06); }
.model-badge.budget { border-color: rgba(251,191,36,0.3); color: #fbbf24; background: rgba(251,191,36,0.06); }

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.testimonial-card { padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--panel-bg); }
.testimonial-text { font-size: 0.85rem; color: var(--text); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 600; color: var(--text-muted);
}
.testimonial-name { font-size: 0.78rem; font-weight: 600; color: var(--text); }
.testimonial-role { font-size: 0.68rem; color: var(--text-dim); }

/* ═══════════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════════ */
.faq-list { max-width: 640px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; cursor: pointer; font-size: 0.92rem; font-weight: 500;
  color: var(--text); background: none; border: none; width: 100%;
  text-align: left; font-family: var(--font);
}
.faq-q:hover { color: var(--accent); }
.faq-icon { font-size: 1rem; color: var(--text-dim); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 16px; font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.faq-item.open .faq-a { display: block; }

/* ═══════════════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.pricing-card { border: 1px solid var(--border); padding: 24px; border-radius: var(--radius); background: var(--panel-bg); position: relative; }
.pricing-card.featured { border-color: var(--accent2); box-shadow: 0 0 16px rgba(165,180,252,0.08); }
.pricing-card.featured::before {
  content: 'Popular'; position: absolute; top: -10px; left: 16px;
  background: var(--accent2); color: var(--bg); font-size: 0.62rem; font-weight: 600;
  padding: 2px 10px; border-radius: var(--radius);
}
.pricing-name { font-size: 1rem; font-weight: 600; margin-bottom: 2px; }
.pricing-desc { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 12px; }
.pricing-price { font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 600; letter-spacing: -0.03em; }
.pricing-price span { font-size: 0.82rem; color: var(--text-dim); font-weight: 400; }
.pricing-period { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 16px; }
.pricing-features { list-style: none; margin-bottom: 20px; }
.pricing-features li { padding: 6px 0; font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.pricing-features li::before { content: '✓'; color: var(--accent2); font-weight: 600; font-size: 0.72rem; }

/* ═══════════════════════════════════════════════════════════════════
   BLUEPRINT CATALOG
═══════════════════════════════════════════════════════════════════ */
.catalog-toolbar { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; align-items: center; }
.catalog-search {
  flex: 1; min-width: 180px; padding: 8px 14px;
  background: var(--panel-bg); border: 1px solid var(--border);
  color: var(--text); font-family: var(--font); font-size: 0.82rem;
  border-radius: var(--radius); transition: border-color 0.15s;
}
.catalog-search::placeholder { color: var(--text-dim); }
.catalog-search:focus { outline: none; border-color: var(--accent2); box-shadow: 0 0 0 2px rgba(165,180,252,0.1); }
.catalog-filter {
  padding: 6px 14px; background: transparent; border: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.72rem; cursor: pointer; font-family: var(--font);
  border-radius: var(--radius); transition: all 0.15s; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.catalog-filter:hover { border-color: var(--border-hi); color: var(--text); }
.catalog-filter.active { border-color: var(--accent2); color: var(--accent2); background: rgba(165,180,252,0.06); }
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.bp-card {
  border: 1px solid var(--border); padding: 18px; border-radius: var(--radius);
  background: var(--panel-bg); transition: all 0.2s; cursor: pointer;
  text-decoration: none; display: block; color: var(--text);
}
.bp-card:hover { border-color: var(--accent2); box-shadow: var(--glow-hi); text-decoration: none; }
.bp-card-header { display: flex; justify-content: space-between; align-items: start; margin-bottom: 8px; }
.bp-card h3 { font-size: 0.92rem; margin: 0; }
.bp-card-category { font-size: 0.62rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.bp-card-desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bp-card-footer { display: flex; justify-content: space-between; align-items: center; }
.bp-card-rarity { font-size: 0.62rem; font-weight: 600; padding: 2px 8px; border-radius: var(--radius); border: 1px solid; }
.bp-card-rarity.common { border-color: var(--border); color: var(--text-muted); }
.bp-card-rarity.rare { border-color: rgba(96,165,250,0.3); color: #60a5fa; background: rgba(96,165,250,0.06); }
.bp-card-rarity.epic { border-color: rgba(167,139,250,0.3); color: #a78bfa; background: rgba(167,139,250,0.06); }
.bp-card-rarity.legendary { border-color: rgba(251,191,36,0.3); color: #fbbf24; background: rgba(251,191,36,0.06); }
.bp-card-rarity.mythic { border-color: rgba(248,113,113,0.3); color: #f87171; background: rgba(248,113,113,0.06); }
.bp-card-type { font-size: 0.72rem; color: var(--text-dim); }
.catalog-empty { text-align: center; padding: 60px 24px; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════════
   ACADEMY / ABOUT / LEGAL (unchanged layout, app tokens)
═══════════════════════════════════════════════════════════════════ */
.academy-coming { padding: 24px; border: 1px solid var(--accent2); border-radius: var(--radius); margin-bottom: 36px; background: rgba(165,180,252,0.04); }
.cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; margin-top: 24px; }
.cert-card { padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--panel-bg); }
.cert-badge { font-size: 1.2rem; margin-bottom: 8px; }
.cert-card h3 { margin-bottom: 6px; }
.cert-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }
.tutorial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; margin-top: 24px; }
.tutorial-card { padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--panel-bg); }
.tutorial-card h3 { margin-bottom: 6px; font-size: 0.95rem; }
.tutorial-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 12px; }
.tutorial-tag { display: inline-block; font-size: 0.62rem; padding: 2px 8px; border: 1px solid var(--border); color: var(--text-muted); margin-right: 4px; border-radius: var(--radius); }

.about-hero { text-align: left; padding: 72px 24px 36px; max-width: var(--max-w); margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 36px; }
.about-section h2 { margin-bottom: 16px; }
.about-section p { color: var(--text-muted); font-size: 0.88rem; }
.career-item { padding: 12px 0; border-bottom: 1px solid var(--border); }
.career-item:last-child { border-bottom: none; }
.career-title { font-weight: 500; font-size: 0.88rem; }
.career-meta { font-size: 0.72rem; color: var(--text-dim); margin-top: 2px; }

.legal-content { padding: 60px 0; }
.legal-content h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.legal-content .last-updated { font-size: 0.72rem; color: var(--text-dim); margin-bottom: 32px; text-transform: uppercase; letter-spacing: 0.06em; }
.legal-content h2 { font-size: 1.1rem; margin-top: 36px; margin-bottom: 12px; color: var(--accent2); }
.legal-content p, .legal-content li { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 6px; }

/* ═══════════════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════════════ */
.cta-section { text-align: center; background: var(--hero-grad); }
.cta-section h2 { max-width: 480px; margin: 0 auto 12px; }
.cta-section p { max-width: 400px; margin: 0 auto 24px; }

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
.footer { border-top: 1px solid var(--border); padding: 48px 0 20px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 36px; margin-bottom: 36px; }
.footer-col h4 { color: var(--text-dim); font-size: 0.68rem; margin-bottom: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-col a { display: block; color: var(--text-muted); font-size: 0.82rem; padding: 3px 0; text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: var(--accent); }
.footer-brand { font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 8px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-desc { font-size: 0.78rem; color: var(--text-dim); line-height: 1.5; max-width: 240px; }
.footer-bottom {
  display: flex; justify-content: space-between; padding-top: 16px;
  border-top: 1px solid var(--border); font-size: 0.72rem; color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .models-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed; top: 52px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 12px; gap: 2px; z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-mobile-btn { display: block; }
  .nav-cta { display: none; }

  .hero { padding: 48px 16px 32px; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 24px 16px; }
  .stat-item + .stat-item::before { display: none; }

  .steps-grid, .cost-grid, .models-grid, .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .section { padding: 48px 0; }
  .container, .container-narrow { padding: 0 16px; }
}

@media (max-width: 480px) {
  .hero { padding: 32px 16px 24px; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 4px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
}
