
:root {
  --blue-sky: #38bdf8;
  --blue-main: #2563eb;
  --blue-deep: #1e3a8a;
  --indigo-soft: #e0e7ff;
  --bg-page: #f3f4f6;
  --bg-hero: radial-gradient(circle at top left, #1d4ed8 0, #0b1120 40%, #020617 100%);
  --bg-surface: #0b1220;
  --bg-soft: #f9fafb;
  --text-main: #0f172a;
  --text-light: #e5e7eb;
  --text-muted: #6b7280;
  --border-subtle: #1e293b;
  --border-soft: #e5e7eb;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-soft: 0 20px 60px rgba(15, 23, 42, 0.45);
  --shadow-card: 0 18px 45px rgba(15, 23, 42, 0.18);
  --transition-fast: 0.18s ease-out;
  --transition-med: 0.25s ease-out;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  background: var(--bg-page);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(226, 232, 240, 0.98);
  backdrop-filter: blur(18px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.1rem;
  gap: 1.5rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  height: 30px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-line-main {
  font-weight: 650;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: #0f172a;
}

.brand-line-main span {
  color: var(--blue-main);
}

.brand-tagline {
  font-size: 0.7rem;
  color: #6b7280;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
}

.nav-link {
  font-size: 0.88rem;
  color: #6b7280;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-link:hover {
  background: rgba(229, 231, 235, 0.9);
  color: #111827;
}

.nav-link.active {
  background: #e0edff;
  color: var(--blue-main);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.86rem;
  padding: 0.42rem 1.1rem;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition-fast), border-color var(--transition-fast),
    transform var(--transition-fast), box-shadow var(--transition-fast),
    color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(37, 99, 235, 0.6);
}

.btn-outline {
  border-color: #d1d5db;
  color: #111827;
  background: #ffffff;
}

.btn-outline:hover {
  border-color: var(--blue-main);
  background: #eef2ff;
}

.btn-ghost {
  border-color: transparent;
  background: transparent;
  color: #111827;
}

.btn-ghost:hover {
  background: rgba(229, 231, 235, 0.9);
}

.btn-full {
  width: 100%;
}

/* Hero */

.hero-shell {
  background: var(--bg-hero);
  color: var(--text-light);
  padding: 2.4rem 0 2.0rem;
}

.hero {
  padding-top: 0.6rem;
}

.hero-inner {
  display: grid;
  gap: 3.1rem;
}

@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.9fr);
    align-items: center;
  }
}

.badge {
  display: inline-flex;
  padding: 0.26rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent),
    rgba(15, 23, 42, 0.85);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #cbd5f5;
}

.hero-title {
  font-size: clamp(2.2rem, 3.2vw, 3.0rem);
  line-height: 1.04;
  margin: 0.9rem 0 0.7rem;
}

.hero-title span {
  background: linear-gradient(135deg, #38bdf8, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  max-width: 34rem;
  color: #cbd5f5;
}

.hero-actions {
  margin: 1.6rem 0 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions .btn-outline {
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.6);
  background: transparent;
}

.hero-actions .btn-outline:hover {
  background: rgba(15, 23, 42, 0.85);
  border-color: #38bdf8;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: #a5b4fc;
}

.pill {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.2rem 0.7rem;
  background: rgba(15, 23, 42, 0.8);
}

.pill-soft {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(37, 99, 235, 0.4));
}

/* Hero visual */

.hero-visual {
  position: relative;
}

.phone {
  max-width: 270px;
  margin: 0 auto;
  border-radius: 30px;
  padding: 0.9rem;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(30, 64, 175, 0.9));
  box-shadow: var(--shadow-soft);
  animation: float 3.6s ease-in-out infinite;
}

.phone-frame {
  border-radius: 22px;
  background: radial-gradient(circle at top, #0b1120, #020617);
  padding: 1rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(30, 64, 175, 0.8);
}

.phone-header {
  display: flex;
  gap: 4px;
  margin-bottom: 0.55rem;
}

.phone-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.65);
}

.phone-card {
  border-radius: 18px;
  border: 1px solid rgba(51, 65, 85, 0.9);
  padding: 1rem;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 1));
}

.phone-title {
  font-size: 0.78rem;
  color: #c7d2fe;
}

.phone-amount {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 0.4rem;
}

.phone-label {
  font-size: 0.82rem;
  color: #9ca3af;
  margin-bottom: 0.8rem;
}

.phone-btn {
  width: 100%;
  border-radius: 999px;
  border: none;
  padding: 0.55rem 0.8rem;
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
  cursor: pointer;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #ffffff;
  font-weight: 600;
}

.phone-btn.secondary {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.8);
  color: #e5e7eb;
}

.phone-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.6rem;
}

.phone-pills span {
  font-size: 0.7rem;
  border-radius: 999px;
  padding: 0.16rem 0.55rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.hero-note-card {
  position: absolute;
  right: -0.4rem;
  bottom: -1.4rem;
  width: min(260px, 72vw);
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 0.95rem 1.05rem;
  font-size: 0.8rem;
  box-shadow: var(--shadow-card);
  opacity: 1;
}

.hero-note-card h3 {
  margin-bottom: 0.18rem;
  font-size: 0.9rem;
}

.hero-note-card p {
  color: #4b5563;
  margin-bottom: 0.4rem;
}

.hero-note-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.hero-note-card li {
  margin-bottom: 0.18rem;
  position: relative;
  padding-left: 0.85rem;
  color: #4b5563;
}

.hero-note-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--blue-main);
}

/* Benefits row */

.benefits-row {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1.2rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
  text-align: center;
}

.benefit-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  background: #f9fafb;
  border: 1px solid #e2e8f0;
  padding: 0.7rem 1rem;
  border-radius: 999px;
}

/* Sections */

.main-shell {
  background: #e5e7eb;
}

.section {
  padding: 3.3rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #eef2ff 0, #ffffff 55%);
}


.section-header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.section-kicker {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.section-title {
  font-size: 1.6rem;
}

.section-title.small {
  font-size: 1.3rem;
}

.section-subtitle {
  font-size: 0.94rem;
  color: var(--text-muted);
  max-width: 32rem;
}

/* Grids / cards */

.cards-grid {
  display: grid;
  gap: 1.4rem;
}

.cards-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: linear-gradient(to bottom, #ffffff, #f9fafb);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  opacity: 0.8;
}


.card h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card-hover {
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med),
    border-color var(--transition-med), background var(--transition-med);
  text-decoration: none;
  color: inherit;
}

.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.14);
  border-color: #bfdbfe;
  background: #f9fbff;
}

/* Split layout */

.split {
  display: grid;
  gap: 2.4rem;
}

.split-center {
  align-items: center;
}

@media (min-width: 880px) {
  .split {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

/* Lists */

.ul-check {
  list-style: none;
  margin-top: 0.6rem;
  padding-left: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.ul-check li {
  margin-bottom: 0.35rem;
  position: relative;
  padding-left: 1.1rem;
}

.ul-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.76rem;
  color: var(--blue-main);
}

.number-list {
  margin-top: 0.6rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Page hero (inner pages) */

.page-hero-shell {
  background: linear-gradient(to bottom, #ffffff, #eef2ff);
  border-bottom: 1px solid #e5e7eb;
}

.page-hero {
  padding: 2.8rem 0 2.3rem;
}

.page-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.page-title {
  font-size: 1.9rem;
}

.page-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 36rem;
}

/* Module grid (solutions) */

.module-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 880px) {
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.module-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: #ffffff;
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-card);
}

/* Simple timeline (integration) */

.timeline {
  display: grid;
  gap: 1rem;
  margin-top: 0.6rem;
}

.timeline-item {
  border-radius: var(--radius-lg);
  border: 1px dashed #d1d5db;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: #ffffff;
}

/* Special cards */

.compliance-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.9rem;
  align-items: center;
}

.compliance-logos div {
  height: 30px;
  min-width: 80px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  background: #ffffff;
}

/* Footer */

.site-footer {
  border-top: 1px solid #e5e7eb;
  padding: 2.3rem 0 1.2rem;
  background: #ffffff;
}

.footer-grid {
  display: grid;
  gap: 1.7rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1.1fr;
  }
}

.footer-heading {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-col p {
  margin: 0.2rem 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--blue-main);
}

.footer-social {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.65rem;
}

.footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: background var(--transition-fast), border-color var(--transition-fast),
    color var(--transition-fast), transform var(--transition-fast);
}

.footer-social a:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
  transform: translateY(-1px);
}

.footer-bottom {
  margin-top: 1.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Animations */

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

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

.reveal {
  opacity: 1;
}


.reveal-delay-1 {
  animation-delay: 0.2s;
}

/* Responsive tweaks */

@media (max-width: 720px) {
  .navbar {
    flex-wrap: wrap;
  }

  nav ul {
    justify-content: flex-end;
  }

  .hero-note-card {
    position: static;
    margin-top: 1.2rem;
  }
}


/* Pricing / plans */
.pricing-grid {
  display: grid;
  gap: 1.4rem;
}
@media (min-width: 880px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.pricing-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  background: linear-gradient(to bottom right, #ffffff, #eef2ff);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-card);
}
.pricing-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.pricing-tagline {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}
.pricing-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  font-size: 0.72rem;
  background: #ecfeff;
  border: 1px solid #bae6fd;
  color: #0369a1;
  margin-bottom: 0.6rem;
}

/* Vertical segments */
.verticals-grid {
  display: grid;
  gap: 1.3rem;
}
@media (min-width: 880px) {
  .verticals-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.vertical-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: #ffffff;
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-card);
  font-size: 0.9rem;
}

/* Simple mock UI cards */
.mock-grid {
  display: grid;
  gap: 1.2rem;
}
@media (min-width: 880px) {
  .mock-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.mock-card {
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 0.9rem 1rem;
  font-size: 0.84rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.mock-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.mock-bubble {
  margin-top: 0.45rem;
  border-radius: 14px;
  padding: 0.55rem 0.7rem;
  background: #f3f4ff;
  font-size: 0.8rem;
}

/* Theme toggle */
.theme-toggle {
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 0.25rem 0.7rem;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #f9fafb;
  cursor: pointer;
}
.theme-toggle span {
  font-size: 0.78rem;
}
.theme-toggle i {
  font-size: 0.8rem;
}

/* Light mode overrides */









/* Solutions dropdown */
.nav-item-has-children {
  position: relative;
}
.nav-item-has-children .nav-trigger {
  border: none;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}
.nav-dropdown {
  position: absolute;
  top: 2.2rem;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  padding: 0.5rem 0;
  display: none;
  z-index: 40;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.88rem;
  color: #0f172a;
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown a i.nav-dropdown-icon {
  font-size: 0.9rem;
  opacity: 0.8;
}

.nav-dropdown a span {
  flex: 1;
}

.nav-dropdown a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
}

.nav-item-has-children.open .nav-dropdown {
  display: block;
}

/* Module ribbons */
.module-card {
  position: relative;
}
.module-ribbon {
  position: absolute;
  top: 0.6rem;
  right: 0.7rem;
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ribbon-clinic {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.ribbon-hospital {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}
.ribbon-oncology {
  background: #fdf2ff;
  color: #86198f;
  border: 1px solid #f9a8d4;
}

/* Page banners */
.module-banner {
  margin-top: 0.75rem;
  border-radius: 0.75rem;
  padding: 0.45rem 0.7rem;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(15, 23, 42, 0.7);
  color: #e5e7eb;
}
.module-banner i {
  font-size: 0.78rem;
}



/* Audience strip */
.audience-strip {
  padding-top: 1.5rem;
  padding-bottom: 1.8rem;
}
.audience-grid {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 880px) {
  .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.audience-card {
  border-radius: 1.1rem;
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.07), #020617);
  padding: 0.95rem 1.05rem;
  text-decoration: none;
  color: #e5e7eb;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.6);
  display: block;
}

.audience-card h3 {
  font-size: 0.98rem;
  margin: 0.25rem 0 0.35rem;
}
.audience-card p {
  font-size: 0.86rem;
  margin: 0;
}
.audience-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.75);
}
.audience-label {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.1rem 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
}




.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.5rem 1.05rem;
  text-decoration: none;
  gap: 0.35rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.55);
}
.btn-secondary i {
  font-size: 0.78rem;
}
.btn-secondary:hover {
  border-color: #f9fafb;
  background: #020617;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.8);
}





/* Module-specific hero color coding */
.previsit-page .page-hero {
  background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(6,95,70,0.4));
}
.postvisit-page .page-hero {
  background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(30,58,138,0.4));
}
.recovery-page .page-hero {
  background: linear-gradient(135deg, rgba(30,41,59,0.15), rgba(15,23,42,0.55));
}
.oncopay-page .page-hero {
  background: linear-gradient(135deg, rgba(192,38,211,0.12), rgba(109,40,217,0.4));
}


/* Subtle module accent borders */
.previsit-page .page-hero-inner {
  border-top: 3px solid rgba(16,185,129,0.45);
}
.postvisit-page .page-hero-inner {
  border-top: 3px solid rgba(59,130,246,0.45);
}
.recovery-page .page-hero-inner {
  border-top: 3px solid rgba(30,41,59,0.55);
}
.oncopay-page .page-hero-inner {
  border-top: 3px solid rgba(192,38,211,0.45);
}

/* Underline accent for section titles */
.previsit-page .section-title.small {
  border-bottom: 2px solid rgba(16,185,129,0.5);
  padding-bottom: 0.25rem;
}
.postvisit-page .section-title.small {
  border-bottom: 2px solid rgba(59,130,246,0.5);
  padding-bottom: 0.25rem;
}
.recovery-page .section-title.small {
  border-bottom: 2px solid rgba(30,41,59,0.6);
  padding-bottom: 0.25rem;
}
.oncopay-page .section-title.small {
  border-bottom: 2px solid rgba(192,38,211,0.5);
  padding-bottom: 0.25rem;
}


.table-scroll {
  width: 100%;
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.compare-table th,
.compare-table td {
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid var(--border-soft);
  text-align: left;
}
.compare-table thead th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
}


.reveal-on-scroll {
  opacity: 1;
  transform: none;
}
.reveal-on-scroll.reveal {
  opacity: 1;
  transform: none;
}


/* Enhanced compare table visuals */
.compare-table th:nth-child(2) {
  color: #22c55e;
}
.compare-table td:nth-child(2) {
  font-weight: 500;
}
.compare-table td:nth-child(2),
.compare-table td:nth-child(3),
.compare-table td:nth-child(4),
.compare-table td:nth-child(5) {
  white-space: nowrap;
}

.compare-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 500;
}

.compare-yes {
  background: rgba(22, 163, 74, 0.12);
  color: #16a34a;
}
.compare-maybe {
  background: rgba(234, 179, 8, 0.12);
  color: #eab308;
}
.compare-neutral {
  background: rgba(148, 163, 184, 0.14);
  color: #6b7280;
}
.compare-pill i {
  font-size: 0.72rem;
}

.compare-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}


/* Industry-specific banner accents */
.industry-banner {
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.industry-banner i {
  font-size: 0.85rem;
}

.industry-banner-onc {
  background: rgba(192, 38, 211, 0.08);
  color: #a21caf;
}

.industry-banner-imaging {
  background: rgba(59, 130, 246, 0.08);
  color: #1d4ed8;
}

.industry-banner-dental {
  background: rgba(20, 184, 166, 0.08);
  color: #0f766e;
}

.industry-banner-pharmacy {
  background: rgba(34, 197, 94, 0.08);
  color: #15803d;
}


.industry-banner-asc {
  background: rgba(249, 115, 22, 0.08);
  color: #c2410c;
}


.industry-banner-infusion {
  background: rgba(147, 51, 234, 0.08);
  color: #6d28d9;
}


.industry-banner-primary {
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
}


@media (max-width: 720px) {
  .navbar {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav-left {
    flex: 1 1 100%;
    justify-content: space-between;
  }

  nav {
    width: 100%;
  }

  nav ul {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 0.35rem;
  }

  .page-hero {
    padding: 2.1rem 0 1.8rem;
  }

  .page-hero-inner {
    gap: 1.1rem;
  }

  .page-title {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .section {
    padding: 2rem 0 2.2rem;
  }

  .cards-grid-3,
  .cards-grid-4 {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.4rem;
  }
}



/* Navi AI demo section */
.navi-demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.navi-demo-copy .section-title {
  margin-bottom: 0.5rem;
}

.navi-demo-copy .bullet-list {
  margin-top: 0.9rem;
}

.navi-chat-card {
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), rgba(15, 23, 42, 0.96));
  border-radius: 1.5rem;
  padding: 1.3rem 1.2rem 1.1rem;
  color: #e5e7eb;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.navi-chat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navi-chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #22c55e, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.navi-chat-avatar-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #bbf7d0;
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.75);
}

.navi-chat-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.navi-chat-subtitle {
  font-size: 0.8rem;
  opacity: 0.8;
}

.navi-chat-window {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 1rem;
  padding: 0.75rem 0.7rem;
  max-height: 260px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.82rem;
}

.navi-bubble {
  border-radius: 0.8rem;
  padding: 0.5rem 0.7rem;
  max-width: 100%;
  line-height: 1.35;
}

.navi-bubble-ai {
  align-self: flex-start;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(129, 140, 248, 0.35);
}

.navi-bubble-user {
  align-self: flex-end;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.55);
}

.navi-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.navi-quick-actions .chip {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  font-size: 0.75rem;
  padding: 0.32rem 0.7rem;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.08s ease;
}

.navi-quick-actions .chip:hover {
  background: rgba(37, 99, 235, 0.3);
  border-color: rgba(96, 165, 250, 0.9);
  transform: translateY(-1px);
}

.navi-chat-input-row {
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

#naviChatInput {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.92);
  color: #e5e7eb;
  font-size: 0.8rem;
  padding: 0.4rem 0.75rem;
  outline: none;
}

#naviChatInput::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

.btn-compact {
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  border: none;
  background: #2563eb;
  color: #f9fafb;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.45);
}

.btn-compact:hover {
  background: #1d4ed8;
}

/* Mobile tweak for Navi demo */
@media (max-width: 720px) {
  .navi-demo-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
  }

  .navi-chat-card {
    margin-top: 0.4rem;
  }
}



.navi-chat-badge-row {
  margin-top: 0.15rem;
}

.navi-chat-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.6);
}



.navi-mini-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.navi-chat-card-compact {
  padding: 1.1rem 1rem 0.95rem;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.45);
}

@media (max-width: 720px) {
  .navi-mini-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}



/* Hover-based dropdown behavior */
.nav-item-has-children:hover .nav-dropdown {
  display: block !important;
}

/* Remove chevron icon */
.nav-item-has-children .fa-chevron-down {
  display: none !important;
}



/* Refined nav dropdown: hover/focus driven with subtle animation */
.nav-dropdown {
  position: absolute;
  top: 2.2rem;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  padding: 0.5rem 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.14s ease-out, transform 0.14s ease-out, visibility 0.14s ease-out;
  z-index: 40;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.88rem;
  color: #0f172a;
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown a i.nav-dropdown-icon {
  font-size: 0.9rem;
  opacity: 0.8;
}

.nav-dropdown a span {
  flex: 1;
}

.nav-dropdown a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
}

/* Show dropdown on hover (desktop) and focus (keyboard / tap) */
.nav-item-has-children:hover .nav-dropdown,
.nav-item-has-children:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hide chevron arrow for a cleaner, more professional look */
.nav-item-has-children .fa-chevron-down {
  display: none !important;
}



.navbar nav ul {
    width: 100%;
    justify-content: center;
  }

  .navbar nav ul li.nav-cta {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}



/* Header layout: logo left, tabs centered, CTA right */
@media (min-width: 721px) {
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
  }

  .nav-left {
    flex: 0 0 auto;
  }

  .navbar nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
  }

  .navbar nav ul {
    justify-content: center;
    width: auto;
  }

  .navbar nav ul li.nav-cta {
    position: static;
    transform: none;
  }
}




@media (min-width: 721px) {
  .navbar nav {
    transform: translateX(-18px);
  }
}

/* Highlight Navi tab (always visible, simple brand match) */
/* === Header nav stabilization (v55) === */
@media (min-width: 721px) {
  .site-header .navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 1.5rem;
  }

  .site-header .navbar nav {
    justify-self: center;
    min-width: 0;
  }

  .site-header .navbar nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    row-gap: 0.4rem;
    flex-wrap: wrap; /* prevent overflow hiding the last tabs */
    white-space: normal;
  }

  .site-header .navbar nav ul li {
    flex: 0 0 auto;
  }
}

/* Navi tab highlight (subtle + professional) */


/* Navi tab – same size as other tabs, subtle emphasis only */
.nav-link.nav-navi {
  font-weight: 600;
  color: #2563eb !important;
  position: relative;
}

.nav-link.nav-navi::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background-color: #2563eb;
  border-radius: 2px;
}



/* Header layout without top-right CTA */
@media (min-width: 721px) {
  .site-header .navbar {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .site-header .navbar nav {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .site-header .navbar nav ul {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: nowrap;
  }
}


/* Active state for top-level nav triggers (buttons) */
button.nav-trigger.active {
  color: #2563eb !important;
  position: relative;
}
button.nav-trigger.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: #2563eb;
  border-radius: 2px;
}

/* Active state for dropdown items */
.nav-dropdown a.active {
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
}

.nav-link.active{position:relative;}
.nav-link.active::after{content:"";position:absolute;left:0;right:0;bottom:-6px;height:2px;background:#2563eb;border-radius:2px;}

/* ===== Home (Hybrid) enhancements: uses existing palette, adds layout only ===== */
.hero--split { position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: center; padding-top: 2.5rem; padding-bottom: 2.5rem; }
.eyebrow { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: .75rem; }
.badge { display: inline-flex; align-items: center; gap: .35rem; padding: .35rem .6rem; border-radius: 999px; font-size: .78rem; font-weight: 600; border: 1px solid rgba(15,23,42,.12); background: rgba(255,255,255,.65); }
.badge--soft { border-color: rgba(37,99,235,.25); background: rgba(37,99,235,.08); color: #1d4ed8; }
.hero-title { font-size: clamp(2.1rem, 3.3vw, 3.0rem); line-height: 1.05; margin: 0.25rem 0 0.75rem; }
.hero-subtitle { max-width: 42rem; font-size: 1.05rem; color: rgba(15,23,42,.78); margin: 0 0 1rem; }
.hero-chips { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.05rem 0 1.25rem; }
.chip { display: inline-flex; align-items: center; padding: .5rem .75rem; border-radius: 999px; font-size: .86rem; border: 1px solid rgba(15,23,42,.10); background: rgba(248,250,252,.9); }
.hero-cta-row { display: flex; gap: .75rem; flex-wrap: wrap; margin: .25rem 0 1.15rem; }
.hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-top: 1rem; }
.proof-item { padding: .9rem 1rem; border-radius: 14px; border: 1px solid rgba(15,23,42,.10); background: rgba(255,255,255,.65); }
.proof-label { font-size: .78rem; color: rgba(15,23,42,.65); }
.proof-value { font-size: .95rem; font-weight: 600; color: rgba(15,23,42,.9); }

.hero-visual { position: relative; min-height: 380px; }
.mock-shell { border-radius: 18px; border: 1px solid rgba(15,23,42,.12); background: rgba(255,255,255,.78); box-shadow: 0 20px 60px rgba(2,6,23,.10); overflow: hidden; position: relative; z-index: 2; }
.mock-top { display: flex; align-items: center; gap: .4rem; padding: .75rem .9rem; border-bottom: 1px solid rgba(15,23,42,.10); background: rgba(248,250,252,.9); }
.mock-top .dot { width: 10px; height: 10px; border-radius: 999px; background: rgba(15,23,42,.18); }
.mock-title { margin-left: .5rem; font-size: .82rem; color: rgba(15,23,42,.65); }
.mock-body { padding: 1rem; display: grid; gap: .65rem; }
.mock-bubble { padding: .75rem .9rem; border-radius: 14px; font-size: .92rem; line-height: 1.25; border: 1px solid rgba(15,23,42,.08); }
.mock-bubble--ai { background: rgba(37,99,235,.08); }
.mock-bubble--user { background: rgba(15,23,42,.06); margin-left: 1.5rem; }
.mock-actions { display: flex; flex-wrap: wrap; gap: .5rem; padding-top: .25rem; }
.pill { padding: .5rem .75rem; border-radius: 999px; border: 1px solid rgba(37,99,235,.25); background: rgba(37,99,235,.08); color: #1d4ed8; font-weight: 600; font-size: .85rem; }
.mock-note { font-size: .78rem; color: rgba(15,23,42,.55); padding-top: .25rem; }

.hero-glow { position: absolute; inset: -120px -120px auto auto; width: 420px; height: 420px; background: radial-gradient(circle at 30% 30%, rgba(37,99,235,.25), transparent 60%); filter: blur(18px); z-index: 1; }

.section-head { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.25rem; }
.section--alt { background: linear-gradient(180deg, rgba(248,250,252,.92), rgba(255,255,255,1)); border-top: 1px solid rgba(15,23,42,.06); border-bottom: 1px solid rgba(15,23,42,.06); }
.metric-grid--4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; }
.metric-card { padding: 1.1rem 1.1rem; border-radius: 16px; border: 1px solid rgba(15,23,42,.10); background: rgba(255,255,255,.78); box-shadow: 0 10px 30px rgba(2,6,23,.06); }
.metric-kicker { font-size: .78rem; color: rgba(15,23,42,.58); }
.metric-number { font-size: 1.6rem; font-weight: 800; margin-top: .25rem; }
.metric-label { font-size: .9rem; color: rgba(15,23,42,.72); }

.micro-proof { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.micro-pill { padding: .45rem .7rem; border-radius: 999px; font-size: .82rem; border: 1px solid rgba(15,23,42,.10); background: rgba(248,250,252,.9); }

.journey-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.journey-card { border-radius: 18px; border: 1px solid rgba(15,23,42,.10); background: rgba(255,255,255,.78); padding: 1.2rem 1.2rem; text-decoration: none; color: inherit; box-shadow: 0 10px 30px rgba(2,6,23,.05); }
.journey-card:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(2,6,23,.09); transition: .2s ease; }
.journey-top { display: flex; justify-content: space-between; align-items: center; gap: .75rem; margin-bottom: .5rem; flex-wrap: wrap; }
.journey-badge { font-weight: 700; font-size: .82rem; color: rgba(15,23,42,.75); }
.journey-tag { font-size: .78rem; padding: .3rem .55rem; border-radius: 999px; border: 1px solid rgba(37,99,235,.25); background: rgba(37,99,235,.08); color: #1d4ed8; }
.journey-cta { margin-top: .65rem; font-weight: 700; color: #1d4ed8; }

.navi-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.2rem; align-items: start; }
.navi-prompts { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .9rem; }
.prompt { padding: .55rem .8rem; border-radius: 999px; border: 1px solid rgba(15,23,42,.10); background: rgba(255,255,255,.75); font-weight: 600; font-size: .86rem; }
.prompt:hover { border-color: rgba(37,99,235,.25); background: rgba(37,99,235,.08); color: #1d4ed8; transition: .18s ease; }

.navi-mini { display: grid; gap: 1rem; }
.mini-card { border-radius: 18px; border: 1px solid rgba(15,23,42,.10); background: rgba(255,255,255,.78); padding: 1.1rem 1.1rem; box-shadow: 0 10px 30px rgba(2,6,23,.05); }
.mini-head { font-weight: 800; margin-bottom: .75rem; }
.mini-row { display: flex; justify-content: space-between; gap: .75rem; padding: .35rem 0; border-bottom: 1px dashed rgba(15,23,42,.10); }
.mini-row:last-child { border-bottom: 0; }

.compare-lite { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.compare-col { border-radius: 18px; border: 1px solid rgba(15,23,42,.10); padding: 1.2rem 1.2rem; background: rgba(255,255,255,.78); }
.compare-title { font-weight: 900; margin-bottom: .75rem; }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.check { display: inline-flex; width: 22px; height: 22px; border-radius: 999px; align-items: center; justify-content: center; background: rgba(34,197,94,.14); color: rgb(22,163,74); font-weight: 900; margin-right: .55rem; }
.xmark { display: inline-flex; width: 22px; height: 22px; border-radius: 999px; align-items: center; justify-content: center; background: rgba(148,163,184,.18); color: rgba(15,23,42,.55); font-weight: 900; margin-right: .55rem; }
.checklist--muted { color: rgba(15,23,42,.62); }

.cta-band { margin-top: 1.25rem; border-radius: 18px; border: 1px solid rgba(37,99,235,.22); background: linear-gradient(180deg, rgba(37,99,235,.08), rgba(255,255,255,.78)); padding: 1.1rem 1.2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cta-band h3 { margin: 0 0 .15rem; }
.cta-band p { margin: 0; }

@media (max-width: 900px) {
  .hero-grid, .navi-split { grid-template-columns: 1fr; }
  .metric-grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .journey-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .metric-grid--4 { grid-template-columns: 1fr; }
}
