/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy-900: #0a1628;
  --navy-800: #0f2039;
  --navy-700: #132d4f;
  --navy-600: #1a3a5c;
  --navy-500: #1e4d7b;
  --teal: #3bbfa0;
  --teal-light: #5dd9bc;
  --teal-dark: #2a9d82;
  --teal-glow: rgba(59, 191, 160, 0.15);
  --blue-accent: #2b7de9;
  --blue-light: #5fa0f5;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f0f4f8;
  --gray-200: #dce4ed;
  --gray-300: #b0bec5;
  --gray-400: #78909c;
  --gray-500: #546e7a;
  --green-accent: #22c55e;
  --red-accent: #ef4444;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Space Mono', 'JetBrains Mono', 'Fira Code', monospace;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 30px rgba(59, 191, 160, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background: var(--navy-900);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

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

.section { padding: 100px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: var(--font-primary);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-light);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  border-color: var(--teal);
  background: rgba(59, 191, 160, 0.1);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy-900);
}

.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal);
}

.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(59, 191, 160, 0.12);
  border: 1px solid rgba(59, 191, 160, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--teal-light);
}

.badge svg { width: 14px; height: 14px; }

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.logo img {
  height: 38px;
  width: auto;
}

.logo-text { font-size: 1.3rem; font-weight: 700; }
.logo-text .med { color: var(--navy-900); }
.logo-text .fuel { color: var(--navy-900); }
.logo-text .ai-text { color: var(--gray-400); }

/* On dark backgrounds, make logo text white */
.header .logo-text .med,
.header .logo-text .fuel,
.footer .logo-text .med,
.footer .logo-text .fuel {
  color: var(--white);
}

.header .logo-text .ai-text,
.footer .logo-text .ai-text {
  color: var(--gray-300);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-300);
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-right .btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.nav-right .login-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-300);
  white-space: nowrap;
}

.nav-right .login-link:hover {
  color: var(--teal);
}

.compliance-badges {
  display: flex;
  gap: 8px;
}

.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(59, 191, 160, 0.1);
  border: 1px solid rgba(59, 191, 160, 0.25);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
}

.compliance-badge svg {
  flex-shrink: 0;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59, 191, 160, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(43, 125, 233, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-content { max-width: 720px; }

.hero-badge { margin-bottom: 24px; }

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-300);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-300);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

/* ===== METRICS DASHBOARD ===== */
.metrics-section { padding: 80px 0; position: relative; }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.metric-card {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}

.metric-card:hover {
  border-color: rgba(59, 191, 160, 0.3);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.metric-label { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 8px; }
.metric-value { font-size: 2.2rem; font-weight: 800; margin-bottom: 6px; }
.metric-value.positive { color: var(--teal); }

.metric-change { font-size: 0.8rem; display: flex; align-items: center; gap: 4px; }
.metric-change.up { color: var(--teal); }
.metric-change.down { color: var(--teal); }

.ai-actions {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 28px;
}

.ai-actions h3 { font-size: 1rem; margin-bottom: 16px; color: var(--gray-300); }

.action-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
}

.action-item:last-child { border-bottom: none; }

.action-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.action-dot.green { background: var(--teal); box-shadow: 0 0 8px rgba(59, 191, 160, 0.4); }
.action-dot.blue { background: var(--blue-accent); box-shadow: 0 0 8px rgba(43, 125, 233, 0.4); }

.action-time {
  margin-left: auto;
  color: var(--gray-400);
  font-size: 0.8rem;
  font-family: var(--font-mono);
  flex-shrink: 0;
}

/* ===== SECTION COMMON ===== */
.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-300);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.stat-card {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
}

.stat-number { font-size: 2.8rem; font-weight: 800; color: var(--red-accent); margin-bottom: 8px; }
.stat-desc { font-size: 0.95rem; color: var(--gray-300); line-height: 1.5; }

.problem-challenges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.challenge-card {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 28px;
}

.challenge-card svg { width: 24px; height: 24px; color: var(--teal); margin-bottom: 16px; }
.challenge-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.challenge-card p { font-size: 0.9rem; color: var(--gray-400); line-height: 1.6; }

/* ===== VISIBILITY / DASHBOARD ===== */
.visibility-section { padding: 100px 0; }

.visibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.visibility-features { display: flex; flex-direction: column; gap: 24px; }

.feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.feature-item:hover { background: rgba(59, 191, 160, 0.06); }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(59, 191, 160, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg { width: 22px; height: 22px; color: var(--teal); }
.feature-item h4 { font-size: 1rem; margin-bottom: 4px; }
.feature-item p { font-size: 0.88rem; color: var(--gray-400); line-height: 1.5; }

.dashboard-preview {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-header h4 { font-size: 1rem; }

.dashboard-status { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--teal); }

.dashboard-status .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.dashboard-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 24px; }

.dash-metric { background: var(--navy-700); border-radius: var(--radius-sm); padding: 16px; }
.dash-metric-label { font-size: 0.75rem; color: var(--gray-400); margin-bottom: 4px; }
.dash-metric-value { font-size: 1.4rem; font-weight: 700; }

.dashboard-chart {
  background: var(--navy-700);
  border-radius: var(--radius-sm);
  padding: 20px;
  height: 160px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--teal-dark), var(--teal-light));
  border-radius: 4px 4px 0 0;
  min-height: 20px;
  transition: var(--transition);
  opacity: 0.7;
}

.chart-bar:hover { opacity: 1; }

/* ===== AGENTS / AUTOMATION ===== */
.agents-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-900) 100%);
}

.agents-section .section-title,
.agents-section .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.agents-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.agent-card {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.agent-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  opacity: 0;
  transition: var(--transition);
}

.agent-card:hover {
  border-color: rgba(59, 191, 160, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.agent-card:hover::before { opacity: 1; }

.agent-number { font-size: 0.75rem; font-weight: 700; color: var(--teal); font-family: var(--font-mono); margin-bottom: 16px; }
.agent-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.agent-card p { font-size: 0.9rem; color: var(--gray-400); line-height: 1.6; margin-bottom: 16px; }

.agent-stat { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--teal); font-weight: 600; }

/* ===== IMPACT / METRICS ===== */
.impact-section { padding: 100px 0; }

.impact-section .section-title,
.impact-section .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.impact-card {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 36px;
  text-align: center;
  transition: var(--transition);
}

.impact-card:hover {
  border-color: rgba(59, 191, 160, 0.3);
  transform: translateY(-4px);
}

.impact-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.impact-card h4 { font-size: 1rem; margin-bottom: 6px; }
.impact-card p { font-size: 0.85rem; color: var(--gray-400); }

/* ===== TESTIMONIAL ===== */
.testimonial-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
}

.testimonial-section .section-title { text-align: center; margin-bottom: 48px; }

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
}

.testimonial-quote { font-size: 1.2rem; line-height: 1.8; color: var(--gray-200); margin-bottom: 28px; font-style: italic; }

.testimonial-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--teal);
  line-height: 0;
  position: relative;
  top: 20px;
  margin-right: 8px;
}

.testimonial-author { display: flex; align-items: center; gap: 16px; }

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info h4 { font-size: 1rem; margin-bottom: 2px; }
.author-info p { font-size: 0.85rem; color: var(--gray-400); }

/* ===== WORKFLOW DEMO ===== */
.workflow-section { padding: 100px 0; }

.workflow-section .section-title,
.workflow-section .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.workflow-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }

.workflow-step {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.workflow-step:hover { border-color: rgba(59, 191, 160, 0.3); }

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(59, 191, 160, 0.15);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 auto 16px;
}

.workflow-step h4 { font-size: 1rem; margin-bottom: 6px; }
.workflow-step p { font-size: 0.85rem; color: var(--gray-400); }

/* ===== INTEGRATIONS ===== */
.integrations-section {
  padding: 100px 0;
  background: var(--navy-800);
}

.integrations-section .section-title,
.integrations-section .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.integrations-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }

.integration-card {
  background: var(--navy-700);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-300);
}

.integration-card:hover {
  border-color: rgba(59, 191, 160, 0.3);
  background: var(--navy-600);
  transform: translateY(-2px);
}

.integration-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: rgba(59, 191, 160, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-icon svg { width: 24px; height: 24px; color: var(--teal); }

/* ===== OUTCOMES ===== */
.outcomes-section { padding: 100px 0; }

.outcomes-section .section-title,
.outcomes-section .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.outcomes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.outcome-card {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: var(--transition);
}

.outcome-card:hover { border-color: rgba(59, 191, 160, 0.3); }

.outcome-metric { font-size: 2.4rem; font-weight: 800; color: var(--teal); margin-bottom: 8px; }
.outcome-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.outcome-card p { font-size: 0.9rem; color: var(--gray-400); line-height: 1.6; }

/* ===== FAQ ===== */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}

.faq-section .section-title { text-align: center; margin-bottom: 48px; }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-primary);
}

.faq-question:hover { color: var(--teal); }

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--teal);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 24px; }
.faq-answer p { font-size: 0.95rem; color: var(--gray-300); line-height: 1.7; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 100px 0; text-align: center; }

.cta-box {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-800) 100%);
  border: 1px solid rgba(59, 191, 160, 0.2);
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(59, 191, 160, 0.06), transparent 60%);
  pointer-events: none;
}

.cta-box h2 { font-size: clamp(2rem, 3.5vw, 2.6rem); margin-bottom: 16px; position: relative; }
.cta-box p { font-size: 1.1rem; color: var(--gray-300); max-width: 500px; margin: 0 auto 36px; position: relative; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 0 0 40px; }

.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59, 191, 160, 0.06), transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--gray-300);
  max-width: 600px;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 0 0 100px;
}

.contact-form {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-200);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--navy-700);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(59, 191, 160, 0.15);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-group select option { background: var(--navy-800); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info-cards { display: flex; flex-direction: column; gap: 24px; }

.contact-info-card {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-info-card:hover { border-color: rgba(59, 191, 160, 0.3); }

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(59, 191, 160, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg { width: 22px; height: 22px; color: var(--teal); }

.contact-info-card h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-card p { font-size: 0.9rem; color: var(--gray-400); line-height: 1.5; }
.contact-info-card a { color: var(--teal); }
.contact-info-card a:hover { color: var(--teal-light); }

.contact-compliance-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* ===== ABOUT PAGE ===== */
.about-mission {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-grid h2 { font-size: 2rem; margin-bottom: 16px; }
.about-grid p { font-size: 1rem; color: var(--gray-300); line-height: 1.7; margin-bottom: 16px; }

.about-visual {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 300px;
}

.about-visual .big-icon { font-size: 4rem; margin-bottom: 16px; color: var(--teal); }
.about-visual h3 { font-size: 1.4rem; margin-bottom: 8px; }
.about-visual p { font-size: 0.95rem; color: var(--gray-400); }

.values-section { padding: 80px 0; }
.values-section .section-title,
.values-section .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.value-card {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  border-color: rgba(59, 191, 160, 0.3);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(59, 191, 160, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.value-icon svg { width: 26px; height: 26px; color: var(--teal); }
.value-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: var(--gray-400); line-height: 1.6; }

/* ===== FEATURES PAGE ===== */
.features-detail { padding: 80px 0; }

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.feature-block:nth-child(even) { direction: rtl; }
.feature-block:nth-child(even) > * { direction: ltr; }
.feature-block:last-child { border-bottom: none; }

.feature-block h3 { font-size: 1.6rem; margin-bottom: 12px; }
.feature-block p { font-size: 1rem; color: var(--gray-300); line-height: 1.7; margin-bottom: 20px; }

.feature-stats {
  display: flex;
  gap: 24px;
}

.feature-stat {
  text-align: center;
}

.feature-stat .stat-val { font-size: 1.6rem; font-weight: 800; color: var(--teal); }
.feature-stat .stat-label { font-size: 0.8rem; color: var(--gray-400); }

.feature-visual {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.feature-visual svg { width: 56px; height: 56px; color: var(--teal); opacity: 0.7; }

/* ===== PRICING PAGE ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 0 0 80px; }

.pricing-card {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow-glow);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.pricing-card .price { font-size: 2.8rem; font-weight: 800; margin: 20px 0; }
.pricing-card .price span { font-size: 1rem; font-weight: 400; color: var(--gray-400); }
.pricing-card .price-desc { font-size: 0.9rem; color: var(--gray-400); margin-bottom: 24px; }

.pricing-features { margin-bottom: 32px; }

.pricing-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray-300);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ===== BLOG PAGE ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 0 0 80px; }

.blog-card {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: rgba(59, 191, 160, 0.3);
  transform: translateY(-4px);
}

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-img svg { width: 48px; height: 48px; color: var(--teal); opacity: 0.5; }

.blog-card-body { padding: 24px; }

.blog-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(59, 191, 160, 0.1);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 12px;
}

.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card-body h3 a:hover { color: var(--teal); }
.blog-card-body p { font-size: 0.88rem; color: var(--gray-400); line-height: 1.6; margin-bottom: 16px; }

.blog-meta { font-size: 0.8rem; color: var(--gray-500); }

/* ===== SOLUTIONS PAGE ===== */
.solutions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 0 0 80px; }

.solution-card {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: var(--transition);
}

.solution-card:hover {
  border-color: rgba(59, 191, 160, 0.3);
  transform: translateY(-4px);
}

.solution-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(59, 191, 160, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.solution-icon svg { width: 28px; height: 28px; color: var(--teal); }
.solution-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.solution-card p { font-size: 0.9rem; color: var(--gray-400); line-height: 1.6; margin-bottom: 16px; }
.solution-card a { color: var(--teal); font-weight: 600; font-size: 0.9rem; }
.solution-card a:hover { color: var(--teal-light); }

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 60px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.comparison-table th { color: var(--gray-300); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.comparison-table td { color: var(--gray-400); }
.comparison-table td:first-child { color: var(--white); font-weight: 600; }
.comparison-table tr:hover td { background: rgba(59, 191, 160, 0.03); }

.check-icon { color: var(--teal); }
.cross-icon { color: var(--gray-500); }

/* ===== FOOTER ===== */
.footer {
  padding: 72px 0 32px;
  background: var(--navy-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-brand p { font-size: 0.9rem; color: var(--gray-400); margin: 16px 0; line-height: 1.6; }

.footer-email { color: var(--teal) !important; font-size: 0.9rem; }

.footer-social { display: flex; gap: 12px; margin-top: 16px; }

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover { background: var(--teal); }
.footer-social svg { width: 16px; height: 16px; }

.footer-column h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-column a { display: block; font-size: 0.88rem; color: var(--gray-400); padding: 8px 0; }
.footer-column a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--gray-400);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-compliance { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ===== FORM SUCCESS ===== */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.show { display: block; }
.form-success svg { width: 64px; height: 64px; color: var(--teal); margin: 0 auto 16px; }
.form-success h3 { font-size: 1.4rem; margin-bottom: 8px; }
.form-success p { color: var(--gray-300); }

/* ===== WIDER CONTAINER ===== */
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== PLATFORM GRID ===== */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.metrics-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.metrics-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric-icon-sm {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(59, 191, 160, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.metric-icon-sm svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

.metric-icon-sm.red {
  background: rgba(239, 68, 68, 0.1);
}

.metric-icon-sm.red svg {
  color: var(--red-accent);
}

.metric-icon-sm.blue {
  background: rgba(43, 125, 233, 0.1);
}

.metric-icon-sm.blue svg {
  color: var(--blue-accent);
}

/* ===== CLAIMS TICKER ===== */
.claims-ticker {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 20px;
}

.ticker-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 16px;
}

.ticker-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  padding: 8px 12px;
  background: var(--navy-700);
  border-radius: var(--radius-sm);
}

.ticker-badge {
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.ticker-badge.success {
  background: rgba(59, 191, 160, 0.15);
  color: var(--teal);
}

.ticker-badge.warning {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.ticker-time {
  margin-left: auto;
  color: var(--gray-500);
  font-size: 0.75rem;
  font-family: var(--font-mono);
  flex-shrink: 0;
}

/* ===== RCM DASHBOARD ===== */
.dashboard-wrapper {
  position: sticky;
  top: 100px;
}

.dashboard-card {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.dashboard-title svg {
  color: var(--teal);
}

.dashboard-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
}

/* Dashboard Chart */
.dashboard-chart-area {
  margin-bottom: 24px;
}

.chart-label {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: 16px;
  font-weight: 500;
}

.dashboard-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 140px;
}

.dash-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  justify-content: flex-end;
}

.dash-bar {
  width: 100%;
  background: linear-gradient(180deg, var(--teal), var(--teal-dark));
  border-radius: 4px 4px 0 0;
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
  min-height: 8px;
}

.dash-bar-group:hover .dash-bar,
.dash-bar-group.highlight .dash-bar {
  opacity: 1;
  transform: scaleY(1.02);
}

.dash-bar-group.highlight .dash-bar {
  box-shadow: 0 0 12px rgba(59, 191, 160, 0.3);
}

.dash-bar-group span {
  font-size: 0.7rem;
  color: var(--gray-500);
  font-weight: 500;
}

.dash-bar-group.highlight span {
  color: var(--teal);
  font-weight: 700;
}

/* Agent Status Row */
.dashboard-agents {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--navy-700);
  border-radius: var(--radius-sm);
}

.dash-agent {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-agent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: agentPulse 2s ease-in-out infinite;
}

.dash-agent-dot.sage, .dash-agent-dot.eligibility { background: var(--blue-accent); }
.dash-agent-dot.aria, .dash-agent-dot.auth { background: #7c3aed; }
.dash-agent-dot.pace, .dash-agent-dot.posting { background: var(--teal); }

@keyframes agentPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 currentColor; }
  50% { opacity: 0.7; box-shadow: 0 0 6px 2px currentColor; }
}

.dash-agent-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dash-agent-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}

.dash-agent-task {
  font-size: 0.72rem;
  color: var(--gray-400);
}

.dash-agent-status {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash-agent-status.active {
  background: rgba(59, 191, 160, 0.15);
  color: var(--teal);
}

/* Dashboard Bottom Stats */
.dashboard-bottom-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dash-bottom-stat {
  text-align: center;
  padding: 12px 8px;
  background: var(--navy-700);
  border-radius: var(--radius-sm);
}

.dash-stat-val {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal-light);
}

.dash-stat-lbl {
  display: block;
  font-size: 0.68rem;
  color: var(--gray-400);
  margin-top: 2px;
}

/* ===== AI AGENT WIDGET (legacy) ===== */
.agent-widget-wrapper {
  position: sticky;
  top: 100px;
}

.agent-widget {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(59, 191, 160, 0.1);
  color: #1a202c;
}

.agent-tabs {
  display: flex;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.agent-tab {
  flex: 1;
  padding: 14px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
  background: transparent;
  color: #94a3b8;
  font-family: var(--font-primary);
  transition: var(--transition);
  position: relative;
}

.agent-tab:hover {
  color: #475569;
  background: #f1f5f9;
}

.agent-tab.active {
  color: var(--teal-dark);
  background: #ffffff;
}

.agent-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
}

.agent-panel {
  display: none;
  padding: 24px;
}

.agent-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.agent-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 20px;
}

.agent-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

.agent-avatar.sage { background: var(--blue-accent); }
.agent-avatar.aria { background: #7c3aed; }
.agent-avatar.pace { background: var(--teal); }

.agent-meta h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2px;
}

.agent-meta p {
  font-size: 0.82rem;
  color: #94a3b8;
}

.agent-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  flex-shrink: 0;
}

.agent-status .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.agent-status.verifying {
  background: rgba(59, 191, 160, 0.1);
  color: var(--teal-dark);
}

.agent-status.verifying .status-dot { background: var(--teal); }

.agent-status.processing {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.agent-status.processing .status-dot { background: #7c3aed; }

.agent-status.success {
  background: rgba(43, 125, 233, 0.1);
  color: var(--blue-accent);
}

.agent-status.success .status-dot { background: var(--blue-accent); }

.agent-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.agent-action-btn {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: #475569;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-primary);
  transition: var(--transition);
}

.agent-action-btn:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: rgba(59, 191, 160, 0.04);
}

.agent-progress {
  margin-bottom: 20px;
}

.progress-bar {
  height: 6px;
  background: #f1f5f9;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 100px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-details {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #94a3b8;
}

.agent-log {
  background: #f8fafc;
  border-radius: var(--radius-sm);
  padding: 12px;
}

.log-item {
  padding: 6px 0;
  font-size: 0.8rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.log-item.active {
  color: #475569;
  font-weight: 500;
}

.log-time {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #cbd5e1;
  min-width: 36px;
}

/* ===== EHR CARDS NEW ===== */
.integrations-grid-new {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.ehr-card {
  background: var(--navy-700);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}

.ehr-card:hover {
  border-color: rgba(59, 191, 160, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.ehr-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 12px;
}

.ehr-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.ehr-type {
  font-size: 0.72rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ===== HERO SVG BACKGROUND ===== */
.hero {
  position: relative;
}

.hero-bg-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-svg svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60%;
}

/* ===== WORD-BY-WORD REVEAL ANIMATION ===== */
.reveal-text .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FADE-IN-UP ANIMATION ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUpAnim 0.8s ease forwards;
  animation-delay: var(--delay, 0.5s);
}

@keyframes fadeInUpAnim {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FLOATING STAT ANIMATIONS ===== */
.hero-stats {
  display: flex;
  gap: 24px;
  margin: 40px 0 32px;
  flex-wrap: wrap;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center;
  min-width: 130px;
}

.hero-stat-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1.2;
}

.hero-stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-300);
  margin-top: 4px;
  font-weight: 500;
}

.float-stat {
  animation: floatStat 3s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}

@keyframes floatStat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== SHINY BADGE BORDER SWEEP ===== */
.badge-shiny {
  position: relative;
  overflow: hidden;
}

.badge-shiny::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shinySweep 3s linear infinite;
}

@keyframes shinySweep {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ===== GLASSMORPHISM CARDS ===== */
.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(59, 191, 160, 0.3), transparent, rgba(43, 125, 233, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Shiny border sweep for featured cards */
.shiny-border {
  position: relative;
  overflow: hidden;
}

.shiny-border::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(59, 191, 160, 0.3) 60deg,
    transparent 120deg,
    transparent 360deg
  );
  animation: shinyBorderRotate 5s linear infinite;
  z-index: -1;
}

@keyframes shinyBorderRotate {
  to { transform: rotate(360deg); }
}

/* Apply glassmorphism to outcome cards */
.outcome-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.outcome-card:hover {
  border-color: rgba(59, 191, 160, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

/* Apply glassmorphism to agent cards */
.agent-card {
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.agent-card:hover {
  border-color: rgba(59, 191, 160, 0.3);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

/* ===== AUTO-SCROLLING LOGO TICKER ===== */
.logo-ticker-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-ticker {
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.scroll-left .ticker-track {
  animation: scrollLeft 45s linear infinite;
}

.scroll-right .ticker-track {
  animation: scrollRight 40s linear infinite;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.logo-ticker .ehr-card {
  flex-shrink: 0;
  min-width: 160px;
}

/* Pause ticker on hover */
.logo-ticker-wrapper:hover .ticker-track {
  animation-play-state: paused;
}

/* ===== SPACE MONO FOR STATS/NUMBERS ===== */
[data-count],
.outcome-metric,
.impact-number,
.hero-stat-number,
.ticker-time {
  font-family: var(--font-mono);
}

/* ===== FOOTER LEGAL LINKS ===== */
.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-legal a {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.footer-legal a:hover {
  color: var(--teal);
}

/* ===== CALCULATOR PAGE ===== */
.calculator-section {
  padding: 140px 0 80px;
}

.calculator-container {
  max-width: 900px;
  margin: 0 auto;
}

.calculator-card {
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.calc-form-group {
  margin-bottom: 28px;
}

.calc-form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}

.calc-form-group .helper {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.calc-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-mono);
  transition: var(--transition);
}

.calc-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(59, 191, 160, 0.15);
}

.calc-input::placeholder {
  color: var(--gray-500);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.calc-results {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.calc-result-card {
  background: var(--navy-800);
  border: 1px solid rgba(59, 191, 160, 0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.calc-result-value {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-light);
  margin-bottom: 8px;
}

.calc-result-label {
  font-size: 0.85rem;
  color: var(--gray-300);
}

.calc-highlight {
  background: linear-gradient(135deg, rgba(59, 191, 160, 0.15), rgba(43, 125, 233, 0.1));
  border-color: var(--teal);
}

.calc-highlight .calc-result-value {
  font-size: 2.5rem;
  color: var(--teal);
}

/* ===== DEMO PAGE ===== */
.demo-section {
  padding: 140px 0 80px;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.demo-info h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.demo-info h1 .gradient-text {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.demo-benefits {
  margin: 32px 0;
}

.demo-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.demo-benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(59, 191, 160, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.demo-benefit-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.demo-benefit h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.demo-benefit p {
  font-size: 0.9rem;
  color: var(--gray-300);
}

.demo-form-card {
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.demo-form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.demo-form-card p {
  font-size: 0.9rem;
  color: var(--gray-300);
  margin-bottom: 28px;
}

.demo-subtitle {
  font-size: 1.1rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 8px;
}

.demo-trust {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-trust-label {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 12px;
  font-weight: 500;
}

.demo-trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.demo-form-card h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--white);
}

.demo-form-card > p {
  font-size: 0.9rem;
  color: var(--gray-300);
  margin-bottom: 28px;
}

/* ===== RESOURCES PAGE ===== */
.resources-hero {
  padding: 140px 0 60px;
  text-align: center;
}

.resources-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.resources-hero .subtitle {
  font-size: 1.15rem;
  color: var(--gray-300);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Generic subtitle class */
.subtitle {
  font-size: 1.1rem;
  color: var(--gray-300);
  line-height: 1.7;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.resource-card {
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.resource-card:hover {
  border-color: rgba(59, 191, 160, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.resource-card-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.resource-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.resource-card-body {
  padding: 28px;
}

.resource-type {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 12px;
}

.resource-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.resource-card-body p {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 20px;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
}

.resource-link:hover {
  color: var(--teal-light);
  gap: 10px;
}

.resource-link svg {
  width: 16px;
  height: 16px;
}

/* ===== MISSING SUB-PAGE STYLES ===== */

/* Back link on specialty pages */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--teal);
  margin-bottom: 16px;
  font-weight: 500;
}
.back-link:hover { color: var(--teal-light); }

/* Feature list (features.html) */
.feature-list {
  list-style: none;
  margin-bottom: 24px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.5;
}
.feature-list li svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Feature stat value/label (features.html) */
.feature-stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal);
  font-family: var(--font-mono);
}
.feature-stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* Feature icon wrapper (features.html) */
.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon-wrapper svg {
  width: 100%;
  height: 100%;
  color: var(--teal);
  opacity: 0.7;
}

/* Solution benefits list (solutions.html) */
.solution-benefits {
  list-style: none;
  margin-top: 12px;
}
.solution-benefits li {
  position: relative;
  padding: 4px 0 4px 20px;
  font-size: 0.88rem;
  color: var(--gray-300);
  line-height: 1.5;
}
.solution-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

/* Pricing card sub-classes (pricing.html) */
.pricing-card-header { margin-bottom: 16px; }
.pricing-card-desc { font-size: 0.9rem; color: var(--gray-400); margin-top: 4px; }
.pricing-card-price { margin-bottom: 24px; }
.pricing-amount { font-size: 2.8rem; font-weight: 800; display: block; }
.pricing-period { font-size: 0.9rem; color: var(--gray-400); }
.pricing-cta { width: 100%; justify-content: center; }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 1;
}
/* Hide duplicate ::before when .pricing-badge div exists */
.pricing-card.featured .pricing-badge + .pricing-card-header ~ * { }
.pricing-card.featured:has(.pricing-badge)::before { display: none; }

/* About visual stat (about.html) */
.about-visual-stat { margin-top: 24px; }
.about-visual-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--teal);
  font-family: var(--font-mono);
  margin-bottom: 8px;
}
.about-visual-label {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* Comparison table wrapper (solutions.html - enables horizontal scroll on mobile) */
.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.comparison-table-wrapper .comparison-table { margin-bottom: 0; }

/* Comparison section (features.html) */
.comparison-section { padding: 80px 0; }

/* Hero badge on sub-pages */
.page-hero .hero-badge { margin-bottom: 16px; }

/* Alias for page-hero-subtitle (some pages use this class) */
.page-hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-300);
  max-width: 600px;
  line-height: 1.7;
}

/* Highlight column in comparison table */
.comparison-table th.highlight,
.comparison-table td.highlight {
  color: var(--teal-light);
  background: rgba(59, 191, 160, 0.04);
}

/* Nav right hide on mobile (show demo in mobile menu) */
@media (max-width: 768px) {
  .nav-right { display: none; }
}

/* ===== LEGAL PAGES (Privacy/Terms) ===== */
.legal-section {
  padding: 140px 0 80px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.legal-updated {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--teal-light);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--gray-200);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 0.95rem;
  color: var(--gray-200);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .agents-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .visibility-grid { grid-template-columns: 1fr; gap: 40px; }
  .integrations-grid { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .feature-block { grid-template-columns: 1fr; }
  .feature-block:nth-child(even) { direction: ltr; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .integrations-grid-new { grid-template-columns: repeat(4, 1fr); }
  .demo-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy-900);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
  }

  .nav-links.active { display: flex; }
  body.nav-open { overflow: hidden; }
  .nav-links a { font-size: 1.2rem; }
  .mobile-toggle { display: flex; z-index: 1001; }
  .compliance-badges { display: none; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .problem-stats { grid-template-columns: 1fr; }
  .problem-challenges { grid-template-columns: 1fr; }
  .agents-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .workflow-steps { grid-template-columns: 1fr; }
  .integrations-grid { grid-template-columns: repeat(3, 1fr); }
  .outcomes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: 1.8rem; }
  .resources-hero { padding: 120px 0 40px; }
  .resources-hero h1 { font-size: 1.8rem; }
  .calculator-section { padding: 120px 0 60px; }
  .demo-section { padding: 120px 0 60px; }
  .legal-section { padding: 120px 0 60px; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; font-size: 0.8rem; }
  .footer-compliance { justify-content: center; }
  .hero h1 { font-size: 2.2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .hero-stats { gap: 12px; }
  .hero-stat { min-width: 100px; padding: 12px 16px; }
  .hero-stat-number { font-size: 1.4rem; }
  .cta-box { padding: 48px 24px; }
  .testimonial-card { padding: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .feature-stats { flex-wrap: wrap; }
  .metrics-grid-2x2 { grid-template-columns: 1fr; }
  .integrations-grid-new { grid-template-columns: repeat(3, 1fr); }
  .agent-actions { flex-direction: column; }
  .resources-grid { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .calc-results-grid { grid-template-columns: 1fr; }
  .calculator-card { padding: 28px; }
  .scroll-left .ticker-track { animation-duration: 25s; }
  .scroll-right .ticker-track { animation-duration: 22s; }
}

@media (max-width: 480px) {
  .metrics-grid { grid-template-columns: 1fr; }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
  .footer-legal { justify-content: center; }
  .footer-compliance { justify-content: center; }
  .integrations-grid-new { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 100px 0 40px; }
  .page-hero h1 { font-size: 1.6rem; }
  .cta-box { padding: 36px 20px; }
  .cta-box h2 { font-size: 1.4rem; }
  .impact-grid { grid-template-columns: 1fr; }
  .calculator-card { padding: 20px; }
  .demo-form-card { padding: 24px; }
}
