/* ================================================================
   ARG-MB | Advanced Revenue Group Medical Billing
   Production CSS — Premium Enterprise Design 2025
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Custom Properties ── */
:root {
  --navy:        #0B1F3A;
  --navy-mid:    #112444;
  --navy-light:  #1A3A6B;
  --teal:        #00B5CC;
  --teal-dark:   #0099AE;
  --teal-light:  #33C4D8;
  --amber:       #F59E0B;
  --amber-dark:  #D97706;
  --green:       #10B981;
  --red:         #EF4444;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --gray-50:     #F1F5F9;
  --gray-100:    #E2E8F0;
  --gray-200:    #CBD5E1;
  --gray-300:    #94A3B8;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-900:    #0F172A;
  --bg:          #FFFFFF;
  --bg-alt:      #F8FAFC;
  --surface:     #FFFFFF;
  --text:        #0F172A;
  --text-muted:  #475569;
  --border:      #E2E8F0;
  --nav-h:       72px;
  --font-head:   'Sora', system-ui, sans-serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --shadow-sm:   0 1px 3px rgba(11,31,58,0.07), 0 1px 2px rgba(11,31,58,0.05);
  --shadow:      0 4px 16px rgba(11,31,58,0.09);
  --shadow-md:   0 8px 32px rgba(11,31,58,0.12);
  --shadow-lg:   0 16px 48px rgba(11,31,58,0.15);
  --shadow-xl:   0 24px 64px rgba(11,31,58,0.20);
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --dur:         0.25s;
  --section-py:  96px;
}
[data-theme="dark"] {
  --bg:          #060E1A;
  --bg-alt:      #0A1628;
  --surface:     #0F1E35;
  --text:        #E2E8F0;
  --text-muted:  #94A3B8;
  --border:      rgba(255,255,255,0.08);
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.3);
  --shadow:      0 4px 16px rgba(0,0,0,0.4);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.45);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.5);
}
[data-theme="dark"] .navbar-wrap { background: rgba(6,14,26,0.97); border-color: rgba(255,255,255,0.07); }
[data-theme="dark"] .dropdown-panel { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .mobile-drawer { background: var(--bg); }
[data-theme="dark"] .card, [data-theme="dark"] .service-card,
[data-theme="dark"] .why-card, [data-theme="dark"] .testi-card,
[data-theme="dark"] .blog-card, [data-theme="dark"] .faq-item,
[data-theme="dark"] .form-wrap, [data-theme="dark"] .spec-card,
[data-theme="dark"] .job-card, [data-theme="dark"] .value-card,
[data-theme="dark"] .sidebar-box, [data-theme="dark"] .quote-card { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .form-control { background: var(--bg-alt); border-color: var(--border); color: var(--text); }
[data-theme="dark"] .form-control:focus { background: var(--surface); }
[data-theme="dark"] .mission-card.light { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .footer { background: #030810; }
[data-theme="dark"] .about-img-badge { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .hero-chip { background: var(--surface); }
[data-theme="dark"] .hero-chip-txt strong { color: var(--text); }
[data-theme="dark"] .scroll-btn-inner { background: var(--surface); color: var(--text); }
[data-theme="dark"] .process-connector { background: rgba(0,181,204,0.15); }

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; font-size: 16px; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.65; overflow-x: hidden; transition: background 0.3s var(--ease), color 0.3s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--teal-dark); }
button { cursor: pointer; font-family: var(--font-body); }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1360px; margin: 0 auto; padding: 0 40px; }
.section { padding: var(--section-py) 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.skip-link { position: absolute; left: 8px; top: -60px; z-index: 10000; background: var(--teal); color: var(--navy); font-weight: 700; padding: 12px 20px; border-radius: var(--radius-sm); transition: top var(--dur) var(--ease); text-decoration: none; }
.skip-link:focus { top: 8px; outline: 3px solid var(--amber); outline-offset: 2px; }

/* ── Typography ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 12px;
}
.eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--teal); border-radius: 2px; flex-shrink: 0; }
.section-title {
  font-family: var(--font-head); font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800; color: var(--text); line-height: 1.15;
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.section-title span { color: var(--teal); }
.section-title .gold { color: var(--amber); }
.section-sub { font-size: 1.03rem; color: var(--text-muted); max-width: 580px; line-height: 1.75; }
.section-sub.center { margin: 0 auto; text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  padding: 13px 26px; border-radius: 8px; border: 2px solid transparent;
  transition: all var(--dur) var(--ease); white-space: nowrap;
  cursor: pointer; line-height: 1; position: relative; overflow: hidden;
}
.btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0); transition: background 0.2s; }
.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn i { font-size: 0.9em; flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 1em; height: 1em; }
.btn-primary { background: var(--teal); color: #fff; border-color: var(--teal); box-shadow: 0 4px 14px rgba(0,181,204,0.28); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(0,181,204,0.38); }
.btn-amber { background: var(--amber); color: #fff; border-color: var(--amber); box-shadow: 0 4px 14px rgba(245,158,11,0.28); }
.btn-amber:hover { background: var(--amber-dark); border-color: var(--amber-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(245,158,11,0.38); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--gray-200); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); background: rgba(0,181,204,0.04); }
[data-theme="dark"] .btn-outline { color: var(--text); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.btn-ghost { background: transparent; color: var(--teal); border-color: transparent; padding: 13px 0; }
.btn-ghost:hover { color: var(--teal-dark); background: transparent; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; }
.btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none !important; }

/* ── Navbar ── */
.navbar-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.navbar-wrap.scrolled { box-shadow: 0 4px 24px rgba(11,31,58,0.10); }
.navbar {
  display: flex; align-items: center;
  height: 100%; max-width: 1360px; margin: 0 auto; padding: 0 32px; gap: 0;
}
/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; margin-right: 36px; flex-shrink: 0; text-decoration: none; }
.nav-logo-img-wrap { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo-img-wrap img { max-width: 100%; max-height: 44px; width: auto; height: auto; object-fit: contain; display: block; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .brand { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; }
.nav-logo-text .brand span { color: var(--teal); }
.nav-logo-text .sub { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-300); margin-top: 1px; }
[data-theme="dark"] .nav-logo-text .brand { color: var(--text); }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px; font-size: 0.875rem; font-weight: 500;
  color: var(--gray-700); border-radius: var(--radius-sm);
  transition: color var(--dur), background var(--dur); white-space: nowrap;
}
[data-theme="dark"] .nav-link { color: var(--gray-300); }
.nav-link:hover, .nav-link.active { color: var(--teal); background: rgba(0,181,204,0.07); }
.nav-link i.chevron { font-size: 0.6rem; transition: transform var(--dur); margin-left: 2px; }
.nav-item:hover .nav-link i.chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown-panel {
  position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #fff; border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
  padding: 6px; min-width: 240px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all 0.18s var(--ease); z-index: 200;
}
.nav-item:hover .dropdown-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 0.84rem; font-weight: 500; color: var(--gray-700);
  transition: background var(--dur), color var(--dur);
}
.dropdown-link:hover { background: rgba(0,181,204,0.07); color: var(--teal); }
.dropdown-link .icon-wrap { width: 28px; height: 28px; border-radius: 6px; background: rgba(0,181,204,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dropdown-link .icon-wrap i { font-size: 0.75rem; color: var(--teal); display: flex; align-items: center; justify-content: center; }
.dropdown-link:hover .icon-wrap { background: var(--teal); }
.dropdown-link:hover .icon-wrap i { color: #fff; }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.dark-toggle {
  width: 36px; height: 36px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: none; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--gray-600);
  transition: all var(--dur);
}
.dark-toggle:hover { border-color: var(--teal); color: var(--teal); background: rgba(0,181,204,0.06); }
.dark-toggle i { display: flex; align-items: center; justify-content: center; width: 16px; height: 16px; }

/* Phone pill in nav */
.nav-phone {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 600; color: var(--navy);
  padding: 8px 14px; border-radius: 8px;
  background: rgba(11,31,58,0.05); border: 1px solid var(--border);
  transition: all var(--dur);
}
[data-theme="dark"] .nav-phone { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-phone:hover { border-color: var(--teal); color: var(--teal); background: rgba(0,181,204,0.06); }
.nav-phone i { color: var(--teal); width: 14px; height: 14px; display: flex; align-items: center; justify-content: center; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 4px;
  width: 36px; height: 36px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: none;
  align-items: center; justify-content: center; padding: 0; flex-shrink: 0;
}
.hamburger span { display: block; width: 16px; height: 1.5px; background: var(--gray-700); border-radius: 2px; transition: all var(--dur); }
[data-theme="dark"] .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed; inset: 0; top: var(--nav-h); z-index: 999;
  background: var(--bg); overflow-y: auto;
  padding: 16px 20px 40px; transform: translateX(100%);
  transition: transform 0.3s var(--ease);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 4px; font-size: 0.975rem; font-weight: 500;
  color: var(--text); border-bottom: 1px solid var(--border);
}
.mobile-link:hover { color: var(--teal); }
.mobile-sub-group details summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 4px; font-size: 0.975rem; font-weight: 500;
  color: var(--text); border-bottom: 1px solid var(--border);
  cursor: pointer; list-style: none;
}
.mobile-sub-group details summary::-webkit-details-marker { display: none; }
.mobile-sub-link {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; font-size: 0.875rem; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.mobile-sub-link i { width: 16px; color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; }
.mobile-sub-link:hover { color: var(--teal); background: rgba(0,181,204,0.04); }
.mobile-actions { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.mobile-contact-info { margin-top: 24px; padding: 16px; background: var(--bg-alt); border-radius: var(--radius-lg); }
.mobile-contact-info p { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 10px; }
.mobile-contact-row { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text); padding: 6px 0; }
.mobile-contact-row i { width: 20px; height: 20px; background: rgba(0,181,204,0.1); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 0.7rem; flex-shrink: 0; }

/* ── Page top spacer ── */
.page-top { padding-top: var(--nav-h); }

/* ── Trust Ribbon ── */
.trust-ribbon { background: var(--navy); padding: 14px 0; overflow: hidden; }
.trust-track { display: flex; gap: 0; animation: scrollLeft 32s linear infinite; width: max-content; }
.trust-ribbon:hover .trust-track { animation-play-state: paused; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 0 36px; font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.72); border-right: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
}
.trust-item i { color: var(--amber); font-size: 0.8rem; width: 14px; display: flex; align-items: center; justify-content: center; }
@keyframes scrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Hero ── */
.hero {
  position: relative; min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center; background: var(--navy); overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1800&q=80');
  background-size: cover; background-position: center; opacity: 0.1;
}
.hero-bg-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, rgba(11,31,58,0.98) 48%, rgba(11,31,58,0.8) 100%); }
.hero-grid-pattern {
  position: absolute; inset: 0; z-index: 1;
  background-image: linear-gradient(rgba(0,181,204,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,181,204,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-glow { position: absolute; inset: 0; z-index: 1; background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(0,181,204,0.07) 0%, transparent 70%); }
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  max-width: 1360px; margin: 0 auto; padding: 80px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,181,204,0.12); border: 1px solid rgba(0,181,204,0.3);
  color: var(--teal-light); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 22px;
}
.hero-dot { width: 7px; height: 7px; background: var(--teal); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero-title {
  font-family: var(--font-head); font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  font-weight: 800; color: #fff; line-height: 1.1;
  letter-spacing: -0.025em; margin-bottom: 20px;
}
.hero-title span { color: var(--teal); }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.78; margin-bottom: 34px; max-width: 500px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-proof { display: flex; gap: 28px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.hero-stat-n { font-family: var(--font-head); font-size: 1.75rem; font-weight: 800; color: var(--amber); line-height: 1; display: block; }
.hero-stat-l { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 4px; letter-spacing: 0.05em; }
/* Hero visual */
.hero-visual { position: relative; }
.hero-img-card { border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.45); position: relative; }
.hero-img-card img { width: 100%; height: 440px; object-fit: cover; display: block; }
.hero-img-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(11,31,58,0.92) 0%, transparent 60%); padding: 28px 24px; }
.hero-img-badge { display: flex; align-items: center; gap: 12px; }
.hero-img-badge .hib-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #fff; flex-shrink: 0; }
.hero-img-badge .hib-icon i { width: 1em; height: 1em; display: flex; align-items: center; justify-content: center; }
.hero-img-badge strong { display: block; font-size: 0.9rem; font-weight: 700; color: #fff; }
.hero-img-badge span { font-size: 0.72rem; color: rgba(255,255,255,0.58); }
.hero-chip {
  position: absolute; background: #fff; border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2); padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  animation: chipFloat 4s ease-in-out infinite;
}
.hero-chip.top { top: -18px; left: -24px; animation-delay: 0s; }
.hero-chip.bottom { bottom: 72px; right: -20px; animation-delay: -2s; }
@keyframes chipFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.chip-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }
.chip-icon i { display: flex; align-items: center; justify-content: center; width: 1em; height: 1em; }
.chip-icon.teal { background: rgba(0,181,204,0.12); color: var(--teal); }
.chip-icon.green { background: rgba(16,185,129,0.12); color: var(--green); }
.chip-txt strong { font-size: 0.82rem; font-weight: 700; color: var(--navy); display: block; line-height: 1.2; }
.chip-txt span { font-size: 0.68rem; color: var(--gray-300); }

/* ── Problem/Solution Section ── */
.problem-solution { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.problem-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.problem-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; background: rgba(239,68,68,0.04); border: 1px solid rgba(239,68,68,0.1); border-radius: var(--radius); font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; }
.problem-item i { color: #EF4444; margin-top: 2px; flex-shrink: 0; width: 14px; display: flex; align-items: center; justify-content: center; }
.solution-box { background: var(--navy); border-radius: var(--radius-xl); padding: 44px 40px; position: relative; overflow: hidden; }
.solution-box::before { content: ''; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(0,181,204,0.12) 0%, transparent 70%); }
.solution-stat-n { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--teal); line-height: 1; display: block; }
.solution-stat-l { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 6px; }
.solution-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 24px 0; }
.solution-items { display: flex; flex-direction: column; gap: 12px; }
.solution-item { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.solution-item i { color: var(--green); flex-shrink: 0; width: 14px; display: flex; align-items: center; justify-content: center; }

/* ── Service Cards ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 26px; transition: all var(--dur) var(--ease); position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--teal-light)); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.svc-icon-wrap { width: 52px; height: 52px; border-radius: 12px; background: rgba(0,181,204,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: all var(--dur); }
.svc-icon-wrap i { font-size: 1.25rem; color: var(--teal); display: flex; align-items: center; justify-content: center; width: 1.25rem; height: 1.25rem; transition: color var(--dur); }
.service-card:hover .svc-icon-wrap { background: var(--teal); }
.service-card:hover .svc-icon-wrap i { color: #fff; }
.service-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.service-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.svc-link { font-size: 0.82rem; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--dur); }
.svc-link i { width: 12px; height: 12px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; }
.svc-link:hover { gap: 10px; color: var(--teal-dark); }

/* ── Stats Bar ── */
.stats-bar { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 100%); padding: 64px 0; position: relative; overflow: hidden; }
.stats-bar::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(0,181,204,0.06) 1px, transparent 1px); background-size: 28px 28px; }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); position: relative; z-index: 1; }
.stat-cell { text-align: center; padding: 28px 20px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-cell:last-child { border-right: none; }
.stat-icon-box { width: 44px; height: 44px; border-radius: 10px; background: rgba(0,181,204,0.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.stat-icon-box i { font-size: 1.05rem; color: var(--teal); display: flex; align-items: center; justify-content: center; width: 1.05rem; height: 1.05rem; }
.stat-num { font-family: var(--font-head); font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 800; color: var(--amber); display: block; line-height: 1; }
.stat-label { font-size: 0.77rem; color: rgba(255,255,255,0.5); margin-top: 8px; letter-spacing: 0.06em; text-transform: uppercase; }

/* ── Why Choose ── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.why-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; transition: all var(--dur); }
.why-card:hover { background: var(--surface); box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }
.why-icon-box { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: 0 6px 18px rgba(0,181,204,0.28); }
.why-icon-box i { font-size: 1.3rem; color: #fff; display: flex; align-items: center; justify-content: center; width: 1.3rem; height: 1.3rem; }
.why-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.why-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

/* ── Process Steps ── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-connector { position: absolute; top: 24px; left: calc(12.5%) ; right: calc(12.5%); height: 2px; background: var(--gray-100); z-index: 0; }
.process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.process-num-wrap { width: 48px; height: 48px; border-radius: 50%; background: var(--teal); color: #fff; font-family: var(--font-head); font-size: 1rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(0,181,204,0.38); position: relative; z-index: 2; }
.process-step h3 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.process-step p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

/* ── Testimonials ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; position: relative; transition: all var(--dur); }
.testi-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }
.testi-quote-mark { font-size: 3.5rem; font-weight: 900; color: var(--teal); opacity: 0.12; position: absolute; top: 12px; right: 18px; line-height: 1; font-family: Georgia, serif; user-select: none; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars i { color: var(--amber); font-size: 0.78rem; width: 0.78rem; height: 0.78rem; display: flex; align-items: center; justify-content: center; }
.testi-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--navy)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; color: #fff; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 0.87rem; color: var(--text); }
.testi-role { font-size: 0.73rem; color: var(--text-muted); margin-top: 2px; }

/* ── Specialties ── */
.spec-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(165px,1fr)); gap: 14px; }
.spec-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 12px; text-align: center; transition: all var(--dur); cursor: default; }
.spec-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.spec-icon-box { width: 44px; height: 44px; border-radius: 10px; background: rgba(0,181,204,0.08); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; transition: all var(--dur); }
.spec-icon-box i { font-size: 1.1rem; color: var(--teal); display: flex; align-items: center; justify-content: center; width: 1.1rem; height: 1.1rem; transition: color var(--dur); }
.spec-card:hover .spec-icon-box { background: var(--teal); }
.spec-card:hover .spec-icon-box i { color: #fff; }
.spec-card span { font-size: 0.82rem; font-weight: 600; color: var(--text); display: block; line-height: 1.3; }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--dur); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-img { height: 190px; overflow: hidden; position: relative; background: var(--navy); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.blog-img-placeholder i { font-size: 2.5rem; color: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; }
.blog-body { padding: 22px; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.blog-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); background: rgba(0,181,204,0.1); padding: 3px 8px; border-radius: 100px; }
.blog-date { font-size: 0.74rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.blog-date i { font-size: 0.7rem; display: flex; align-items: center; justify-content: center; width: 0.7rem; height: 0.7rem; }
.blog-card h3 { font-family: var(--font-head); font-size: 0.97rem; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.42; }
.blog-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.blog-link { font-size: 0.8rem; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: 5px; transition: gap var(--dur); }
.blog-link i { font-size: 0.68rem; display: flex; align-items: center; justify-content: center; }
.blog-link:hover { gap: 8px; color: var(--teal-dark); }

/* ── FAQ ── */
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; transition: border-color var(--dur); }
.faq-item.open { border-color: var(--teal); }
.faq-btn { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; font-size: 0.93rem; font-weight: 600; color: var(--text); text-align: left; cursor: pointer; transition: color var(--dur); }
.faq-btn:hover { color: var(--teal); }
.faq-icon-box { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: var(--gray-600); transition: all var(--dur); }
[data-theme="dark"] .faq-icon-box { background: rgba(255,255,255,0.08); color: var(--text-muted); }
.faq-icon-box i { display: flex; align-items: center; justify-content: center; width: 0.8rem; height: 0.8rem; }
.faq-item.open .faq-icon-box { background: var(--teal); color: #fff; transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.38s var(--ease); }
.faq-inner { padding: 0 22px 18px; font-size: 0.88rem; color: var(--text-muted); line-height: 1.78; border-top: 1px solid var(--border); padding-top: 14px; }
.faq-item.open .faq-body { max-height: 600px; }

/* ── HIPAA Section ── */
.hipaa-section { background: linear-gradient(135deg, var(--navy) 0%, #0F2D54 100%); position: relative; overflow: hidden; }
.hipaa-section::after { content: ''; position: absolute; bottom: -100px; right: -100px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(0,181,204,0.08) 0%, transparent 70%); }
.hipaa-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.hipaa-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 24px 20px; display: flex; gap: 14px; align-items: flex-start; transition: all var(--dur); }
.hipaa-item:hover { background: rgba(0,181,204,0.08); border-color: rgba(0,181,204,0.22); transform: translateY(-3px); }
.hipaa-icon-box { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; background: rgba(0,181,204,0.15); display: flex; align-items: center; justify-content: center; }
.hipaa-icon-box i { font-size: 0.95rem; color: var(--teal); display: flex; align-items: center; justify-content: center; width: 0.95rem; height: 0.95rem; }
.hipaa-item h4 { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.hipaa-item p { font-size: 0.8rem; color: rgba(255,255,255,0.48); line-height: 1.6; }

/* ── CTA Banner ── */
.cta-banner { background: linear-gradient(120deg, var(--teal-dark) 0%, var(--navy) 100%); border-radius: var(--radius-xl); padding: 56px 52px; display: flex; align-items: center; justify-content: space-between; gap: 28px; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.cta-banner::after { content: ''; position: absolute; bottom: -60px; left: 40%; width: 180px; height: 180px; border-radius: 50%; background: rgba(0,181,204,0.06); }
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 { font-family: var(--font-head); font-size: clamp(1.4rem,2.8vw,2.1rem); font-weight: 800; color: #fff; margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 0.95rem; max-width: 480px; line-height: 1.65; }
.cta-banner-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; position: relative; z-index: 1; }

/* ── Contact ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 36px; align-items: start; }
.contact-info-card { background: var(--navy); border-radius: var(--radius-xl); padding: 40px 34px; position: relative; overflow: hidden; }
.contact-info-card::before { content: ''; position: absolute; bottom: -80px; right: -80px; width: 260px; height: 260px; border-radius: 50%; background: rgba(0,181,204,0.07); }
.contact-info-card h2 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.contact-info-card .sub { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 26px; }
.ci-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.ci-row:last-of-type { border-bottom: none; }
.ci-icon-box { width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0; background: rgba(0,181,204,0.14); display: flex; align-items: center; justify-content: center; }
.ci-icon-box i { font-size: 0.88rem; color: var(--teal); display: flex; align-items: center; justify-content: center; width: 0.88rem; height: 0.88rem; }
.ci-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.ci-val { font-size: 0.88rem; color: rgba(255,255,255,0.82); line-height: 1.5; }
.ci-val a { color: rgba(255,255,255,0.82); }
.ci-val a:hover { color: var(--teal); }
.contact-social { margin-top: 22px; }
.contact-social p { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn-item { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: all var(--dur); }
.social-btn-item i { display: flex; align-items: center; justify-content: center; width: 0.88rem; height: 0.88rem; }
.social-btn-item:hover { background: var(--teal); color: #fff; border-color: var(--teal); transform: translateY(-2px); }
.social-btn-item.wa:hover { background: #25D366; border-color: #25D366; }
.social-btn-item.li:hover { background: #0A66C2; border-color: #0A66C2; }
.social-btn-item.fb:hover { background: #1877F2; border-color: #1877F2; }
.social-btn-item.tw:hover { background: #1DA1F2; border-color: #1DA1F2; }
.social-btn-item.ig:hover { background: linear-gradient(45deg,#833AB4,#E1306C,#F77737); border-color: transparent; }

/* Form wrap */
.form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px 36px; box-shadow: var(--shadow); }
.form-wrap-title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.form-wrap-sub { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 26px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label { display: flex; align-items: center; gap: 4px; font-size: 0.8rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-label span.req { color: var(--teal); font-size: 0.9em; }
.form-control {
  width: 100%; padding: 11px 14px; background: var(--bg-alt);
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 0.9rem; color: var(--text); font-family: var(--font-body);
  outline: none; transition: border-color var(--dur), box-shadow var(--dur), background var(--dur);
  -webkit-appearance: none;
}
.form-control::placeholder { color: var(--gray-300); }
.form-control:focus { border-color: var(--teal); background: var(--surface); box-shadow: 0 0 0 3px rgba(0,181,204,0.1); }
.form-control.err { border-color: var(--red); }
.form-err-msg { font-size: 0.74rem; color: var(--red); margin-top: 5px; display: none; align-items: center; gap: 4px; }
.form-err-msg.show { display: flex; }
.form-err-msg i { font-size: 0.68rem; display: flex; align-items: center; justify-content: center; }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { cursor: pointer; }

/* Form status popup */
.form-status-popup {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(11,31,58,0.75); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 20px;
}
.form-status-popup.show { display: flex; }
.form-status-box {
  background: var(--surface); border-radius: var(--radius-xl);
  padding: 44px 40px; text-align: center; max-width: 460px; width: 100%;
  box-shadow: var(--shadow-xl); animation: popIn 0.3s var(--ease);
  position: relative;
}
@keyframes popIn { from{opacity:0;transform:scale(0.92)} to{opacity:1;transform:scale(1)} }
.form-status-box .status-icon { width: 68px; height: 68px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.8rem; }
.form-status-box .status-icon.success { background: rgba(16,185,129,0.12); color: var(--green); }
.form-status-box .status-icon.error { background: rgba(239,68,68,0.1); color: var(--red); }
.form-status-box .status-icon i { display: flex; align-items: center; justify-content: center; width: 1.8rem; height: 1.8rem; }
.form-status-box h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.form-status-box p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.popup-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 1.1rem; color: var(--text-muted); cursor: pointer; padding: 4px; display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; transition: all var(--dur); }
.popup-close:hover { background: var(--gray-100); color: var(--text); }
[data-theme="dark"] .popup-close:hover { background: rgba(255,255,255,0.1); }

/* Loading spinner */
.spinner { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; }
.spinner svg { animation: spin 0.7s linear infinite; }
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* ── Page Header ── */
.page-header { background: var(--navy); padding: 68px 0 52px; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(0,181,204,0.09) 0%, transparent 65%); }
.page-header::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(0,181,204,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,181,204,0.03) 1px, transparent 1px); background-size: 40px 40px; }
.page-header-inner { position: relative; z-index: 2; }
.page-header h1 { font-family: var(--font-head); font-size: clamp(1.8rem,3.8vw,2.8rem); font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.15; }
.page-header p { font-size: 1rem; color: rgba(255,255,255,0.58); max-width: 560px; line-height: 1.7; margin-top: 8px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.77rem; color: rgba(255,255,255,0.4); margin-bottom: 14px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--dur); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb i { font-size: 0.58rem; display: flex; align-items: center; justify-content: center; opacity: 0.5; }
.back-btn { display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.45); background: none; border: none; cursor: pointer; margin-bottom: 12px; transition: color var(--dur); padding: 0; }
.back-btn:hover { color: var(--teal); }
.back-btn i { width: 12px; height: 12px; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; }

/* ── Service Detail ── */
.svc-infographic { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-radius: var(--radius-xl); padding: 44px 40px; display: flex; gap: 32px; align-items: center; margin-bottom: 40px; position: relative; overflow: hidden; }
.svc-infographic::after { content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(0,181,204,0.07); }
.svc-inf-icon { width: 86px; height: 86px; border-radius: 20px; flex-shrink: 0; background: rgba(0,181,204,0.14); border: 1px solid rgba(0,181,204,0.22); display: flex; align-items: center; justify-content: center; }
.svc-inf-icon i { font-size: 2.2rem; color: var(--teal); display: flex; align-items: center; justify-content: center; width: 2.2rem; height: 2.2rem; }
.svc-infographic h2 { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.svc-infographic p { color: rgba(255,255,255,0.62); font-size: 0.95rem; line-height: 1.7; }
.hipaa-badge-sm { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,181,204,0.14); border: 1px solid rgba(0,181,204,0.28); color: var(--teal); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 12px; border-radius: 100px; margin-top: 12px; }
.hipaa-badge-sm i { width: 10px; height: 10px; display: flex; align-items: center; justify-content: center; font-size: 0.68rem; }
.svc-content-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 36px; align-items: start; }
.content-prose h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--text); margin: 28px 0 12px; }
.content-prose p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.82; margin-bottom: 14px; }
.benefits-list { display: flex; flex-direction: column; }
.benefit-item { display: flex; gap: 12px; align-items: flex-start; font-size: 0.89rem; color: var(--text-muted); padding: 11px 0; border-bottom: 1px solid var(--border); }
.benefit-item i { color: var(--teal); margin-top: 2px; flex-shrink: 0; width: 14px; height: 14px; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; }
.quote-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 30px; position: sticky; top: calc(var(--nav-h) + 16px); box-shadow: var(--shadow); }
.quote-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.quote-card p { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.6; }
.hipaa-notice { margin-top: 16px; padding: 14px 15px; background: rgba(0,181,204,0.05); border: 1px solid rgba(0,181,204,0.14); border-radius: var(--radius); }
.hipaa-notice-title { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); margin-bottom: 5px; display: flex; align-items: center; gap: 5px; }
.hipaa-notice-title i { width: 10px; height: 10px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; }
.hipaa-notice p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── About ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-img-main img { width: 100%; height: 480px; object-fit: cover; display: block; }
.about-img-badge { position: absolute; bottom: 22px; left: 22px; right: 22px; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); border-radius: var(--radius-lg); padding: 18px 20px; display: flex; gap: 18px; box-shadow: var(--shadow-lg); }
.ab-stat { text-align: center; flex: 1; }
.ab-num { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--teal); display: block; }
.ab-lbl { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 3px; }
.about-check { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.about-check-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text); }
.about-check-item i { color: var(--teal); flex-shrink: 0; width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; }

/* Mission / Values */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mission-card { border-radius: var(--radius-lg); padding: 36px 30px; position: relative; overflow: hidden; }
.mission-card.light { background: var(--bg-alt); border: 1px solid var(--border); }
.mission-card.dark { background: var(--navy); }
.mission-card h3 { font-family: var(--font-head); font-size: 1.12rem; font-weight: 700; margin-bottom: 12px; }
.mission-card.light h3 { color: var(--text); }
.mission-card.dark h3 { color: #fff; }
.mission-card p { font-size: 0.9rem; line-height: 1.75; }
.mission-card.light p { color: var(--text-muted); }
.mission-card.dark p { color: rgba(255,255,255,0.58); }
.mission-bg-icon { position: absolute; bottom: 14px; right: 18px; font-size: 2.8rem; opacity: 0.08; display: flex; align-items: center; justify-content: center; }
.mission-card.light .mission-bg-icon { color: var(--teal); }
.mission-card.dark .mission-bg-icon { color: var(--amber); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.value-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px 26px; text-align: center; position: relative; overflow: hidden; transition: all var(--dur); }
.value-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--teal), var(--amber)); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.value-icon-box { width: 62px; height: 62px; border-radius: 16px; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 6px 18px rgba(0,181,204,0.28); }
.value-icon-box i { font-size: 1.5rem; color: #fff; display: flex; align-items: center; justify-content: center; width: 1.5rem; height: 1.5rem; }
.value-card h3 { font-family: var(--font-head); font-size: 1.02rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.value-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; }

/* ── Careers ── */
.job-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 26px; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; transition: all var(--dur); margin-bottom: 14px; }
.job-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateX(4px); }
.job-title { font-family: var(--font-head); font-size: 1.08rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.job-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.job-badge { font-size: 0.72rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; display: inline-flex; align-items: center; gap: 5px; }
.job-badge i { width: 10px; height: 10px; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; }
.job-badge.type { background: rgba(0,181,204,0.1); color: var(--teal); }
.job-badge.loc { background: rgba(245,158,11,0.1); color: var(--amber-dark); }
.job-desc { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }
.job-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.job-tag { font-size: 0.7rem; background: var(--bg-alt); color: var(--gray-600); padding: 3px 9px; border-radius: 100px; border: 1px solid var(--border); }

/* ── Blog Post ── */
.post-layout { display: grid; grid-template-columns: 1fr 290px; gap: 40px; }
.post-content h2 { font-family: var(--font-head); font-size: 1.28rem; font-weight: 700; color: var(--text); margin: 28px 0 12px; }
.post-content h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 22px 0 10px; }
.post-content p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 14px; }
.post-content ul { margin-bottom: 14px; }
.post-content ul li { display: flex; gap: 8px; font-size: 0.9rem; color: var(--text-muted); padding: 5px 0; }
.post-content ul li::before { content: '→'; color: var(--teal); flex-shrink: 0; font-weight: 700; }
.post-sidebar { position: sticky; top: calc(var(--nav-h) + 20px); }
.sidebar-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; margin-bottom: 16px; }
.sidebar-box h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 14px; }
.pro-tip { background: rgba(0,181,204,0.05); border: 1px solid rgba(0,181,204,0.18); border-left: 4px solid var(--teal); border-radius: var(--radius); padding: 20px 22px; margin-top: 28px; display: flex; gap: 14px; }
.pro-tip i { color: var(--teal); font-size: 1.15rem; flex-shrink: 0; margin-top: 2px; display: flex; align-items: flex-start; justify-content: center; width: 1.15rem; }
.pro-tip strong { color: var(--text); display: block; margin-bottom: 5px; font-size: 0.9rem; }
.pro-tip p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ── Footer ── */
.footer { background: #040C18; padding: 72px 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 44px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-img { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-logo-img img { max-width: 100%; max-height: 42px; width: auto; height: auto; object-fit: contain; }
.footer-logo-text .brand { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; color: #fff; }
.footer-logo-text .brand span { color: var(--teal); }
.footer-logo-text .sub { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.28); }
.footer-brand p { font-size: 0.84rem; color: rgba(255,255,255,0.42); line-height: 1.75; margin-bottom: 20px; }
.footer-social-row { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 0.84rem; transition: all var(--dur); }
.footer-social-btn i { display: flex; align-items: center; justify-content: center; width: 0.84rem; height: 0.84rem; }
.footer-social-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); transform: translateY(-2px); }
.footer-social-btn.wa:hover { background: #25D366; border-color: #25D366; }
.footer-social-btn.li:hover { background: #0A66C2; border-color: #0A66C2; }
.footer-social-btn.fb:hover { background: #1877F2; border-color: #1877F2; }
.footer-social-btn.tw:hover { background: #1DA1F2; border-color: #1DA1F2; }
.footer-social-btn.ig:hover { background: linear-gradient(45deg,#833AB4,#E1306C,#F77737); border-color: transparent; }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 18px; }
.footer-link { display: flex; align-items: center; gap: 7px; font-size: 0.85rem; color: rgba(255,255,255,0.52); padding: 5px 0; transition: color var(--dur); }
.footer-link i { font-size: 0.6rem; color: var(--teal); display: flex; align-items: center; justify-content: center; width: 10px; height: 10px; flex-shrink: 0; }
.footer-link:hover { color: var(--teal); }
.footer-contact-row { display: flex; gap: 10px; align-items: flex-start; padding: 7px 0; }
.footer-contact-row .fc-icon { width: 28px; height: 28px; border-radius: 6px; background: rgba(0,181,204,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.footer-contact-row .fc-icon i { font-size: 0.72rem; color: var(--teal); display: flex; align-items: center; justify-content: center; width: 0.72rem; height: 0.72rem; }
.footer-contact-row span, .footer-contact-row a { font-size: 0.83rem; color: rgba(255,255,255,0.52); line-height: 1.5; }
.footer-contact-row a:hover { color: var(--teal); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.77rem; color: rgba(255,255,255,0.28); }
.footer-bottom a { font-size: 0.77rem; color: rgba(255,255,255,0.32); margin-left: 18px; transition: color var(--dur); }
.footer-bottom a:hover { color: var(--teal); }

/* ── Floating Widgets ── */
.fab-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 900; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.fab { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; border: none; cursor: pointer; transition: all var(--dur); box-shadow: var(--shadow-md); }
.fab i{
  font-size: 22px;
  line-height: 1;
}
.fab:hover { transform: scale(1.1); box-shadow: var(--shadow-lg); }
.fab-wa { background: #25D366; color: #fff; }
.fab-wa:hover { background: #1EA952; }
.fab-wa i{
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.fab-chat { background: var(--teal); color: #fff; }
.fab-chat:hover { background: var(--teal-dark); }
.scroll-ring-wrap { width: 50px; height: 50px; position: relative; display: none; cursor: pointer; }
.scroll-ring-wrap.show { display: flex; align-items: center; justify-content: center; }
.scroll-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.scroll-svg circle { fill: none; stroke: var(--teal); stroke-width: 2.5; stroke-dasharray: 141; stroke-dashoffset: 141; stroke-linecap: round; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset 0.1s linear; }
.scroll-btn-inner { width: 40px; height: 40px; border-radius: 50%; background: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; color: var(--navy); box-shadow: var(--shadow); }
.scroll-btn-inner i { display: flex; align-items: center; justify-content: center; width: 0.82rem; height: 0.82rem; }

/* Chatbot */
.chatbot-popup { position: fixed; bottom: 158px; right: 24px; z-index: 901; width: 330px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); opacity: 0; visibility: hidden; transform: translateY(10px) scale(0.97); transition: all 0.22s var(--ease); overflow: hidden; }
.chatbot-popup.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chatbot-head { background: linear-gradient(135deg, var(--teal-dark), var(--navy)); padding: 16px 18px; display: flex; align-items: center; gap: 10px; }
.chatbot-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: #fff; flex-shrink: 0; }
.chatbot-avatar i { display: flex; align-items: center; justify-content: center; width: 0.9rem; height: 0.9rem; }
.chatbot-head-info .name { font-size: 0.88rem; font-weight: 700; color: #fff; }
.chatbot-head-info .status { font-size: 0.7rem; color: rgba(255,255,255,0.62); display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.chatbot-head-info .status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; display: inline-block; flex-shrink: 0; }
.chatbot-close-btn { margin-left: auto; background: none; border: none; color: rgba(255,255,255,0.55); font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; transition: all var(--dur); }
.chatbot-close-btn:hover { color: #fff; background: rgba(255,255,255,0.1); }
.chatbot-body { padding: 18px; }
.chatbot-body > p { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }

/* Toast */
.toast-wrap { position: fixed; top: calc(var(--nav-h) + 14px); right: 20px; z-index: 2000; display: flex; flex-direction: column; gap: 8px; }
.toast { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 16px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-lg); min-width: 260px; max-width: 360px; font-size: 0.86rem; animation: toastIn 0.25s var(--ease); }
.toast i { flex-shrink: 0; width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.toast.success { border-left: 3px solid var(--green); }
.toast.success i { color: var(--green); }
.toast.error { border-left: 3px solid var(--red); }
.toast.error i { color: var(--red); }
.toast.info { border-left: 3px solid var(--teal); }
.toast.info i { color: var(--teal); }
@keyframes toastIn { from{opacity:0;transform:translateX(14px)} to{opacity:1;transform:translateX(0)} }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-20px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(20px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── Responsive ── */
@media (max-width: 1200px) {
  .container-lg { padding: 0 28px; }
  .hero-inner { padding: 72px 28px; gap: 52px; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-top .footer-col:last-child { grid-column: 1/-1; }
}
@media (max-width: 992px) {
  :root { --section-py: 72px; }
  .nav-links, .nav-phone, .nav-actions .btn-primary { display: none !important; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .problem-solution { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid, .values-grid, .testi-grid { grid-template-columns: repeat(2,1fr); }
  .hipaa-grid { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .contact-layout { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .svc-infographic { flex-direction: column; padding: 32px 26px; gap: 20px; }
  .svc-content-grid { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .cta-banner { flex-direction: column; padding: 40px 28px; gap: 24px; }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .process-connector { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-top .footer-col:last-child { grid-column: auto; }
}
@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid, .values-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .hipaa-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-proof { gap: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; gap: 14px; }
  .cta-banner-btns { width: 100%; }
  .cta-banner-btns .btn { flex: 1; }
  .spec-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .container, .container-lg { padding: 0 16px; }
  .navbar { padding: 0 16px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .spec-grid { grid-template-columns: repeat(2,1fr); }
  .hero-inner { padding: 56px 16px; }
  .form-status-box { padding: 32px 24px; }
}
@media (min-width: 1440px) {
  .hero-inner { padding: 96px 40px; }
}
@media (min-width: 1800px) {
  :root { --section-py: 120px; }
  .container { max-width: 1400px; }
  .container-lg { max-width: 1600px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .trust-track { animation: none; }
}
