/* ==========================================================================
   RIVENSTACK AI - Soft Ice-Blue / Powder Cyan Palette
   Matching the exact soft ice-blue color swatch provided by the user (#e6f5ff / #e0f2fe)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Modern US Telehealth & Startup Color Palette */
  --bg-primary: #FFFFFF; /* Pure White Main Background */
  --bg-section: #F8F9FA; /* Warm Off-White Section Background */
  --bg-surface: #ffffff;
  --bg-subtle: #e0f2f1;
  --bg-card: #ffffff;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  
  --brand-primary: #005F73; /* Modern Teal / Deep Sea Green */
  --brand-sky: #005F73;
  --brand-blue: #0a9396;
  --brand-teal-light: #e0f2f1;
  --brand-gradient: linear-gradient(135deg, #005F73 0%, #0a9396 100%);
  --brand-gradient-hover: linear-gradient(135deg, #0a9396 0%, #004b5c 100%);
  --brand-light: #e6f4f6;
  
  /* Action CTA Buttons (Soft Amber / Gold) */
  --btn-action: #EE9B00;
  --btn-action-hover: #d98d00;
  --btn-action-gradient: linear-gradient(135deg, #EE9B00 0%, #ca8200 100%);
  
  --accent-amber: #EE9B00;
  --accent-orange: #ca6702;
  --accent-green: #10b981;
  --accent-pink: #ec4899;
  
  --border-light: #e2e8f0;
  --border-focus: #0a9396;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px -2px rgba(0, 95, 115, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 40px -15px rgba(0, 95, 115, 0.15), 0 10px 20px -10px rgba(15, 23, 42, 0.08);
  --shadow-mockup: 0 25px 60px -15px rgba(0, 95, 115, 0.22);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-code: 'JetBrains Mono', monospace;
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* Announcement Top Bar */
.announcement-bar {
  background: linear-gradient(90deg, #ea580c 0%, #ca6702 100%);
  color: #ffffff;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 100;
  transition: transform 0.5s ease, opacity 0.5s ease, max-height 0.5s ease, padding 0.5s ease;
  max-height: 50px;
  overflow: hidden;
}

.announcement-bar.hide-bar {
  opacity: 0;
  transform: translateY(-100%);
  max-height: 0;
  padding: 0;
  margin: 0;
}

.announcement-bar a {
  text-decoration: underline;
  color: #ffffff;
  font-weight: 700;
}

.announcement-close {
  position: absolute;
  right: 16px;
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  opacity: 0.8;
  transition: var(--transition-fast);
}

.announcement-close:hover {
  opacity: 1;
}

/* Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 90;
  padding: 16px 0;
  transition: var(--transition-normal);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #0f172a;
  cursor: pointer;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--brand-gradient);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 10px rgba(14, 165, 233, 0.3);
}

.logo-icon::after {
  content: '';
  width: 14px;
  height: 14px;
  background: #ffffff;
  transform: rotate(45deg);
}

.brand-name {
  color: #0f172a;
  letter-spacing: -0.03em;
}

.brand-name span {
  color: var(--brand-sky);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

/* Nav Dropdown Styling */
.nav-item-dropdown {
  position: relative;
}

.nav-link-dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.nav-link-dropdown:hover {
  color: var(--brand-primary);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 10px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  border-radius: 10px;
  transition: var(--transition-fast);
  cursor: pointer;
}

.dropdown-item:hover {
  background: #e8f6ff;
  color: var(--brand-primary);
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-fast);
  cursor: pointer;
}

.nav-link:hover {
  color: var(--brand-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-secondary {
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid #cbd5e1;
  transition: var(--transition-fast);
}

.btn-secondary:hover {
  color: var(--brand-primary);
  background-color: var(--bg-subtle);
}

.btn-primary {
  padding: 12px 24px;
  background: var(--btn-action);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(238, 155, 0, 0.35);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(238, 155, 0, 0.5);
  background: var(--btn-action-hover);
}

/* Hero Section */
.hero-section {
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  background: var(--bg-primary);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #ffffff;
  border: 1px solid #7dd3fc;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0f172a;
  margin-bottom: 24px;
  line-height: 1.08;
}

.hero-title span {
  color: var(--brand-primary);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  font-weight: 500;
  line-height: 1.5;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

/* Main Dashboard Showcase Container */
.showcase-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.showcase-card {
  background: linear-gradient(180deg, #38bdf8 0%, #0284c7 100%);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow-mockup);
  position: relative;
  overflow: hidden;
}

.mockup-window {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 560px;
}

/* Mockup Header */
.mockup-header {
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.mockup-user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mockup-user-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup-user-role {
  font-size: 0.75rem;
  color: #64748b;
}

.mockup-site-selector {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Mockup Body Columns */
.mockup-body {
  display: grid;
  grid-template-columns: 240px 1fr 340px;
  flex: 1;
  background-color: #ffffff;
}

@media (max-width: 1024px) {
  .mockup-body {
    grid-template-columns: 1fr;
  }
}

/* Column 1: Queue Sidebar */
.mockup-sidebar {
  border-right: 1px solid #e2e8f0;
  padding: 16px;
  background: #fafafa;
  text-align: left;
}

.sidebar-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.queue-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 10px 12px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.queue-item:hover, .queue-item.active {
  border-color: var(--brand-blue);
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.15);
}

.queue-item.active {
  background: #e8f6ff;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  width: fit-content;
}

.status-badge.verified {
  background: #0ea5e9;
  color: #ffffff;
}

.status-badge.check {
  background: #fef08a;
  color: #854d0e;
}

.queue-patient-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: #1e293b;
}

.queue-meta {
  font-size: 0.75rem;
  color: #64748b;
  font-family: var(--font-code);
}

/* Column 2: Document View Canvas */
.document-canvas {
  padding: 24px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-y: auto;
}

.canvas-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid #e2e8f0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.doc-paper {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  position: relative;
  text-align: left;
}

.doc-header-box {
  display: inline-block;
  border: 2px solid #f97316;
  background: rgba(249, 115, 22, 0.05);
  padding: 4px 8px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 16px;
}

.doc-tag {
  position: absolute;
  top: -12px;
  left: 0;
  background: #f97316;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 2px;
}

.doc-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
}

.doc-highlight-pink {
  border: 2px solid #ec4899;
  background: rgba(236, 72, 153, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  position: relative;
  display: inline-block;
}

.doc-highlight-pink .doc-tag {
  background: #ec4899;
}

.doc-highlight-teal {
  border: 2px solid #14b8a6;
  background: rgba(20, 184, 166, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  position: relative;
  display: inline-block;
}

.doc-highlight-teal .doc-tag {
  background: #14b8a6;
}

.doc-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.doc-line {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  width: 100%;
}

.doc-line.short { width: 60%; }
.doc-line.medium { width: 80%; }

/* Column 3: AI Verification Panel */
.verification-panel {
  border-left: 1px solid #e2e8f0;
  padding: 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.panel-header {
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
}

.ai-status-banner {
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  color: #0284c7;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: #0f172a;
  background: #f8fafc;
  font-weight: 600;
  font-family: var(--font-code);
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.agent-meta-card {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 12px;
  font-size: 0.8rem;
  color: #166534;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.agent-badge-pill {
  background: #dcfce7;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.7rem;
}

/* Dedicated Product Page Showcase Section */
.product-showcase-section {
  padding: 100px 24px 80px;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

.product-showcase-container {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.product-header-badge {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-sky);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.product-main-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.avatar-badge-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0284c7;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.product-main-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 48px;
}

/* 4-Grid Feature Cards */
.product-4grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .product-4grid {
    grid-template-columns: 1fr;
  }
}

.product-card-item {
  background: var(--bg-primary);
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card-item:hover {
  background: #ffffff;
  border-color: var(--brand-sky);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.product-card-illustration {
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.product-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Product Trust Bar */
.product-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 32px 0;
  border-top: 1px solid #e2e8f0;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.trust-item-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #0f172a;
}

.trust-item-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 280px;
}

/* Dedicated ROI Pricing Section */
.pricing-section-container {
  padding: 80px 24px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
}

.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-badge {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-sky);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.pricing-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.pricing-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.pricing-cards-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card-box {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 24px;
  padding: 36px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.pricing-card-box:hover {
  border-color: var(--brand-sky);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card-box.popular {
  border: 2px solid var(--brand-sky);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.15);
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--brand-gradient);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.pricing-tier-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.pricing-tier-scope {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.pricing-tier-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 32px;
}

.pricing-tier-feature-list li {
  font-size: 0.9rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-tier-feature-list li::before {
  content: '✓';
  color: var(--brand-sky);
  font-weight: 800;
}

/* Feature Breakdown Section ("One Integrated Platform") */
.section-features {
  padding: 100px 24px;
  background: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #0f172a;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.features-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .features-layout {
    grid-template-columns: 1fr;
  }
}

.feature-tabs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-tab-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}

.feature-tab-card:hover, .feature-tab-card.active {
  background: #ffffff;
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-lg);
}

.feature-icon-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #0f172a;
}

.feature-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--brand-light);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.feature-agent-signature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.agent-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0284c7;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.agent-details {
  display: flex;
  flex-direction: column;
}

.agent-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: #0f172a;
}

.agent-role {
  font-size: 0.75rem;
  color: #64748b;
}

.feature-preview-display {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

/* Mission & Pitch Section */
.section-mission {
  padding: 100px 24px;
  background: var(--bg-primary);
  text-align: center;
}

.mission-card-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.mission-title {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 24px;
}

.mission-text {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
}

/* Partners & Social Proof */
.section-partners {
  padding: 60px 24px;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.partners-title {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 32px;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.partner-logo-item {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.partner-logo-item:hover {
  color: #334155;
}

/* Footer & Navigation Pages */
.site-footer {
  background-color: #0f172a;
  color: #f8fafc;
  padding: 80px 24px 40px;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
  text-align: left;
}

.footer-brand .brand-name {
  color: #ffffff;
}

.footer-tagline {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.footer-col-title {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  cursor: pointer;
}

.footer-link:hover {
  color: #38bdf8;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #64748b;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 16px;
}

/* Dynamic Sub-Page Viewer Modal */
.page-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.page-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.page-modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 800px;
  max-height: 85vh;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
  from {
    transform: translateY(20px) scale(0.96);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.modal-header {
  padding: 20px 28px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
}

.modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #475569;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: #cbd5e1;
  color: #0f172a;
}

.modal-body {
  padding: 28px;
  overflow-y: auto;
  line-height: 1.7;
  color: #334155;
  text-align: left;
}

.modal-body h3 {
  margin: 20px 0 10px;
  color: #0f172a;
}

.modal-body p {
  margin-bottom: 14px;
}

.modal-body ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.modal-body li {
  margin-bottom: 6px;
}

/* ==========================================================================
   VOICE AI RECEPTIONIST (VERONICA) WORKFLOW STYLES
   ========================================================================== */

.voice-badge {
  display: inline-block;
  padding: 4px 14px;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 99px;
  margin-bottom: 14px;
}

.avatar-veronica-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fde047 0%, #f97316 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.25);
  border: 2px solid #ffffff;
}

/* Voice Call Preview Box */
.voice-showcase-box {
  max-width: 900px;
  margin: 0 auto 50px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.voice-chat-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.chat-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.chat-row.user {
  justify-content: flex-end;
}

.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.chat-avatar.veronica {
  background: #e0f2fe;
  color: #0284c7;
  border: 1px solid #bae6fd;
}

.chat-avatar.user-icon {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #cbd5e1;
}

.chat-bubble {
  padding: 14px 20px;
  border-radius: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 80%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.chat-bubble.veronica-bubble {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  border-top-left-radius: 4px;
}

.chat-bubble.user-bubble {
  background: #0284c7;
  color: #ffffff;
  border-top-right-radius: 4px;
  font-weight: 500;
}

.audio-visualizer-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  padding: 8px 20px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 99px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.wave-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 16px;
}

.wave-bar {
  width: 3px;
  background: #0284c7;
  border-radius: 3px;
  animation: soundWave 1.2s ease-in-out infinite alternate;
}

.wave-bar:nth-child(1) { height: 6px; animation-delay: 0.1s; }
.wave-bar:nth-child(2) { height: 14px; animation-delay: 0.3s; }
.wave-bar:nth-child(3) { height: 10px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 16px; animation-delay: 0.4s; }
.wave-bar:nth-child(5) { height: 8px; animation-delay: 0.15s; }

@keyframes soundWave {
  0% { transform: scaleY(0.4); }
  100% { transform: scaleY(1.2); }
}

.audio-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: #475569;
}

/* Feature Grid 3-Cards for Voice */
.voice-grid-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.voice-grid-3 .full-width-card {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .voice-grid-3 {
    grid-template-columns: 1fr;
  }
  .voice-grid-3 .full-width-card {
    grid-column: span 1;
  }
}

.voice-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.voice-card:hover {
  border-color: var(--brand-sky);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.voice-card-visual {
  width: 100%;
  min-height: 140px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Card 1 Visual: Call Logs */
.mini-call-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px 14px;
  width: 100%;
  max-width: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.mini-call-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-call-name {
  font-weight: 700;
  font-size: 0.82rem;
  color: #0f172a;
}

.mini-call-status {
  font-size: 0.72rem;
  color: #64748b;
}

.phone-icon-green {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* Card 2 Visual: Appointments */
.mini-appt-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px 14px;
  width: 100%;
  max-width: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.mini-appt-time {
  font-family: var(--font-code);
  font-size: 0.75rem;
  color: #0284c7;
  background: #e0f2fe;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
}

/* Card 3 Visual: Shield & Compliance Tags */
.shield-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-center-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #bae6fd;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 2;
}

.shield-node-tag {
  position: absolute;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #334155;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.shield-node-tag.top-left { top: 10px; left: 20px; }
.shield-node-tag.top-right { top: 10px; right: 20px; }
.shield-node-tag.bottom-left { bottom: 10px; left: 20px; }
.shield-node-tag.bottom-right { bottom: 10px; right: 20px; }

/* Compliance Bar Box */
.compliance-box-card {
  background: var(--bg-primary);
  border: 1px solid #bae6fd;
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}

@media (max-width: 640px) {
  .compliance-box-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   SCROLLING CLINIC LOGO MARQUEE & DEMO BANNER STYLES
   ========================================================================== */

.logo-marquee-section {
  padding: 36px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.marquee-container {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-around;
  gap: 36px;
  min-width: 100%;
  animation: scrollMarquee 28s linear infinite;
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.clinic-logo-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #1e293b;
  white-space: nowrap;
  background: #ffffff;
  padding: 10px 22px;
  border-radius: 99px;
  border: 1px solid #cbd5e1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.clinic-logo-badge .icon-box {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  background: #e0f2fe;
  color: #0284c7;
}

/* Vibrant Blue 30-Minute Live Demo Banner */
.section-demo-banner {
  padding: 60px 24px;
  background: #ffffff;
}

.demo-banner-card {
  max-width: 1040px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  border-radius: 28px;
  padding: 56px 36px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 20px 45px -10px rgba(14, 165, 233, 0.35);
  position: relative;
  overflow: hidden;
}

.demo-banner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.demo-banner-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .demo-banner-title {
    font-size: 2rem;
  }
}

.demo-banner-sub {
  font-size: 1.15rem;
  color: #e0f2fe;
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.btn-banner-action {
  background: #ffffff;
  color: #0f172a;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 40px;
  border-radius: 99px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border: none;
}

.btn-banner-action:hover {
  transform: translateY(-2px);
  background: #f8fafc;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

.solutions-hero {
  padding: 80px 24px 60px;
  text-align: center;
  background: var(--bg-primary);
}

.solutions-badge {
  display: inline-block;
  padding: 6px 18px;
  background: #ffffff;
  border: 1px solid #7dd3fc;
  color: #0284c7;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 99px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.solutions-grid-4 {
  max-width: 1140px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 860px) {
  .solutions-grid-4 {
    grid-template-columns: 1fr;
  }
}

.solution-item-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 24px;
  padding: 36px 32px;
  text-align: left;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.solution-item-card:hover {
  border-color: var(--brand-sky);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.solution-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.solution-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
}

.solution-tag-pill {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #f1f5f9;
  color: #475569;
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid #cbd5e1;
}

.solution-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.solution-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
}

.solution-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.solution-checklist li {
  font-size: 0.88rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.solution-checklist li::before {
  content: '✓';
  color: #0284c7;
  font-weight: 800;
}

.solution-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.solution-agent-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
}

/* Comparison Section */
.solutions-comparison-box {
  max-width: 1040px;
  margin: 0 auto 80px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 40px 32px;
  text-align: center;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

.comparison-card {
  padding: 28px;
  border-radius: 20px;
  text-align: left;
}

.comparison-card.before {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.comparison-card.after {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.comparison-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.comparison-card.before .comparison-list li::before {
  content: '✕';
  color: #dc2626;
  font-weight: 800;
  margin-right: 8px;
}

.comparison-card.after .comparison-list li::before {
  content: '✓';
  color: #16a34a;
  font-weight: 800;
  margin-right: 8px;
}

/* ==========================================================================
   DEVELOPER DOCUMENTATION (DOCS) PAGE STYLES
   ========================================================================== */

.docs-hero {
  padding: 70px 24px 50px;
  text-align: center;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
}

.docs-search-box {
  max-width: 580px;
  margin: 28px auto 0;
  position: relative;
}

.docs-search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 1px solid #cbd5e1;
  border-radius: 99px;
  font-size: 1rem;
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  font-family: inherit;
}

.docs-search-input:focus {
  outline: none;
  border-color: var(--brand-sky);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.docs-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: #64748b;
  pointer-events: none;
}

/* Docs Main Layout */
.docs-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 50px 24px 80px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  text-align: left;
}

@media (max-width: 900px) {
  .docs-container {
    grid-template-columns: 1fr;
  }
}

/* Left Sidebar Navigation */
.docs-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.docs-menu-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.docs-menu-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  padding: 0 8px;
  margin-bottom: 4px;
}

.docs-menu-item {
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  border-radius: 8px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.docs-menu-item:hover, .docs-menu-item.active {
  background: #e0f2fe;
  color: #0284c7;
}

/* Documentation Content Area */
.docs-content-area {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.docs-section-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.docs-section-card h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.docs-section-card p {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.endpoint-badge {
  display: inline-block;
  font-family: var(--font-code);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  margin-right: 8px;
}

.endpoint-badge.post { background: #dcfce7; color: #15803d; }
.endpoint-badge.get { background: #e0f2fe; color: #0369a1; }
.endpoint-badge.put { background: #fef3c7; color: #b45309; }

.code-block-wrapper {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 14px;
  padding: 20px;
  color: #38bdf8;
  font-family: var(--font-code);
  font-size: 0.85rem;
  overflow-x: auto;
  margin: 16px 0 24px;
}

.code-header-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #334155;
  padding-bottom: 10px;
  margin-bottom: 12px;
  color: #94a3b8;
  font-size: 0.78rem;
}

.tab-pill-group {
  display: flex;
  gap: 8px;
}

.tab-pill {
  padding: 2px 10px;
  border-radius: 4px;
  background: #1e293b;
  color: #94a3b8;
  cursor: pointer;
  font-weight: 600;
}

.tab-pill.active {
  background: #0284c7;
  color: #ffffff;
}

/* ==========================================================================
   ABOUT US, CONTACT US & LEGAL PRIVACY PAGE STYLES
   ========================================================================== */

/* About Hero & Stat Cards */
.about-stats-grid {
  max-width: 1100px;
  margin: 40px auto 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card-item {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0284c7;
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #475569;
}

/* Team Photo Showcase Banner */
.team-photo-showcase {
  max-width: 440px;
  margin: 0 auto 28px;
  padding: 0 16px;
}

.team-photo-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
  border: 1px solid #cbd5e1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-photo-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.15);
  border-color: #0284c7;
}

.team-photo-wrapper img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.team-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.85) 100%);
  padding: 16px 14px 10px;
  color: #ffffff;
  text-align: left;
}

.team-photo-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #0284c7;
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 4px;
}

.team-photo-caption {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f8fafc;
}

/* About Team Grid */
.team-grid-4 {
  max-width: 1140px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .team-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team-card-item {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card-item:hover {
  border-color: var(--brand-sky);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-card-item.founder-card {
  border: 2px solid #0284c7;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  box-shadow: 0 10px 25px -5px rgba(2, 132, 199, 0.15);
}

.founder-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
}

.team-avatar-img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.25);
}

/* Small, compact photo styling for Founder */
img.team-avatar-photo,
.team-avatar-photo {
  width: 90px !important;
  height: 90px !important;
  max-width: 90px !important;
  max-height: 90px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: top center !important;
  border: 3px solid #0284c7 !important;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.3) !important;
  margin: 0 auto 14px auto !important;
  display: block !important;
  flex-shrink: 0 !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card-item:hover .team-avatar-photo {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
}

.team-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.82rem;
  color: #0284c7;
  font-weight: 700;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

.team-social-links {
  margin-top: auto;
  display: flex;
  justify-content: center;
  width: 100%;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0a66c2;
  background: #f0f7ff;
  padding: 7px 16px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid #bae6fd;
  transition: all 0.2s ease;
}

.linkedin-link:hover {
  background: #0a66c2;
  color: #ffffff;
  border-color: #0a66c2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.35);
}

.linkedin-link svg {
  transition: fill 0.2s ease;
}

.linkedin-link:hover svg {
  fill: #ffffff;
}

/* Contact Us Layout */
.contact-layout-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  text-align: left;
}

@media (max-width: 860px) {
  .contact-layout-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card-box {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: #334155;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Legal & Privacy Document Container */
.legal-container-box {
  max-width: 920px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  text-align: left;
}

.legal-article-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 24px;
  padding: 44px;
  box-shadow: var(--shadow-sm);
  line-height: 1.7;
  color: #334155;
}

.legal-article-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin: 28px 0 12px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 8px;
}

.legal-article-card h2:first-child {
  margin-top: 0;
}

.legal-article-card p {
  margin-bottom: 16px;
  font-size: 0.98rem;
}

.legal-article-card ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

/* ==========================================================================
   LIGHT ICE-BLUE ENTERPRISE COMMAND CENTER SHOWCASE (INDEX HERO)
   ========================================================================== */

.command-center-window {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #cce3e8;
  box-shadow: 0 20px 45px -10px rgba(0, 95, 115, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #0f172a;
  min-height: 520px;
}

.command-header-bar {
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.command-tabs {
  display: flex;
  gap: 8px;
  background: #ffffff;
  padding: 4px;
  border-radius: 99px;
  border: 1px solid #cbd5e1;
}

.command-tab-pill {
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.command-tab-pill.active, .command-tab-pill:hover {
  background: #005F73;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 95, 115, 0.25);
}

.command-body-grid {
  display: grid;
  grid-template-columns: 280px 1fr 320px;
  flex: 1;
  background: #ffffff;
}

@media (max-width: 1080px) {
  .command-body-grid {
    grid-template-columns: 1fr;
  }
}

/* Col 1: Queue Stream */
.command-stream-col {
  border-right: 1px solid #f1f5f9;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  background: #fafafa;
}

.command-stream-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  transition: all 0.2s ease;
}

.command-stream-card.active {
  border-color: #005F73;
  background: #e0f2f1;
  box-shadow: 0 4px 12px rgba(0, 95, 115, 0.12);
}

/* Col 2: Light Step Canvas */
.command-graph-mesh {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-right: 1px solid #f1f5f9;
}

.step-node-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 580px;
}

.step-node-box {
  background: #ffffff;
  border: 2px solid #0a9396;
  border-radius: 20px;
  padding: 18px 14px;
  text-align: center;
  min-width: 130px;
  box-shadow: 0 4px 16px rgba(0, 95, 115, 0.08);
}

.step-node-box.center-brain {
  border-color: #005F73;
  background: #e6f4f6;
  box-shadow: 0 6px 20px rgba(0, 95, 115, 0.15);
}

.step-node-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e0f2f1;
  color: #005F73;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 10px;
}

.step-node-title {
  font-weight: 800;
  font-size: 0.85rem;
  color: #0f172a;
}

.step-node-sub {
  font-size: 0.72rem;
  color: #005F73;
  font-weight: 700;
  margin-top: 2px;
}

.step-connector-arrow {
  height: 3px;
  flex: 1;
  background: linear-gradient(90deg, #0a9396 0%, #005F73 100%);
  border-radius: 99px;
  position: relative;
}

/* Col 3: Telemetry */
.command-telemetry-col {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  background: #ffffff;
}

.command-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 0.84rem;
}

.command-val {
  font-family: var(--font-code);
  font-weight: 800;
  color: #005F73;
}






