/* ================================================================
   USC AI SOLUTIONS - Site Stylesheet
   Design system: Vibrant Modern · Light theme · Custom-built feel
   ================================================================ */

:root {
  --purple: #7C3AED;
  --pink: #EC4899;
  --amber: #F59E0B;
  --green: #10B981;
  --cyan: #06B6D4;
  --blue: #3B82F6;
  --red: #EF4444;
  --ink: #0a0a0a;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --grad: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
  --grad-3: linear-gradient(135deg, #7C3AED 0%, #EC4899 50%, #F59E0B 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: white;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--purple); }
button { font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.gradient-text {
  background: var(--grad-3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--purple);
  color: white;
  padding: 8px 16px;
  z-index: 1000;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ================================================================
   HEADER + NAV
   ================================================================ */

.site-header {
  background: white;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 800;
}
.brand-text { display: inline-flex; align-items: center; }
.brand-accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}
.primary-nav a {
  color: #444;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
  padding: 6px 0;
}
.primary-nav a:hover { color: var(--purple); }
.primary-nav a.active { color: var(--purple); font-weight: 600; }
.primary-nav .cta-link {
  background: var(--grad);
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}
.primary-nav .cta-link:hover { color: white; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ================================================================
   BUTTONS
   ================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: all .2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--grad);
  color: white;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
  color: white;
}
.btn-ghost { background: #f5f3ff; color: var(--purple); }
.btn-ghost:hover { background: #ede9fe; }
.btn-outline {
  background: white;
  color: var(--ink);
  border: 1.5px solid #ddd;
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }
.btn-lg, .btn-large { padding: 16px 32px; font-size: 15px; }

/* ================================================================
   GENERIC SECTIONS / TYPE
   ================================================================ */

.section { padding: 100px 32px; }
.section.alt { background: #fafafa; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 64px; }

.eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(124,58,237,.1), rgba(236,72,153,.1));
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  border-radius: 30px;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Manrope', sans-serif;
}

.section-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.035em;
  margin-bottom: 18px;
  font-family: 'Manrope', sans-serif;
}
.section-sub {
  color: #555;
  font-size: 19px;
  max-width: 680px;
  margin: 0 auto;
}

/* ================================================================
   HOME HERO (Banner)
   ================================================================ */

.hero-v2 {
  padding: 60px 32px 100px;
  position: relative;
  overflow: hidden;
  background: white;
}
.hero-v2::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-v2::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(236,72,153,.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-v2-inner { position: relative; z-index: 1; }

.hero-banner {
  background: linear-gradient(135deg, #1a1535 0%, #2a1f5c 50%, #4c1d95 100%);
  border-radius: 32px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(76, 29, 149, .3);
}
.hero-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(236,72,153,.25) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-banner::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,.3) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-decorations { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.deco-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: .5;
}

.hero-v2-top {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 28px;
  font-family: 'Manrope', sans-serif;
}
.hero-v2-eyebrow .pulse {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16,185,129,.3);
}
.hero-v2 h1 {
  font-size: 76px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.045em;
  color: white;
  margin-bottom: 24px;
  font-family: 'Manrope', sans-serif;
}
.hero-v2 h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #c4b5fd 0%, #f9a8d4 50%, #fcd34d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-v2 p.sub {
  font-size: 21px;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
  margin: 0 auto 36px;
  max-width: 720px;
}
.hero-v2-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-v2 .btn-primary { background: white; color: var(--purple); }
.hero-v2 .btn-primary:hover {
  background: white;
  color: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
}
.hero-v2 .btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,.4);
}
.hero-v2 .btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: white;
  color: white;
}

/* ================================================================
   3 PILLARS
   ================================================================ */

.pillars { padding: 100px 32px; background: white; }
.pillars-inner { max-width: 1280px; margin: 0 auto; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.pillar {
  padding: 40px 32px;
  border-radius: 24px;
  position: relative;
  transition: all .3s;
  cursor: default;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.pillar.p1 { background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%); }
.pillar.p2 { background: linear-gradient(135deg, #dbeafe 0%, #cffafe 100%); }
.pillar.p3 { background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%); }
.pillar:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.08); }
.pillar-num {
  font-size: 14px;
  font-weight: 800;
  opacity: .5;
  margin-bottom: 12px;
  font-family: 'Manrope', sans-serif;
  letter-spacing: .5px;
}
.pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.pillar.p1 .pillar-icon { background: var(--purple); }
.pillar.p2 .pillar-icon { background: var(--blue); }
.pillar.p3 .pillar-icon { background: var(--amber); }
.pillar h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  font-family: 'Manrope', sans-serif;
  letter-spacing: -.02em;
}
.pillar.p1 h3 .accent { color: var(--purple); }
.pillar.p2 h3 .accent { color: var(--blue); }
.pillar.p3 h3 .accent { color: var(--amber); }
.pillar p.tagline {
  font-size: 16px;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.pillar ul { list-style: none; margin-top: auto; }
.pillar li {
  padding: 5px 0;
  font-size: 14px;
  color: #555;
  display: flex;
  gap: 8px;
  align-items: center;
}
.pillar li::before { content: '→'; opacity: .6; }

/* ================================================================
   INTEGRATIONS STRIP
   ================================================================ */

.integrations {
  padding: 80px 32px;
  background: linear-gradient(180deg, white 0%, #fafafa 100%);
}
.integrations.alt-bg { background: #fafafa; }
.integrations-inner { max-width: 1280px; margin: 0 auto; }
.integrations-head { text-align: center; margin-bottom: 48px; }
.integrations-head h3 {
  font-size: 28px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.integrations-head p {
  color: #666;
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}
.integration-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.int-logo {
  padding: 22px 14px;
  background: white;
  border: 1px solid #eee;
  border-radius: 14px;
  text-align: center;
  transition: all .2s;
}
.int-logo:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.04);
}
.int-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
}
.int-logo-name { font-size: 13px; font-weight: 600; color: #333; }
.int-logo-tag { font-size: 11px; color: #888; margin-top: 2px; }
.l-qb { background: #2CA01C; }
.l-ns { background: #003366; }
.l-sage { background: #00DC78; color: #003e1a !important; }
.l-dyn { background: #002050; font-size: 10px !important; }
.l-sap { background: #003D8F; font-size: 11px !important; }
.l-acu { background: #FF6B00; }
.l-odoo { background: #714B67; }
.l-mun { background: #1F2937; }
.l-xl { background: #207245; }
.l-cust { background: linear-gradient(135deg, var(--purple), var(--pink)); }
.integrations-tell {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: #666;
}
.integrations-tell a { color: var(--purple); font-weight: 600; text-decoration: none; }

/* ================================================================
   FEATURE SECTIONS (Analyze/Ask/Act)
   ================================================================ */

.feature-section { padding: 100px 32px; }
.feature-section.alt { background: #fafafa; }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-grid.reverse { direction: rtl; }
.feature-grid.reverse > * { direction: ltr; }

.feature-text .badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 16px;
  font-family: 'Manrope', sans-serif;
}
.feature-text .badge.b-ask { background: rgba(59,130,246,.1); color: var(--blue); }
.feature-text .badge.b-act { background: rgba(245,158,11,.15); color: #b45309; }
.feature-text .badge.b-analyze { background: rgba(124,58,237,.1); color: var(--purple); }
.feature-text h2 {
  font-size: 44px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.feature-text h2 em {
  font-style: normal;
  background: var(--grad-3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.feature-text > p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-list { list-style: none; }
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 0;
  font-size: 15px;
  color: #444;
}
.feature-list .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16,185,129,.15);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 800;
  margin-top: 2px;
}
.feature-list strong { font-weight: 700; color: var(--ink); }

/* ================================================================
   ANALYZE MOCKUP
   ================================================================ */

.analyze-mock {
  background: white;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 20px 50px rgba(124,58,237,.08);
}
.analyze-mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}
.analyze-mock-title { font-size: 14px; font-weight: 700; }
.analyze-mock-period { font-size: 11px; color: #888; }
.live-pill {
  font-size: 11px;
  padding: 4px 8px;
  background: #f0fdf4;
  color: var(--green);
  border-radius: 6px;
  font-weight: 600;
}
.analyze-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.analyze-stat {
  padding: 12px;
  background: linear-gradient(135deg, rgba(124,58,237,.05), rgba(236,72,153,.05));
  border-radius: 10px;
}
.analyze-stat.alt-green { background: linear-gradient(135deg, rgba(16,185,129,.08), rgba(6,182,212,.08)); }
.analyze-stat.alt-amber { background: linear-gradient(135deg, rgba(245,158,11,.08), rgba(239,68,68,.05)); }
.analyze-stat.alt-red { background: linear-gradient(135deg, rgba(239,68,68,.08), rgba(236,72,153,.05)); }
.analyze-stat-num {
  font-size: 22px;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.analyze-stat-num.pos { color: var(--green); }
.analyze-stat-num.neg { color: var(--red); }
.analyze-stat-num.warn { color: #b45309; }
.analyze-stat-label { font-size: 11px; color: #666; }
.analyze-line-chart { height: 120px; padding-top: 8px; position: relative; }
.analyze-alert {
  font-size: 11px;
  color: #666;
  padding: 10px;
  background: #fef3c7;
  border-radius: 8px;
  margin-top: 12px;
}
.analyze-alert a { color: var(--purple); font-weight: 600; text-decoration: none; }

/* ================================================================
   CHAT MOCKUP
   ================================================================ */

.chat-mockup {
  background: white;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 20px 50px rgba(59,130,246,.08);
}
.chat-mockup-header {
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 13px;
}
.ai-info { flex: 1; }
.ai-name { font-size: 14px; font-weight: 700; }
.ai-status { font-size: 11px; color: var(--green); font-weight: 600; }
.ai-status::before { content: '● '; }

.chat-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.chat-row.user { flex-direction: row-reverse; }
.chat-bubble {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 85%;
}
.chat-bubble.user {
  background: var(--grad);
  color: white;
  border-bottom-right-radius: 4px;
}
.chat-bubble.ai {
  background: #f5f5f5;
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.chat-mini-chart {
  background: white;
  padding: 12px;
  border-radius: 8px;
  margin-top: 8px;
  border: 1px solid #eaeaea;
}
.chat-mini-bars { display: flex; align-items: end; gap: 4px; height: 60px; }
.chat-mini-bar { flex: 1; background: var(--blue); border-radius: 2px 2px 0 0; }
.chat-mini-labels {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #888;
  margin-top: 4px;
}
.chat-list {
  display: block;
  font-size: 12px;
  margin-top: 8px;
  padding: 8px;
  background: white;
  border-radius: 6px;
  border: 1px solid #eee;
  line-height: 1.6;
}
.chat-list .dim { opacity: .6; }
.chat-followup { font-size: 12px; margin-top: 10px; }
.chat-input-mock {
  margin-top: 16px;
  padding: 12px 14px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-input-mock input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 13px;
  color: #555;
  outline: none;
}
.chat-input-mock-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}
.dim { opacity: .7; }

/* ================================================================
   FLOW MOCKUP (ACT)
   ================================================================ */

.flow-mockup {
  background: white;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 20px 50px rgba(245,158,11,.08);
}
.flow-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #333;
}
.flow-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  background: #fafafa;
  border-radius: 12px;
  margin-bottom: 10px;
  transition: all .2s;
}
.flow-step.active {
  background: linear-gradient(135deg, rgba(245,158,11,.08), rgba(239,68,68,.05));
  border: 1px solid rgba(245,158,11,.2);
}
.flow-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.flow-step.s1 .flow-step-icon { background: var(--blue); }
.flow-step.s2 .flow-step-icon { background: var(--purple); }
.flow-step.s3 .flow-step-icon { background: var(--amber); }
.flow-step.s4 .flow-step-icon { background: var(--green); }
.flow-step-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.flow-step-text span { font-size: 12px; color: #666; }
.flow-arrow { text-align: center; color: #ccc; font-size: 16px; margin: -4px 0; }
.flow-result {
  margin-top: 18px;
  padding: 14px;
  background: rgba(16,185,129,.08);
  border-radius: 10px;
  border-left: 3px solid var(--green);
}
.flow-result strong {
  display: block;
  font-size: 13px;
  color: var(--green);
  margin-bottom: 2px;
}
.flow-result span { font-size: 12px; color: #444; }

/* ================================================================
   PROCESS
   ================================================================ */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.process-step { text-align: center; position: relative; }
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--purple);
  color: var(--purple);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  font-family: 'Manrope', sans-serif;
  position: relative;
  z-index: 2;
}
.process-step h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Manrope', sans-serif;
}
.process-step p { font-size: 14px; color: #555; line-height: 1.5; }
.process::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(124,58,237,.3), rgba(236,72,153,.3), rgba(245,158,11,.3));
  z-index: 1;
}

/* ================================================================
   WHAT WE DON'T DO
   ================================================================ */

.dont-do {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.dont-do-content h2 {
  font-size: 42px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}
.dont-do-content p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
}
.dont-do-list { list-style: none; }
.dont-do-list li {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.dont-do-list li:last-child { border-bottom: none; }
.dont-do-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fef2f2;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
}
.dont-do-list li strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.dont-do-list li span {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* ================================================================
   CTA BAND
   ================================================================ */

.cta-band { padding: 100px 32px; }
.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 60px;
  background: var(--grad);
  border-radius: 32px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.15), transparent 60%);
  border-radius: 50%;
}
.cta-inner h2 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 16px;
  position: relative;
  font-family: 'Manrope', sans-serif;
}
.cta-inner p {
  font-size: 19px;
  opacity: .9;
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-inner .cta-btns {
  position: relative;
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-inner .btn-primary {
  background: white;
  color: var(--purple);
  padding: 16px 32px;
  font-size: 16px;
}
.cta-inner .btn-primary:hover {
  background: white;
  color: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}
.cta-inner .btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,.4);
  padding: 16px 32px;
  font-size: 16px;
}
.cta-inner .btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: white;
  color: white;
}

/* ================================================================
   INTERIOR PAGE HERO
   ================================================================ */

.page-hero {
  padding: 80px 32px 30px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #faf5ff 0%, white 100%);
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: 60px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: normal; }
.page-hero p {
  font-size: 21px;
  color: #555;
  line-height: 1.5;
  max-width: 660px;
  margin: 0 auto;
}

/* ================================================================
   SOLUTIONS PAGE
   ================================================================ */

.solutions-cap { padding: 30px 32px 60px; background: white; }
.solutions-cap-inner { max-width: 1280px; margin: 0 auto; }
.cap-block { padding: 60px 0; border-bottom: 1px solid #f0f0f0; }
.cap-block:first-child { padding-top: 30px; }
.cap-block:last-child { border-bottom: none; padding-bottom: 30px; }
.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.cap-grid.reverse { direction: rtl; }
.cap-grid.reverse > * { direction: ltr; }
.cap-text .cap-num {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.cap-text .cap-num-blue { color: var(--blue); }
.cap-text .cap-num-amber { color: #b45309; }
.cap-text h2 {
  font-size: 48px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.035em;
  margin-bottom: 20px;
}
.cap-text > p {
  font-size: 19px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ================================================================
   INDUSTRIES
   ================================================================ */

.industries { padding: 100px 32px; }
.industries-inner { max-width: 1280px; margin: 0 auto; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.industry-card {
  padding: 36px;
  background: white;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  transition: all .3s;
}
.industry-card:hover {
  border-color: var(--purple);
  box-shadow: 0 16px 36px rgba(124,58,237,.1);
  transform: translateY(-3px);
}
.industry-card .ind-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-card.i1 .ind-icon { background: linear-gradient(135deg, #7C3AED, #6366F1); }
.industry-card.i2 .ind-icon { background: linear-gradient(135deg, #EC4899, #F43F5E); }
.industry-card.i3 .ind-icon { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.industry-card.i4 .ind-icon { background: linear-gradient(135deg, #10B981, #06B6D4); }
.industry-card h3 {
  font-size: 24px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.industry-card .ind-tag {
  font-size: 13px;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 16px;
}
.industry-card > p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}
.industry-card ul { list-style: none; }
.industry-card li {
  padding: 4px 0;
  font-size: 13px;
  color: #666;
  display: flex;
  gap: 8px;
  align-items: center;
}
.industry-card li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ================================================================
   SEE IT LIVE PAGE
   ================================================================ */

.dashboard-section { padding: 40px 32px 80px; background: white; }
.dashboard-mock {
  max-width: 1180px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(124,58,237,.15), 0 8px 24px rgba(0,0,0,.06);
  border: 1px solid #f0f0f0;
  overflow: hidden;
}
.dm-bar {
  padding: 12px 20px;
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  border-bottom: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dm-dot { width: 11px; height: 11px; border-radius: 50%; }
.dm-dot-r { background: #FF5F57; }
.dm-dot-y { background: #FEBC2E; }
.dm-dot-g { background: #28C840; }
.dm-url {
  margin-left: 12px;
  padding: 4px 12px;
  background: white;
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #666;
  flex: 1;
  max-width: 360px;
  text-align: center;
  border: 1px solid #eee;
}
.dm-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 480px;
}
.dm-sidebar {
  background: #fafafa;
  padding: 20px 12px;
  border-right: 1px solid #eee;
}
.dm-side-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 13px;
  font-family: 'Manrope', sans-serif;
}
.dm-side-logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--grad);
}
.dm-side-item {
  padding: 8px 12px;
  font-size: 13px;
  color: #555;
  border-radius: 6px;
  margin-bottom: 2px;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dm-side-item.active {
  background: linear-gradient(135deg, rgba(124,58,237,.1), rgba(236,72,153,.1));
  color: var(--purple);
  font-weight: 600;
}
.dm-side-icon { width: 16px; height: 16px; border-radius: 4px; background: #ddd; }
.dm-side-item.active .dm-side-icon { background: var(--purple); }
.dm-content { padding: 28px; overflow: hidden; }

.dm-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b5fc1 100%);
  color: white;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.dm-banner h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: 'Manrope', sans-serif;
}
.dm-banner p { font-size: 13px; opacity: .85; margin-bottom: 12px; }
.dm-banner-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.dm-banner-pill {
  padding: 4px 10px;
  background: rgba(255,255,255,.15);
  border-radius: 6px;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
}

.dm-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.dm-stat-card {
  padding: 14px;
  border: 1px solid #eee;
  border-radius: 10px;
}
.dm-stat-label {
  font-size: 10px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
  font-weight: 600;
}
.dm-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  font-family: 'Manrope', sans-serif;
  line-height: 1;
}
.dm-stat-sub {
  font-size: 11px;
  color: var(--green);
  margin-top: 4px;
  font-weight: 600;
}
.dm-stat-sub.muted { color: #888; }

.dm-charts {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
}
.dm-chart-card {
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 10px;
}
.dm-chart-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}
.dm-bars { display: flex; align-items: end; gap: 8px; height: 110px; }
.dm-bar-grp {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.dm-bar-fill {
  width: 100%;
  background: var(--blue);
  border-radius: 3px 3px 0 0;
}
.bar-blue { background: #3B82F6; }
.bar-purple { background: #7C3AED; }
.bar-pink { background: #EC4899; }
.dm-bar-label { font-size: 9px; color: #888; }
.dm-donut { width: 130px; height: 130px; margin: 0 auto; position: relative; }

.dashboard-caption {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #888;
  font-style: italic;
}

/* See It Live: explainer cards */
.explainer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.explainer-card {
  padding: 32px;
  background: white;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
}
.explainer-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.ei-purple { background: linear-gradient(135deg, #7C3AED, #6366F1); }
.ei-blue { background: linear-gradient(135deg, #3B82F6, #06B6D4); }
.ei-amber { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.explainer-card h3 {
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}
.explainer-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* See It Live: demo request */
.demo-request-section { padding: 100px 32px; background: white; }
.demo-request-box {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a1535 0%, #4c1d95 100%);
  border-radius: 32px;
  padding: 80px 60px;
  color: white;
  position: relative;
  overflow: hidden;
}
.demo-request-box::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(236,72,153,.2), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.demo-request-box::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,.3), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.demo-request-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.demo-request-pitch .demo-request-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 30px;
  letter-spacing: .5px;
  margin-bottom: 20px;
  font-family: 'Manrope', sans-serif;
}
.demo-request-pitch h2 {
  font-size: 44px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.demo-request-pitch h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #c4b5fd, #f9a8d4, #fcd34d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.demo-request-pitch > p {
  font-size: 17px;
  opacity: .9;
  line-height: 1.6;
  margin-bottom: 28px;
}
.demo-pitch-list {
  list-style: none;
  margin-bottom: 28px;
}
.demo-pitch-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 6px 0;
  font-size: 15px;
}
.check-green { color: #10B981; font-weight: 800; }

.demo-request-form-wrap {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
}
.demo-request-form-wrap h3 {
  font-size: 22px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
}
.demo-form-sub { font-size: 14px; opacity: .8; margin-bottom: 24px; }
.demo-form-group { margin-bottom: 14px; }
.demo-form input,
.demo-form select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  color: white;
  font-size: 14px;
  font-family: inherit;
}
.demo-form input::placeholder { color: rgba(255,255,255,.6); }
.demo-form input:focus,
.demo-form select:focus {
  outline: none;
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.12);
}
.demo-form select option { color: #333; background: white; }
.demo-submit-btn {
  width: 100%;
  padding: 14px;
  background: white;
  color: var(--purple);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
  margin-top: 4px;
}
.demo-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.demo-submit-btn:disabled { opacity: .6; cursor: not-allowed; }
.demo-form-hint {
  font-size: 11px;
  opacity: .7;
  margin-top: 14px;
  text-align: center;
}
.alert-success {
  padding: 14px 18px;
  background: rgba(16,185,129,.15);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: 12px;
  color: #d1fae5;
  margin-bottom: 20px;
  font-size: 14px;
}
.alert-success strong { display: block; margin-bottom: 4px; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */

.about-intro { padding: 80px 32px; background: white; }
.about-intro-inner { max-width: 820px; margin: 0 auto; }
.about-intro p {
  font-size: 20px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 24px;
}
.about-intro p.lead {
  font-size: 26px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--ink);
}
.signature {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 16px;
}
.signature-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
}
.signature-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.18);
}
.signature-name { font-weight: 700; font-size: 16px; font-family: 'Manrope', sans-serif; }
.signature-title { font-size: 13px; color: #666; }

.values { padding: 100px 32px; background: #fafafa; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.value-card {
  padding: 32px 24px;
  background: white;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  text-align: center;
}
.value-card h3 {
  font-size: 22px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.value-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.story-section { padding: 100px 32px; }
.story-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-text h2 {
  font-size: 44px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}
.story-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}
.story-visual {
  background: var(--grad);
  border-radius: 32px;
  padding: 48px;
  color: white;
  text-align: center;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.story-visual::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,.2), transparent 60%);
  border-radius: 50%;
}
.story-visual h3 {
  font-size: 28px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
}
.story-visual p {
  font-size: 16px;
  opacity: .9;
  max-width: 280px;
  position: relative;
}
.story-stats {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  position: relative;
}
.story-stat { text-align: center; min-width: 120px; }
.story-stat .num {
  font-size: 32px;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
}
.story-stat .label { font-size: 12px; opacity: .85; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */

.contact-page { padding: 80px 32px; background: white; }
.contact-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}
.contact-info h2 {
  font-size: 36px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}
.contact-info > p {
  color: #555;
  font-size: 16px;
  margin-bottom: 32px;
}
.contact-method {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.contact-method:last-child { border-bottom: none; }
.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124,58,237,.1), rgba(236,72,153,.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: 'Manrope', sans-serif;
}
.contact-method-text span,
.contact-method-text a {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}
.contact-method-text a:hover { color: var(--purple); }

.demo-callout {
  margin-top: 24px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(124,58,237,.08), rgba(236,72,153,.08));
  border-radius: 16px;
  border: 1px solid rgba(124,58,237,.2);
}
.demo-callout h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Manrope', sans-serif;
}
.demo-callout p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
.demo-callout a { color: var(--purple); font-weight: 700; text-decoration: none; }

.contact-form-wrap {
  background: white;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #eee;
  box-shadow: 0 8px 30px rgba(0,0,0,.04);
}
.contact-form-wrap h2 {
  font-size: 28px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  color: #666;
  font-size: 15px;
  margin-bottom: 28px;
}
.contact-form-wrap .alert-success {
  padding: 14px 18px;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: 12px;
  color: #065f46;
  margin-bottom: 20px;
  font-size: 14px;
}
.contact-form-wrap .alert-success strong { display: block; margin-bottom: 4px; color: #064e3b; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.req { color: var(--pink); }
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e5e5e5;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  transition: all .2s;
  background: white;
}
.form-control:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(124,58,237,.1);
}
textarea.form-control { resize: vertical; min-height: 100px; }

.form-actions { margin-top: 24px; }
.form-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
}
.form-hint {
  font-size: 12px;
  color: #888;
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}
.form-hint a { color: #888; text-decoration: underline; }

.field-validation {
  display: block;
  font-size: 12px;
  color: var(--red);
  margin-top: 6px;
}
.validation-summary {
  padding: 12px;
  background: rgba(239,68,68,.08);
  border-radius: 8px;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 13px;
}
.validation-summary ul { list-style: none; margin: 0; padding: 0; }

/* ================================================================
   FOOTER
   ================================================================ */

.site-footer { padding: 60px 32px 32px; background: #0a0a0a; color: #999; }
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #222;
}
.footer-brand { color: white; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  color: white;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  max-width: 320px;
  color: #999;
}
.site-footer h4 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-family: 'Manrope', sans-serif;
}
.site-footer ul {
  list-style: none;
}
.site-footer li { margin-bottom: 10px; font-size: 14px; }
.site-footer a { color: #999; text-decoration: none; }
.site-footer a:hover { color: white; }
.site-footer address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
}
.site-footer address p { margin-bottom: 8px; color: #999; }
.site-footer address strong { color: white; }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #666;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1000px) {
  .hero-v2 h1 { font-size: 48px; }
  .hero-banner { padding: 60px 32px; }
  .section-title { font-size: 36px; }
  .page-hero h1 { font-size: 42px; }

  .pillars-grid,
  .integration-logos,
  .footer-grid,
  .values-grid,
  .process,
  .explainer-grid {
    grid-template-columns: 1fr;
  }
  .integration-logos { grid-template-columns: 1fr 1fr 1fr; }

  .feature-grid,
  .story-grid,
  .dont-do,
  .contact-grid,
  .industries-grid,
  .cap-grid,
  .demo-request-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-grid.reverse,
  .cap-grid.reverse {
    direction: ltr;
  }

  .form-row { grid-template-columns: 1fr; }

  .dm-body { grid-template-columns: 1fr; }
  .dm-sidebar { display: none; }
  .dm-stat-row { grid-template-columns: 1fr 1fr; }
  .dm-charts { grid-template-columns: 1fr; }

  .demo-request-box { padding: 50px 32px; }
  .cta-inner { padding: 50px 32px; }
  .cta-inner h2 { font-size: 36px; }

  .nav-toggle { display: flex; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #eee;
    padding: 20px 0;
  }
  .primary-nav.open { display: block; }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav li { width: 100%; padding: 0 32px; }
  .primary-nav a { display: block; padding: 12px 0; }
  .primary-nav .cta-link {
    display: inline-block;
    margin-top: 12px;
  }
}

@media (max-width: 600px) {
  .hero-v2 h1 { font-size: 36px; }
  .section-title { font-size: 28px; }
  .page-hero h1 { font-size: 32px; }
  .feature-text h2,
  .cap-text h2,
  .demo-request-pitch h2 { font-size: 32px; }
  .integration-logos { grid-template-columns: 1fr 1fr; }
  .integrations { padding: 60px 24px; }
}

/* ================================================================
   SEE IT LIVE - DASHBOARD CAROUSEL (added in Phase 2)
   ================================================================ */

.carousel-section {
  padding: 24px 32px 40px;
  background: white;
}

.carousel {
  max-width: 1180px;
  margin: 0 auto;
}

.carousel-stage {
  position: relative;
  background: white;
  border-radius: 20px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 30px 80px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.04);
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4, .0, .2, 1);
  width: 100%;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 530px;
  padding: 24px 36px 16px;
  background: white;
  overflow: hidden;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e5e5e5;
  color: #444;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  transition: all .2s;
}
.carousel-nav:hover:not(:disabled) {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 20px rgba(124,58,237,.35);
}
.carousel-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 8px 0;
  margin-top: 12px;
}

.carousel-counter {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Manrope', sans-serif;
}
.current-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--purple);
}
.counter-divider {
  font-size: 16px;
  color: #ccc;
  font-weight: 400;
}
.total-num {
  font-size: 16px;
  color: #888;
  font-weight: 600;
  margin-right: 14px;
}
.counter-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  letter-spacing: -.01em;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .2s;
}
.carousel-dot:hover { background: #aaa; }
.carousel-dot.active {
  background: var(--purple);
  transform: scale(1.3);
}

/* ===== Dashboard slide content ===== */
.dash {
  font-family: 'Inter', sans-serif;
  color: #333;
}

.dash-banner {
  border-radius: 12px;
  padding: 22px 26px;
  color: white;
  margin-bottom: 18px;
}
.dash-banner-green {
  background: linear-gradient(135deg, #1F9D88 0%, #16A085 100%);
}
.dash-banner h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -.01em;
  font-family: 'Inter', sans-serif;
}
.dash-banner p {
  font-size: 14px;
  opacity: 0.92;
  margin-bottom: 14px;
}
.dash-banner-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.banner-pill {
  padding: 5px 12px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}

.dash-title-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.dash-title-icon {
  font-size: 32px;
  line-height: 1;
  margin-top: 2px;
}
.dash-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -.015em;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}
.dash-subtitle {
  font-size: 13px;
  color: #5BCFB6;
  font-weight: 500;
}

.dash-section-label {
  font-size: 11px;
  font-weight: 700;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 16px 0 8px;
}
.dash-section-label:first-child {
  margin-top: 0;
}

.dash-divider {
  height: 1px;
  background: #eee;
  margin: 14px 0;
}

.dash-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}
.dash-kpi-row-3 { grid-template-columns: repeat(3, 1fr); }
.dash-kpi-row-4 { grid-template-columns: repeat(4, 1fr); }

.dash-kpi {
  padding: 4px 0;
}
.kpi-label {
  font-size: 13px;
  color: #1F9D88;
  font-weight: 500;
  margin-bottom: 6px;
}
.kpi-label-blue { color: #1971C2; }
.kpi-value {
  font-size: 30px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: -.015em;
  font-family: 'Inter', sans-serif;
  line-height: 1.1;
  margin-bottom: 6px;
}
.kpi-sub {
  display: inline-block;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 12px;
  background: #f3f4f6;
  color: #666;
  font-weight: 500;
}
.kpi-sub-green {
  background: #d1f7e8;
  color: #065f46;
}
.kpi-sub-red {
  background: #fee2e2;
  color: #991b1b;
}
.kpi-sub-gray {
  background: #f3f4f6;
  color: #6b7280;
}

.dash-charts-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.dash-chart {
  padding: 0;
}
.dash-chart-full {
  padding: 0;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}
.chart-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -.01em;
}
.chart-sub {
  font-size: 13px;
  color: #5BCFB6;
  margin-bottom: 10px;
  font-weight: 500;
}
.chart-legend {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: #666;
}
.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.legend-sq {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 2px;
}
.legend-line {
  display: inline-block;
  width: 16px;
  height: 2px;
}
.sq-blue { background: #3B82F6; }
.sq-green { background: #1F9D88; }
.line-green { background: #10b981; }

.chart-svg {
  width: 100%;
  height: auto;
  max-height: 220px;
  display: block;
}
.dash-chart-full .chart-svg {
  max-height: 280px;
}

/* ===== Ask the Data slide ===== */
.ask-section {
  margin-bottom: 24px;
}
.ask-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}
.ask-questions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.ask-q {
  padding: 10px 14px;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 13px;
  color: #4b5563;
  cursor: pointer;
  text-align: center;
  transition: all .15s;
  font-family: inherit;
  line-height: 1.3;
}
.ask-q:hover {
  border-color: var(--purple);
  background: #faf5ff;
  color: var(--purple);
}

.ask-input-section {
  margin-bottom: 24px;
}
.ask-input-row {
  margin-bottom: 12px;
}
.ask-input {
  width: 100%;
  padding: 12px 14px;
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  color: #1a1a1a;
  font-family: inherit;
}
.ask-btn {
  padding: 10px 22px;
  background: #2563EB;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.ask-btn:hover { background: #1d4ed8; }

.ask-result-section {
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.ask-q-echo {
  font-size: 14px;
  color: #333;
  margin-bottom: 12px;
}
.ask-sql-collapse {
  padding: 10px 14px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 13px;
  color: #2563EB;
  margin-bottom: 18px;
  cursor: pointer;
}
.sql-arrow { color: #888; margin-right: 4px; }

.ask-results-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.ask-results-icon { font-size: 22px; }
.ask-results-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -.015em;
  margin: 0;
}

.ask-table-wrap {
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}
.ask-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.ask-table th {
  background: #f9fafb;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  color: #6b7280;
  border-bottom: 1px solid #e5e7eb;
}
.ask-table td {
  padding: 10px 14px;
  color: #1a1a1a;
  border-bottom: 1px solid #f3f4f6;
}
.ask-table tr:last-child td { border-bottom: none; }
.ask-table .num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* ===== Carousel responsive ===== */
@media (max-width: 1000px) {
  .carousel-slide { padding: 20px 16px 16px; height: auto; min-height: 480px; }
  .dash-charts-2col { grid-template-columns: 1fr; gap: 18px; }
  .dash-kpi-row,
  .dash-kpi-row-3,
  .dash-kpi-row-4 { grid-template-columns: 1fr 1fr; gap: 18px; }
  .ask-questions { grid-template-columns: 1fr 1fr; }
  .carousel-nav {
    width: 40px;
    height: 40px;
  }
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
  .kpi-value { font-size: 24px; }
  .dash-banner h2 { font-size: 22px; }
  .dash-title { font-size: 22px; }
  .carousel-controls {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .dash-kpi-row,
  .dash-kpi-row-3,
  .dash-kpi-row-4 { grid-template-columns: 1fr; }
  .ask-questions { grid-template-columns: 1fr; }
  .ask-q { font-size: 12px; padding: 8px 10px; }
  .carousel-slide { padding: 16px 12px 14px; }
}


/* ================================================================
   DEMO SUCCESS CARD (replaces form after submit)
   ================================================================ */

.demo-success-card {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 60px;
  color: white;
  outline: none;
}

.demo-success-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--cyan) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
  animation: success-bounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes success-bounce {
  0% { transform: scale(0.3); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.demo-success-card h2 {
  font-size: 38px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  color: white;
  background: linear-gradient(135deg, #c4b5fd 0%, #f9a8d4 50%, #fcd34d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.demo-success-card > p {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  margin: 0 auto 12px;
}

.demo-success-sub {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.65) !important;
  margin-top: 8px;
  margin-bottom: 32px !important;
}

.demo-success-actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.demo-success-actions .btn-primary {
  background: white;
  color: var(--purple);
}
.demo-success-actions .btn-primary:hover {
  background: white;
  color: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.demo-success-actions .btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.demo-success-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

@media (max-width: 1000px) {
  .demo-success-card { padding: 60px 24px; }
  .demo-success-card h2 { font-size: 28px; }
  .demo-success-card > p { font-size: 16px; }
}


/* ================================================================
   LOGO DISPLAY (added when actual logo deployed)
   ================================================================ */

/* Header brand: logo only, no text */
.brand-logo-only {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 4px;
  border-radius: 12px;
  transition: transform .2s;
}
.brand-logo-only:hover {
  transform: scale(1.05);
}
.brand-img {
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 50%;
}

/* Footer logo */
.footer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: block;
}

/* About page hero logo */
.about-logo-display {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.about-logo-display img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.25);
  animation: logo-bounce-in 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes logo-bounce-in {
  0% { transform: scale(0.5) rotate(-10deg); opacity: 0; }
  60% { transform: scale(1.05) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

@media (max-width: 1000px) {
  .brand-img { width: 38px; height: 38px; }
  .about-logo-display img { width: 96px; height: 96px; }
}


/* ================================================================
   VISIT US SECTION (Contact page - map + contact card)
   ================================================================ */

.visit-us {
  padding: 80px 32px 100px;
  background: linear-gradient(180deg, white 0%, #fafafa 100%);
}
.visit-us .section-head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.visit-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e5e5;
  min-height: 460px;
  background: #f0f0f0;
}
.visit-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
}

.visit-card {
  display: flex;
  align-items: stretch;
}
.visit-card-inner {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 36px 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}
.visit-card h3 {
  font-size: 22px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 4px;
  color: var(--ink);
}
.visit-tag {
  font-size: 13px;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.visit-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.visit-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(236,72,153,.12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  flex-shrink: 0;
}
.visit-detail-label {
  font-size: 11px;
  font-weight: 700;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.visit-detail-value {
  font-size: 14px;
  color: #222;
  font-style: normal;
  line-height: 1.5;
  font-family: inherit;
}
.visit-detail-value a {
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.visit-detail-value a:hover {
  border-bottom-color: var(--purple);
  color: var(--purple);
}

.visit-directions-btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 12px 24px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; gap: 24px; }
  .visit-map { min-height: 340px; }
  .visit-map iframe { min-height: 340px; }
  .visit-us { padding: 60px 24px 70px; }
}

