:root {
  --bg: #f8fafc;
  --panel: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.08);
  --accent: #1e40af;
  --accent-light: #3b82f6;
  --teal: #0d9488;
  --ok: #10b981;
  --max: 1180px;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --header-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

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

a { color: var(--accent-light); text-decoration: none; }
a:hover { color: var(--accent); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
  padding: 8px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand img { height: 64px; width: auto; }

.brand-tag {
  font-size: 10px;
  line-height: 1.3;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(59, 130, 246, 0.08);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 10px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown--active .nav-dropdown-toggle {
  color: var(--text);
  background: rgba(59, 130, 246, 0.08);
}

.nav-chevron {
  font-size: 10px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  z-index: 200;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  white-space: normal;
}

.nav-dropdown-menu a.active {
  color: var(--primary);
  background: rgba(59, 130, 246, 0.1);
  font-weight: 600;
}

.nav-dropdown-all {
  margin-top: 4px;
  border-top: 1px solid var(--line);
  padding-top: 12px !important;
  font-weight: 600;
  color: var(--primary) !important;
}

.header-cta {
  margin-left: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); color: var(--text); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.25);
}

.btn-primary:hover { color: #fff; }

.btn-teal {
  background: linear-gradient(135deg, #14b8a6, var(--teal));
  border-color: var(--teal);
  color: #fff;
}

.btn-teal:hover { color: #fff; }

.btn-lg { padding: 16px 28px; font-size: 16px; }

/* Hero */
.hero {
  position: relative;
  padding: 100px 0 80px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(15, 23, 42, 0.72), rgba(30, 64, 175, 0.65)),
    url('../Images/Med Billing Header_landing.jpg') center/cover no-repeat;
}

.hero-compact { padding: 72px 0 56px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-lead {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  max-width: 720px;
  margin: 0 auto 32px;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.hero-actions .btn-secondary:hover { background: rgba(255, 255, 255, 0.25); color: #fff; }

/* Trust strip */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.trust-item span { font-size: 13px; color: var(--muted); }

/* Sections */
section { padding: 72px 0; }

section.alt { background: #fff; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 12px;
  font-weight: 800;
}

.section-head p { color: var(--muted); margin: 0; font-size: 1.05rem; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 10px;
}

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

.pillar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.pillar-card:hover { transform: translateY(-4px); }

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  background: rgba(59, 130, 246, 0.1);
}

.pillar-card h3 { margin: 0 0 10px; font-size: 1.2rem; }

.pillar-card p { color: var(--muted); margin: 0 0 16px; font-size: 15px; }

.pillar-card .link-arrow,
.link-arrow {
  font-weight: 600;
  font-size: 14px;
}

/* Cards & grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3, .card h4 { margin: 0 0 10px; }

.card p { color: var(--muted); margin: 0; font-size: 15px; }

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  color: inherit;
}

.tagrow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }

.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.08);
  color: var(--accent);
}

/* Platform mockups */
.platform-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}

.mock-dashboard {
  background: linear-gradient(145deg, #0f172a, #1e293b);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  min-height: 320px;
}

.mock-topbar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.mock-dot:first-child { background: #ef4444; }
.mock-dot:nth-child(2) { background: #f59e0b; }
.mock-dot:nth-child(3) { background: #10b981; }

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

.mock-stat {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px;
}

.mock-stat label {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mock-stat strong {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  margin-top: 4px;
}

.mock-chart {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  height: 120px;
  margin-top: 4px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 16px;
}

.mock-bar {
  flex: 1;
  background: linear-gradient(to top, var(--accent-light), #60a5fa);
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
}

.placeholder-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 12px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: 700;
}

/* Comparison table */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compare-col {
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--line);
}

.compare-col.them { background: #f1f5f9; }

.compare-col.us {
  background: linear-gradient(145deg, #eff6ff, #fff);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: var(--shadow);
}

.compare-col h3 { margin: 0 0 20px; }

.compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-col li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 15px;
}

.compare-col.them li::before { content: "✕"; position: absolute; left: 0; color: #94a3b8; }
.compare-col.us li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 700; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--accent), #1e3a8a);
  color: #fff;
  text-align: center;
  padding: 64px 20px;
  border-radius: var(--radius);
  margin: 0 20px;
  max-width: calc(var(--max) - 40px);
  margin-left: auto;
  margin-right: auto;
}

.cta-band h2 { margin: 0 0 12px; font-size: 2rem; }

.cta-band p { margin: 0 0 28px; opacity: 0.9; max-width: 560px; margin-left: auto; margin-right: auto; }

.cta-band .btn-primary {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}

.cta-band .btn-primary:hover { color: var(--accent); }

/* Forms */
.form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto;
}

.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
}

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

.notice {
  font-size: 13px;
  color: var(--muted);
  background: #f9f8f5;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 20px;
}

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
}

.faq-q:hover { color: var(--accent-light); }

.faq-a {
  display: none;
  padding-bottom: 18px;
  color: var(--muted);
}

.faq-a.open { display: block; }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
}

.empty-state h3 { margin: 0 0 10px; }

.empty-state p { color: var(--muted); max-width: 480px; margin: 0 auto; }

/* Breadcrumb */
.breadcrumb {
  font-size: 14px;
  color: var(--muted);
  padding: 16px 0 0;
}

.breadcrumb a { color: var(--muted); }

/* Footer */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 40px;
}

.footer-brand img { height: 72px; margin-bottom: 12px; }

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

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 12px;
}

.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  padding: 4px 0;
  text-decoration: none;
}

.footer-col a:hover { color: var(--accent-light); }

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, #eff6ff, #f8fafc);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin: 0 0 12px;
  font-weight: 800;
}

.page-hero p {
  color: var(--muted);
  max-width: 640px;
  margin: 0;
  font-size: 1.1rem;
}

/* Resource cards */
.resource-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  height: 100%;
}

.resource-card .cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
  margin-bottom: 8px;
}

.resource-card h3 { margin: 0 0 8px; font-size: 1.1rem; }

.resource-card p { color: var(--muted); font-size: 14px; margin: 0 0 12px; }

.coming-soon {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: #fef3c7;
  color: #92400e;
}

.platform-screenshot {
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
}

.platform-screenshot img {
  width: 100%;
  display: block;
}

.platform-iframe {
  width: 100%;
  height: 720px;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  background: #fff;
}

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

.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.testimonial blockquote {
  margin: 0 0 16px;
  font-style: italic;
  color: var(--muted);
  font-size: 15px;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.testimonial cite span {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.case-study-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s;
}

.case-study-card:hover {
  transform: translateY(-4px);
  color: inherit;
}

.case-study-card .cs-body { padding: 24px; }

.case-study-card .cs-industry {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
  margin-bottom: 8px;
}

.metric-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.metric-pill {
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}

.disclaimer-bar {
  font-size: 13px;
  color: var(--muted);
  background: #f1f5f9;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 32px;
  text-align: center;
}

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

.leader-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.leader-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}

.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { margin-top: 40px; }
.article-body p, .article-body li { color: var(--muted); }

@media print {
  .site-header, .site-footer, .no-print { display: none !important; }
  body { background: #fff; }
}

@media (max-width: 980px) {
  .testimonial-grid, .leadership-grid, .reassurance-grid { grid-template-columns: 1fr; }
  .platform-iframe { height: 480px; }
  .workflow-diagram { flex-direction: column; }
  .workflow-step::after { display: none; }
}

/* RCM workflow diagram */
.workflow-diagram {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.workflow-step {
  flex: 1;
  min-width: 90px;
  text-align: center;
  position: relative;
}

.workflow-step::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 28px;
  color: var(--accent-light);
  font-weight: 700;
  font-size: 18px;
}

.workflow-step:last-child::after { display: none; }

.workflow-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 2px solid rgba(59, 130, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 10px;
}

.workflow-step strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.workflow-step span {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
  display: block;
}

/* Transition page */
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.reassurance-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.reassurance-card.highlight {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.06);
}

.reassurance-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--accent);
}

.reassurance-card p { margin: 0; color: var(--muted); font-size: 15px; }

.transition-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.transition-steps li {
  padding: 24px 0 24px 48px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.transition-steps li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transition-steps { counter-reset: step; }

.transition-steps h3 { margin: 0 0 8px; font-size: 1.1rem; }
.transition-steps p { margin: 0; color: var(--muted); }

/* Resources hub tabs */
.resource-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.resource-tab {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  text-decoration: none;
}

.resource-tab:hover,
.resource-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.resource-section { scroll-margin-top: 100px; }

.conversational {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
}

.contact-highlight {
  background: linear-gradient(135deg, #eff6ff, #f8fafc);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.calendly-embed {
  min-height: 680px;
  border: none;
  width: 100%;
  border-radius: var(--radius);
}

/* Download cards */
.download-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.download-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(13, 148, 136, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    box-shadow: var(--shadow);
  }

  .site-nav.open { display: flex; }

  .nav-dropdown { width: 100%; }

  .nav-dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 12px;
    min-width: 0;
    margin-top: 4px;
  }

  .nav-dropdown.open .nav-dropdown-menu { display: block; }

  .header-cta { margin: 8px 0 0; }

  .pillar-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .compare-grid,
  .platform-showcase,
  .trust-grid,
  .footer-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .brand img { height: 52px; }

  section { padding: 56px 0; }
}
