/* ============================================================
   neXmis Marketing Theme — Design System
   Palette: Emerald (primary) + Indigo (accent)
   ============================================================ */

/* ── Brand token aliases ─────────────────────────────── */
:root {
  --nexmis-primary: #10b981;
  --nexmis-dark:    #0D2245;
  --nexmis-accent:  #4f46e5;
  --nexmis-bg:      #0B1120;
  --nexmis-text:    #f1f5f9;
}

:root {
  --brand-50:  #ecfdf5;
  --brand-100: #d1fae5;
  --brand-400: #34d399;
  --brand-500: #10b981;
  --brand-600: #059669;
  --brand-700: #047857;

  --indigo-400: #818cf8;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;

  --navy-900: #0f172a;
  --navy-800: #1e293b;
  --navy-700: #334155;

  --purple-900: #1e1b4b;
  --purple-800: #312e81;

  --grey-50:  #f8fafc;
  --grey-100: #f1f5f9;
  --grey-200: #e2e8f0;
  --grey-400: #94a3b8;
  --grey-600: #475569;
  --grey-700: #334155;
  --grey-800: #1e293b;
  --grey-900: #0f172a;

  --white: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
  --shadow-glow: 0 0 40px rgba(16,185,129,.25);

  --transition: 0.2s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Typography ─────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; color: var(--navy-900); }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }
p  { color: var(--text-muted); line-height: 1.75; }

/* ── Layout ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--radius-full);
  font-weight: 600; font-size: .95rem; transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--brand-500); color: var(--white);
  box-shadow: 0 4px 14px rgba(16,185,129,.4);
}
.btn--primary:hover { background: var(--brand-600); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(16,185,129,.5); }
.btn--indigo {
  background: var(--indigo-600); color: var(--white);
  box-shadow: 0 4px 14px rgba(99,102,241,.4);
}
.btn--indigo:hover { background: var(--indigo-700); transform: translateY(-1px); }
.btn--outline {
  border: 2px solid rgba(255,255,255,.35); color: var(--white);
  backdrop-filter: blur(8px);
}
.btn--outline:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.1); }
.btn--ghost { color: var(--text); background: var(--grey-100); }
.btn--ghost:hover { background: var(--grey-200); }
.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ── Badge ──────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem 1rem; border-radius: var(--radius-full); font-size: .8rem; font-weight: 600;
}
.badge--brand { background: rgba(16,185,129,.15); color: var(--brand-600); }
.badge--indigo { background: rgba(99,102,241,.12); color: var(--indigo-600); }

/* ── Section Labels ─────────────────────────────────── */
.section-label {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-600); margin-bottom: 1rem;
}
.section-label::before, .section-label::after {
  content: ''; flex: 0 0 2rem; height: 1px; background: var(--brand-500);
}
.section-title { text-align: center; margin-bottom: 1rem; }
.section-sub { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; font-size: 1.1rem; }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(15,23,42,.95); backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .6rem; flex-shrink: 0;
}
.nav-logo svg { width: 36px; height: 36px; }
.nav-logo-text {
  font-size: 1.375rem; font-weight: 800; color: var(--white); letter-spacing: -.02em;
}
.nav-logo-text span { color: var(--brand-500); }

/* Logo — mark SVG + CSS text wordmark (matches platform login) */
.nexmis-logo-link {
  display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0;
}
.nexmis-mark-img {
  width: 38px; height: 38px; flex-shrink: 0; display: block;
}
.nexmis-wordmark-text {
  font-size: 1.05rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  background: linear-gradient(135deg, #10b981, #0ea5e9);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; white-space: nowrap;
}
.nav-links {
  display: flex; align-items: center; gap: .25rem; flex: 1; justify-content: center;
}
.nav-links a {
  padding: .5rem .9rem; border-radius: var(--radius-sm);
  color: rgba(255,255,255,.75); font-size: .9rem; font-weight: 500;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav-links .has-dropdown { position: relative; }
.nav-links .dropdown {
  position: absolute; top: calc(100% + .5rem); left: 50%; transform: translateX(-50%);
  background: var(--navy-800); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md); padding: .5rem; min-width: 200px;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
  box-shadow: var(--shadow-lg);
}
.nav-links .has-dropdown:hover .dropdown { opacity: 1; pointer-events: all; }
.nav-links .dropdown a { display: block; padding: .6rem 1rem; border-radius: var(--radius-sm); color: rgba(255,255,255,.8); font-size: .875rem; }
.nav-links .dropdown a:hover { background: rgba(255,255,255,.06); color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: .75rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--purple-800) 55%, #065f46 100%);
  position: relative; overflow: hidden; padding-top: 72px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(16,185,129,.18) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 20% 60%, rgba(99,102,241,.2) 0%, transparent 60%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1; padding: 5rem 0;
}
.hero-badge { display: inline-flex; margin-bottom: 1.5rem; }
.hero-badge-inner {
  display: flex; align-items: center; gap: .5rem; padding: .4rem 1rem;
  background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.3);
  border-radius: var(--radius-full); font-size: .8rem; font-weight: 600; color: var(--brand-400);
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-500); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 em { font-style: normal; color: var(--brand-400); }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.7); max-width: 500px; margin-bottom: 2.5rem; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex; gap: 2rem;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 2rem;
}
.hero-stat-val { font-size: 1.75rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-val span { color: var(--brand-400); }
.hero-stat-lbl { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: .25rem; font-weight: 500; letter-spacing: .04em; }
.hero-visual { position: relative; padding-top: 3.5rem; }
.hero-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 1.5rem; backdrop-filter: blur(12px);
}
.hero-card-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.hero-card-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-card-title { font-weight: 600; color: var(--white); font-size: .9rem; }
.hero-metric {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm); padding: 1rem;
  display: flex; align-items: center; justify-content: space-between; margin-bottom: .75rem;
}
.hero-metric:last-child { margin-bottom: 0; }
.hero-metric-name { font-size: .85rem; color: rgba(255,255,255,.65); }
.hero-metric-val { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.hero-metric-badge {
  font-size: .7rem; font-weight: 700; padding: .2rem .5rem;
  border-radius: var(--radius-full); margin-left: .5rem;
}
.up   { background: rgba(16,185,129,.2);  color: var(--brand-400); }
.warn { background: rgba(251,191,36,.15); color: #fbbf24; }
.hero-ai-row {
  display: flex; align-items: center; gap: .75rem; margin-top: 1.25rem;
  padding: 1rem; background: rgba(99,102,241,.15);
  border: 1px solid rgba(99,102,241,.25); border-radius: var(--radius-sm);
}
.hero-ai-icon { font-size: 1.25rem; }
.hero-ai-text { font-size: .82rem; color: rgba(255,255,255,.8); line-height: 1.5; }
.hero-ai-text strong { color: var(--indigo-400); font-weight: 600; }
.hero-floating {
  position: absolute; top: 0; right: 0;
  background: linear-gradient(135deg, var(--indigo-600), var(--brand-500));
  border-radius: var(--radius-md); padding: .75rem 1rem;
  display: flex; align-items: center; gap: .6rem;
  box-shadow: 0 8px 32px rgba(99,102,241,.4);
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hero-floating-icon { font-size: 1.1rem; }
.hero-floating-text { font-size: .78rem; font-weight: 600; color: var(--white); }


/* ═══════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--grey-50); border-top: 1px solid var(--grey-200); border-bottom: 1px solid var(--grey-200);
  padding: 2rem 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1rem;
}
.trust-bar-label { font-size: .8rem; font-weight: 600; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; margin-right: .5rem; }
.trust-pill {
  display: flex; align-items: center; gap: .5rem; padding: .5rem 1.25rem;
  background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-full);
  font-size: .875rem; font-weight: 600; color: var(--grey-700); box-shadow: var(--shadow-sm);
}
.trust-pill-dot { width: 8px; height: 8px; border-radius: 50%; }

/* ═══════════════════════════════════════════════════════
   AI CAPABILITIES
═══════════════════════════════════════════════════════ */
.ai-section { background: var(--white); }
.ai-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.ai-card {
  background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-lg);
  padding: 2rem; position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.ai-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-400); }
.ai-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(16,185,129,.04) 0%, transparent 60%);
  pointer-events: none;
}
.ai-card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.ai-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.ai-card p { font-size: .9rem; line-height: 1.65; }
.ai-card-tag {
  display: inline-block; margin-top: 1rem; padding: .25rem .75rem;
  background: rgba(16,185,129,.1); border-radius: var(--radius-full);
  font-size: .72rem; font-weight: 700; color: var(--brand-600); letter-spacing: .06em; text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   MODULES GRID
═══════════════════════════════════════════════════════ */
.modules-section { background: var(--grey-50); }
.modules-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
.module-card {
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: var(--radius-md); padding: 1.25rem; text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.module-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--module-color);
}
.module-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.module-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .75rem;
  background: var(--module-color);
  font-size: 1.2rem;
}
.module-name { font-size: .875rem; font-weight: 700; color: var(--navy-900); margin-bottom: .25rem; }
.module-desc { font-size: .75rem; color: var(--text-muted); line-height: 1.4; }

/* ═══════════════════════════════════════════════════════
   COMPARISON TABLE
═══════════════════════════════════════════════════════ */
.compare-section {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--purple-900) 100%);
  padding: 5rem 0;
}
.compare-section .section-label { color: var(--brand-400); }
.compare-section .section-label::before,
.compare-section .section-label::after { background: var(--brand-500); }
.compare-section .section-title,
.compare-section .section-sub { color: var(--white); }
.compare-section .section-sub { color: rgba(255,255,255,.65); }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius-lg); overflow: hidden; }
.compare-table thead tr { background: rgba(255,255,255,.06); }
.compare-table th {
  padding: 1.25rem 1.5rem; font-size: .85rem; font-weight: 700;
  color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; text-align: center;
}
.compare-table th:first-child { text-align: left; }
.compare-table th.highlight { color: var(--brand-400); background: rgba(16,185,129,.1); }
.compare-table tbody tr { border-bottom: 1px solid rgba(255,255,255,.05); transition: background var(--transition); }
.compare-table tbody tr:hover { background: rgba(255,255,255,.03); }
.compare-table td { padding: 1rem 1.5rem; font-size: .9rem; color: rgba(255,255,255,.75); text-align: center; }
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--white); }
.compare-table td.highlight { background: rgba(16,185,129,.06); }
.check-yes { color: var(--brand-400); font-size: 1.2rem; font-weight: 700; }
.check-no  { color: rgba(255,255,255,.2); font-size: 1.2rem; }
.check-partial { color: #fbbf24; font-size: 1.2rem; }

/* ═══════════════════════════════════════════════════════
   ARCHITECTURE / TECH SECTION
═══════════════════════════════════════════════════════ */
.arch-section { background: var(--white); }
.arch-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.arch-card {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--grey-50); border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}
.arch-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.arch-stat { font-size: 2.5rem; font-weight: 900; color: var(--navy-900); line-height: 1; margin-bottom: .5rem; }
.arch-stat span { color: var(--brand-500); }
.arch-label { font-size: .875rem; font-weight: 600; color: var(--text-muted); }
.arch-sub { font-size: .78rem; color: var(--text-muted); margin-top: .25rem; }
.arch-stack {
  margin-top: 3rem; background: var(--grey-50); border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg); padding: 2rem;
}
.arch-stack-title { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.25rem; text-align: center; }
.arch-pills { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.arch-pill {
  padding: .4rem 1rem; border-radius: var(--radius-full);
  font-size: .8rem; font-weight: 600;
  background: var(--white); border: 1px solid var(--grey-200);
  color: var(--grey-700);
}
.arch-pill.brand { background: rgba(16,185,129,.1); border-color: rgba(16,185,129,.3); color: var(--brand-600); }
.arch-pill.indigo { background: rgba(99,102,241,.1); border-color: rgba(99,102,241,.3); color: var(--indigo-600); }

/* ═══════════════════════════════════════════════════════
   AI PROVIDERS SECTION
═══════════════════════════════════════════════════════ */
.providers-section { background: var(--grey-50); }
.providers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.provider-card {
  background: var(--white); border: 2px solid var(--grey-200);
  border-radius: var(--radius-lg); padding: 1.75rem; text-align: center;
  transition: all var(--transition);
}
.provider-card:hover { border-color: var(--brand-400); box-shadow: var(--shadow-glow); transform: translateY(-2px); }
.provider-card.featured { border-color: var(--indigo-500); background: rgba(99,102,241,.03); }
.provider-card.featured::after {
  content: 'PRIMARY'; display: block;
  font-size: .65rem; font-weight: 800; letter-spacing: .12em;
  color: var(--indigo-600); margin-top: .75rem;
}
.provider-logo { font-size: 2.5rem; margin-bottom: .75rem; }
.provider-name { font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.provider-desc { font-size: .8rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--indigo-600) 0%, var(--brand-500) 100%);
  padding: 6rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(255,255,255,.08) 0%, transparent 70%);
}
.cta-section > .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1.15rem; max-width: 550px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-note { margin-top: 1.25rem; font-size: .82rem; color: rgba(255,255,255,.55); }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer { background: var(--navy-900); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 2rem; }
.footer-brand-logo { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-brand-logo svg { width: 32px; height: 32px; }
.footer-brand-name { font-size: 1.25rem; font-weight: 800; color: var(--white); }
.footer-brand-name span { color: var(--brand-500); }

/* SVG footer brand */
.footer-brand { display: flex; align-items: center; gap: .6rem; margin-bottom: .75rem; }
.footer-brand img { flex-shrink: 0; }
.footer-name { font-size: 1.25rem; font-weight: 800; color: var(--white); }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 260px; }
.footer-socials { display: flex; gap: .75rem; margin-top: 1.5rem; }
.footer-social {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.footer-social:hover { background: rgba(16,185,129,.2); border-color: var(--brand-500); color: var(--brand-400); }
.footer-col-title { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--brand-400); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.3); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════════════════════
   INNER PAGES
═══════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--purple-800) 100%);
  padding: 8rem 0 4rem; text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.page-content { max-width: 800px; margin: 4rem auto; padding: 0 1.5rem; }
.page-content h2 { margin: 2rem 0 1rem; }
.page-content p { margin-bottom: 1rem; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .ai-grid { grid-template-columns: repeat(2,1fr); }
  .modules-grid { grid-template-columns: repeat(4,1fr); }
  .arch-grid { grid-template-columns: repeat(2,1fr); }
  .providers-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 72px 0 0 0;
    background: var(--navy-900); padding: 2rem;
    overflow-y: auto;
  }
  .nav-links.open a { padding: .75rem; font-size: 1rem; }
  .ai-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: repeat(2,1fr); }
  .compare-table th, .compare-table td { padding: .75rem; font-size: .8rem; }
  .arch-grid { grid-template-columns: repeat(2,1fr); }
  .providers-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero h1 { font-size: 2.25rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
}
@media (max-width: 480px) {
  .modules-grid { grid-template-columns: repeat(2,1fr); }
  .cta-actions { flex-direction: column; align-items: center; }
}
