/* ============================================================
   E-PRESCRIBE.NET — Redesigned Stylesheet (2025)
   Clean, light, modern — competing with the best
   ============================================================ */

/* ── Google Font import is in HTML ─────────────────────────── */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --blue:        #2563eb;
  --blue-dark:   #1d4ed8;
  --blue-deep:   #1e3a5f;
  --blue-light:  #eff6ff;
  --blue-50:     #f0f9ff;
  --blue-100:    #dbeafe;
  --teal:        #0891b2;
  --teal-light:  #e0f2fe;
  --green:       #16a34a;
  --green-dark:  #15803d;
  --green-light: #dcfce7;
  --orange:      #ea580c;
  --orange-light:#fff7ed;
  --purple:      #7c3aed;
  --purple-light:#f5f3ff;
  --rose:        #e11d48;
  --rose-light:  #fff1f2;
  --amber:       #d97706;
  --amber-light: #fffbeb;
  --text:        #0f172a;
  --text-2:      #334155;
  --text-3:      #64748b;
  --text-4:      #94a3b8;
  --border:      #e2e8f0;
  --border-2:    #f1f5f9;
  --bg:          #f8fafc;
  --bg-blue:     #f0f9ff;
  --white:       #ffffff;
  --shadow-xs: 0 1px 2px rgba(15,23,42,.05);
  --shadow-sm: 0 1px 4px rgba(15,23,42,.07), 0 1px 2px rgba(15,23,42,.05);
  --shadow:    0 4px 12px rgba(15,23,42,.08), 0 2px 4px rgba(15,23,42,.05);
  --shadow-md: 0 8px 24px rgba(15,23,42,.1),  0 2px 6px rgba(15,23,42,.05);
  --shadow-lg: 0 16px 48px rgba(15,23,42,.12), 0 4px 12px rgba(15,23,42,.06);
  --shadow-xl: 0 24px 64px rgba(15,23,42,.15), 0 8px 20px rgba(15,23,42,.08);
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl:32px;
  --ease: .2s cubic-bezier(.4,0,.2,1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1180px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; }

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4 { font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }
.eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--blue);
  background: var(--blue-light); padding: .3rem .75rem;
  border-radius: 100px; margin-bottom: 1rem;
}
.eyebrow.green { color: var(--green); background: var(--green-light); }
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--text); margin-bottom: .875rem;
}
.section-lead {
  font-size: 1.05rem; color: var(--text-3);
  max-width: 580px; line-height: 1.8;
}
.gradient-text {
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-lead { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.75rem; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem; line-height: 1;
  transition: all var(--ease); border: 2px solid transparent;
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--green); color: var(--white); border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark); border-color: var(--green-dark);
  transform: translateY(-1px); box-shadow: 0 6px 20px rgba(22,163,74,.35);
}
.btn-blue {
  background: var(--blue); color: var(--white); border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-dark); border-color: var(--blue-dark);
  transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.35);
}
.btn-ghost {
  background: rgba(255,255,255,.15); color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.7);
}
.btn-outline-dark {
  background: transparent; color: var(--text); border-color: var(--border);
}
.btn-outline-dark:hover {
  background: var(--bg); border-color: var(--text-3);
}
.btn-outline {
  background: transparent; color: var(--blue); border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.1rem; font-size: .82rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-2);
  transition: all var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 1px 16px rgba(15,23,42,.08);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; height: 66px; padding: 0 1.5rem;
}
.nav-logo {
  display: flex; align-items: center;
  font-size: 1.25rem; font-weight: 800; letter-spacing: -.03em;
  color: var(--blue-deep);
}
.nav-logo-rx { color: var(--blue); }
.nav-logo-dot { color: var(--teal); }
.nav-links {
  display: flex; align-items: center; gap: .125rem;
}
.nav-links a {
  font-size: .875rem; font-weight: 500; color: var(--text-2);
  padding: .5rem .875rem; border-radius: var(--radius);
  transition: all var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--blue); background: var(--blue-light);
}
.nav-cta { display: flex; align-items: center; gap: .75rem; }
.nav-login {
  font-size: .82rem; font-weight: 500; color: var(--text-3);
  padding: .4rem .75rem; border-radius: var(--radius);
  border: 1px solid var(--border); transition: all var(--ease);
}
.nav-login:hover { color: var(--text); border-color: var(--text-3); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: .5rem;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text-2); border-radius: 2px; transition: all var(--ease);
}
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--border-2);
  padding: .75rem 1.5rem 1.25rem; gap: .25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--text-2); padding: .75rem 1rem;
  border-radius: var(--radius); font-weight: 500; font-size: .9rem;
  transition: all var(--ease);
}
.nav-mobile a:hover { color: var(--blue); background: var(--blue-light); }
.nav-mobile .btn-primary { width: 100%; justify-content: center; margin-top: .5rem; }
.nav-mobile-divider { height: 1px; background: var(--border); margin: .5rem 0; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 40%, #0891b2 80%, #06b6d4 100%);
  padding: 120px 1.5rem 80px; position: relative; overflow: hidden;
}
/* decorative circles */
.hero::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,.05);
  top: -200px; right: -150px; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.04);
  bottom: -150px; left: -100px; pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 4rem; align-items: center; position: relative; z-index: 1;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  color: #e0f2fe; padding: .375rem .875rem; border-radius: 100px;
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 1.5rem;
}
.hero-pill-dot {
  width: 7px; height: 7px; background: #4ade80;
  border-radius: 50%; animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity:1; } 50% { opacity:.4; }
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  color: var(--white); line-height: 1.1;
  margin-bottom: 1.375rem; letter-spacing: -.03em;
}
.hero h1 strong { font-weight: 900; }
.hero-lead {
  font-size: 1.1rem; color: rgba(255,255,255,.82);
  line-height: 1.8; margin-bottom: 2.5rem; max-width: 500px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: .875rem; margin-bottom: 3rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
}
.hero-trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.75);
}
.hero-trust-item svg { color: #4ade80; }

/* Hero dashboard card */
.hero-card-wrap { display: flex; justify-content: flex-end; align-items: center; }
.rx-dashboard {
  background: var(--white);
  border-radius: var(--radius-xl); width: 100%; max-width: 360px;
  box-shadow: var(--shadow-xl); overflow: hidden;
}
.rx-db-header {
  background: linear-gradient(135deg, #1e3a5f, #1d4ed8);
  padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: .75rem;
}
.rx-db-avatar {
  width: 38px; height: 38px; background: rgba(255,255,255,.15);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.rx-db-name { color: var(--white); font-size: .875rem; font-weight: 600; }
.rx-db-cert { color: #4ade80; font-size: .7rem; margin-top: .1rem; }
.rx-db-body { padding: 1.25rem 1.5rem; }
.rx-db-label {
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-4); margin-bottom: .875rem;
}
.rx-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem; border-radius: var(--radius); border: 1px solid var(--border);
  margin-bottom: .5rem; background: var(--white);
  transition: all var(--ease);
}
.rx-row:hover { border-color: var(--blue-100); background: var(--blue-50); }
.rx-drug { font-size: .875rem; font-weight: 600; color: var(--text); }
.rx-dose { font-size: .72rem; color: var(--text-3); margin-top: .1rem; }
.rx-badge {
  padding: .22rem .6rem; border-radius: 100px;
  font-size: .68rem; font-weight: 700;
}
.rx-badge.sent    { background: var(--green-light); color: var(--green); }
.rx-badge.pending { background: var(--amber-light);  color: var(--amber); }
.rx-db-footer {
  padding: 1rem 1.5rem; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg);
}
.cert-chip {
  display: flex; align-items: center; gap: .375rem;
  font-size: .7rem; font-weight: 600; color: var(--text-3);
}
.cert-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; }
.epcs-chip {
  background: var(--blue-light); color: var(--blue);
  font-size: .7rem; font-weight: 700; padding: .2rem .6rem; border-radius: 100px;
}

/* ── Stats bar ───────────────────────────────────────────────── */
.stats-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
}
.stats-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center; gap: 1.5rem 3rem;
}
.stat-item {
  display: flex; align-items: center; gap: .75rem;
}
.stat-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stat-icon.blue   { background: var(--blue-light); color: var(--blue); }
.stat-icon.green  { background: var(--green-light); color: var(--green); }
.stat-icon.teal   { background: var(--teal-light); color: var(--teal); }
.stat-num  { font-size: 1.1rem; font-weight: 800; color: var(--text); line-height: 1; }
.stat-label{ font-size: .75rem; color: var(--text-3); margin-top: .1rem; }
.stat-sep { width: 1px; height: 36px; background: var(--border); }

/* ── Section: Features ─────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 1.25rem;
}
.feat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: all .3s ease; position: relative; overflow: hidden;
}
.feat-card:hover {
  border-color: var(--blue-100);
  box-shadow: var(--shadow-md); transform: translateY(-3px);
}
.feat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.125rem; flex-shrink: 0;
}
.feat-card h3 { font-size: 1rem; margin-bottom: .5rem; color: var(--text); }
.feat-card p  { font-size: .875rem; color: var(--text-3); line-height: 1.7; }

/* ── Section: Why Us ────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.benefits { display: flex; flex-direction: column; gap: 1.375rem; }
.benefit-row {
  display: flex; align-items: flex-start; gap: .875rem;
  padding: 1.25rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: var(--white);
  transition: all var(--ease);
}
.benefit-row:hover {
  border-color: var(--blue-100); box-shadow: var(--shadow-sm);
}
.benefit-check {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.benefit-row h4 { font-size: .925rem; margin-bottom: .2rem; color: var(--text); }
.benefit-row p  { font-size: .825rem; color: var(--text-3); line-height: 1.65; }

/* Why visual */
.why-visual {
  display: flex; flex-direction: column; gap: 1.25rem;
}
.why-price-card {
  background: linear-gradient(135deg, #1d4ed8, #0891b2);
  border-radius: var(--radius-xl); padding: 2.5rem;
  color: var(--white); text-align: center; box-shadow: var(--shadow-lg);
}
.why-price-label { font-size: .8rem; color: rgba(255,255,255,.7); margin-bottom: .75rem; }
.why-price-amount {
  font-size: 4rem; font-weight: 900; line-height: 1; margin-bottom: .375rem;
}
.why-price-amount sup { font-size: 1.75rem; vertical-align: super; }
.why-price-sub { font-size: .875rem; color: rgba(255,255,255,.7); margin-bottom: 1.5rem; }
.why-price-include {
  background: rgba(255,255,255,.12); border-radius: var(--radius);
  padding: .75rem 1rem; font-size: .82rem; color: rgba(255,255,255,.85);
}
.why-chips { display: flex; gap: .875rem; }
.why-chip {
  flex: 1; background: var(--white); border-radius: var(--radius-lg);
  padding: 1.125rem; text-align: center; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.why-chip-icon { font-size: 1.5rem; margin-bottom: .375rem; }
.why-chip-label { font-size: .75rem; font-weight: 600; color: var(--text-2); }

/* ── Section: How It Works ─────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 2.5rem; left: calc(100%/6 + 1.5rem); right: calc(100%/6 + 1.5rem);
  height: 2px; background: linear-gradient(90deg, var(--blue-100), var(--blue), var(--blue-100));
}
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800;
  margin: 0 auto 1.5rem; position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
}
.step h3 { font-size: 1.05rem; color: var(--text); margin-bottom: .625rem; }
.step p  { font-size: .875rem; color: var(--text-3); line-height: 1.75; }

/* ── Section: Pricing ──────────────────────────────────────── */
.pricing-wrap { max-width: 960px; margin: 0 auto; }
.pricing-plans { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1rem; }
.pricing-bulk-row { display: flex; justify-content: flex-end; }
.pricing-bulk-card {
  background: var(--blue-light); border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-xl); padding: 1.25rem 1.75rem;
  display: flex; align-items: center; gap: 1.5rem;
  max-width: 420px; width: 100%;
}
.pricing-bulk-icon { font-size: 1.75rem; flex-shrink: 0; }
.pricing-bulk-content h4 {
  font-size: 1rem; font-weight: 700; color: var(--text-1); margin-bottom: .2rem;
}
.pricing-bulk-content p { font-size: .85rem; color: var(--text-3); margin: 0; }
.pricing-bulk-content a {
  font-size: .85rem; font-weight: 700; color: var(--blue);
  text-decoration: underline;
}
.pricing-card {
  background: var(--white); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}
.pricing-head {
  background: linear-gradient(135deg, #1e3a5f, #1d4ed8);
  padding: 2.5rem; text-align: center; color: var(--white);
}
.pricing-badge {
  background: var(--green); color: var(--white);
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; padding: .25rem .75rem; border-radius: 100px;
  display: inline-block; margin-bottom: 1.5rem;
}
.pricing-amount {
  font-size: 4.5rem; font-weight: 900; line-height: 1; margin-bottom: .375rem;
}
.pricing-amount sup { font-size: 2rem; vertical-align: super; }
.pricing-amount sub { font-size: 1rem; font-weight: 400; opacity: .7; }
.pricing-scripts { font-size: .875rem; opacity: .75; }
.pricing-body { padding: 2rem 2.5rem; }
.pricing-list { margin-bottom: 1.75rem; }
.pricing-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .625rem 0; border-bottom: 1px solid var(--border-2);
  font-size: .875rem; color: var(--text-2); line-height: 1.55;
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li svg { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.pricing-note {
  background: var(--amber-light); border-left: 3px solid var(--amber);
  padding: .875rem 1rem; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .82rem; color: #78350f; line-height: 1.65; margin-bottom: 1.75rem;
}
.pricing-note strong { color: #451a03; }
.pricing-sub { text-align: center; font-size: .8rem; color: var(--text-3); margin-top: .875rem; }
.pricing-sub a { color: var(--blue); font-weight: 600; }

/* ── Compare table ─────────────────────────────────────────── */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  background: var(--blue-deep); color: var(--white);
  padding: 1rem 1.25rem; text-align: left;
  font-size: .82rem; font-weight: 600; white-space: nowrap;
}
.compare-table th.hl { background: var(--blue); }
.compare-table td {
  padding: .875rem 1.25rem; font-size: .875rem;
  color: var(--text-2); border-bottom: 1px solid var(--border-2);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--bg); }
.compare-table td.hl { background: var(--blue-50); font-weight: 600; color: var(--blue-dark); }
.yes { color: var(--green); font-weight: 700; }
.no  { color: var(--text-4); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-2); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.375rem 0; width: 100%; text-align: left;
  background: none; border: none; font-weight: 600;
  font-size: .975rem; color: var(--text); transition: color var(--ease);
}
.faq-q:hover { color: var(--blue); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--border); color: var(--text-3);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--ease);
}
.faq-item.open .faq-icon { background: var(--blue); color: var(--white); border-color: var(--blue); transform: rotate(45deg); }
.faq-a { font-size: .875rem; color: var(--text-3); line-height: 1.8; padding-bottom: 1.375rem; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── CTA ─────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #1d4ed8 0%, #0891b2 100%);
  padding: 5rem 1.5rem; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,.05);
  top: -200px; right: -100px; pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.6rem); color: var(--white);
  margin-bottom: .875rem; position: relative;
}
.cta-section p {
  font-size: 1.05rem; color: rgba(255,255,255,.75);
  max-width: 500px; margin: 0 auto 2.25rem; position: relative;
}
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; position: relative; }
.cta-tel { margin-top: 1.25rem; font-size: .875rem; color: rgba(255,255,255,.65); }
.cta-tel a { color: var(--white); font-weight: 600; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: #0f172a; color: rgba(255,255,255,.6); padding: 4rem 1.5rem 2rem; }
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo {
  font-size: 1.25rem; font-weight: 800; color: var(--white);
  display: inline-block; margin-bottom: .875rem; letter-spacing: -.03em;
}
.footer-logo span { color: #60a5fa; }
.footer-brand p { font-size: .85rem; line-height: 1.8; margin-bottom: 1.25rem; max-width: 300px; }
.footer-cert {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: .5rem .875rem;
  font-size: .75rem; color: rgba(255,255,255,.7);
}
.footer-cert-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; }
.footer-col h4 {
  font-size: .75rem; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.125rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color var(--ease); }
.footer-col ul li a:hover { color: var(--white); }
.footer-phone { font-size: 1.05rem; font-weight: 700; color: var(--white); display: block; margin-bottom: .5rem; }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.07);
  display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: space-between; font-size: .78rem; color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color var(--ease); }
.footer-bottom a:hover { color: rgba(255,255,255,.75); }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #1d4ed8 0%, #0891b2 100%);
  padding: 110px 1.5rem 60px; text-align: center;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; font-size: .78rem; color: rgba(255,255,255,.55);
  margin-bottom: 1.125rem;
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,.35); }
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--white); margin-bottom: .875rem;
}
.page-hero p { font-size: 1rem; color: rgba(255,255,255,.72); max-width: 580px; margin: 0 auto; }

/* ── About page ─────────────────────────────────────────────── */
/* Company/About Us section */
.about-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-intro-left h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--text); margin-bottom: 1.125rem;
}
.about-intro-left p { font-size: 1rem; color: var(--text-3); line-height: 1.85; margin-bottom: 1rem; }
.about-intro-left blockquote {
  font-size: 1.05rem; font-style: italic;
  border-left: 3px solid var(--blue); padding-left: 1.25rem;
  color: var(--text-2); margin: 1.75rem 0; line-height: 1.7;
}
.about-intro-right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.about-stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem; text-align: center;
  box-shadow: var(--shadow-sm); transition: all var(--ease);
}
.about-stat-card:first-child {
  grid-column: 1/-1; background: linear-gradient(135deg, #1d4ed8, #0891b2);
  color: var(--white);
}
.about-stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.about-stat-num  { font-size: 2.25rem; font-weight: 900; line-height: 1; margin-bottom: .25rem; }
.about-stat-label{ font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; opacity: .75; }

/* Services grid */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: all .3s ease; box-shadow: var(--shadow-sm);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card-top {
  padding: 2rem 2rem 1.5rem; display: flex; flex-direction: column;
}
.service-card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card h3 { font-size: 1.15rem; color: var(--text); margin-bottom: .75rem; }
.service-card ul { display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.service-card ul li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .875rem; color: var(--text-3); line-height: 1.55;
}
.service-card ul li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.service-card-footer {
  padding: 1.125rem 2rem; border-top: 1px solid var(--border-2); background: var(--bg);
}
.service-card-footer a {
  font-size: .875rem; font-weight: 600; color: var(--blue);
  display: flex; align-items: center; gap: .375rem;
  transition: gap var(--ease);
}
.service-card-footer a:hover { gap: .625rem; }

/* ── Contact page ───────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start;
}
.contact-info-card {
  background: linear-gradient(160deg, #1e3a5f, #1d4ed8);
  border-radius: var(--radius-xl); padding: 2.5rem; color: var(--white);
}
.contact-info-card h2 { color: var(--white); font-size: 1.6rem; margin-bottom: .5rem; }
.contact-info-card > p { color: rgba(255,255,255,.7); margin-bottom: 2.5rem; font-size: .9rem; }
.contact-method { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
.contact-method-icon {
  width: 44px; height: 44px; background: rgba(255,255,255,.1);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #93c5fd;
}
.contact-method h4 { color: var(--white); font-size: .875rem; margin-bottom: .25rem; }
.contact-method p, .contact-method a { color: rgba(255,255,255,.65); font-size: .85rem; }
.contact-method a:hover { color: var(--white); }
.contact-info-note {
  margin-top: 2.25rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.12);
  font-size: .82rem; color: rgba(255,255,255,.5);
}
.contact-info-note a { color: rgba(255,255,255,.65); }
.contact-info-note a:hover { color: var(--white); }

/* ── Forms ─────────────────────────────────────────────────── */
.form-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--border); padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-card h2 { font-size: 1.4rem; color: var(--text); margin-bottom: .375rem; }
.form-card > p { font-size: .875rem; color: var(--text-3); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.125rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
  display: block; font-size: .825rem; font-weight: 600;
  color: var(--text-2); margin-bottom: .375rem;
}
.form-group label .req { color: var(--rose); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .875rem; font-family: var(--font);
  color: var(--text); background: var(--white);
  transition: all var(--ease); outline: none;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-4); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.form-section-hd {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--blue); margin: 1.75rem 0 1rem;
  padding-bottom: .5rem; border-bottom: 1px solid var(--border);
}
.form-submit {
  width: 100%; padding: 1rem; background: var(--green);
  color: var(--white); border: none; border-radius: var(--radius);
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all var(--ease); font-family: var(--font);
}
.form-submit:hover {
  background: var(--green-dark); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(22,163,74,.35);
}
.form-message { padding: 1rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: .9rem; }
.form-message-success { background: #d1fae5; color: #065f46; }
.form-message-error { background: #fef2f2; color: #b91c1c; }
.form-note { font-size: .78rem; color: var(--text-4); text-align: center; margin-top: .875rem; line-height: 1.6; }
.form-note a { color: var(--blue); }
.form-alert {
  background: var(--blue-50); border: 1px solid var(--blue-100);
  border-radius: var(--radius); padding: .875rem 1.125rem;
  font-size: .85rem; color: var(--blue-dark); margin-bottom: 2rem; line-height: 1.65;
}
.form-alert strong { color: var(--blue-dark); }

/* ── Get Started page ──────────────────────────────────────── */
.gs-features {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-bottom: 3rem;
}
.gs-feat {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem; text-align: center;
  box-shadow: var(--shadow-sm);
}
.gs-feat-icon {
  width: 48px; height: 48px; background: var(--blue-light); color: var(--blue);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto .875rem;
}
.gs-feat h4 { font-size: .9rem; color: var(--text); margin-bottom: .25rem; }
.gs-feat p  { font-size: .8rem; color: var(--text-3); }
.pricing-recap {
  text-align: center; padding: 1.25rem; background: var(--blue-50);
  border: 1px solid var(--blue-100); border-radius: var(--radius-lg);
  margin-bottom: 3rem;
}
.pricing-recap strong { color: var(--blue); font-size: 1.35rem; }
.pricing-recap p { font-size: .82rem; color: var(--text-3); margin-top: .25rem; }

/* ── Patient list ──────────────────────────────────────────── */
.patient-layout { max-width: 900px; margin: 0 auto; }
.instructions-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 2rem;
}
.instructions-box h3 { font-size: 1rem; color: var(--text); margin-bottom: .625rem; }
.instructions-box p { font-size: .875rem; color: var(--text-3); line-height: 1.75; }
.req-legend { display: flex; align-items: center; gap: .5rem; margin-top: 1rem; font-size: .8rem; color: var(--text-3); }
.req-dot-red { width: 10px; height: 10px; background: var(--rose); border-radius: 50%; }
.csv-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.csv-table { width: 100%; border-collapse: collapse; }
.csv-table th {
  background: var(--blue-deep); color: var(--white);
  padding: .875rem 1.25rem; text-align: left; font-size: .8rem; font-weight: 600;
}
.csv-table td { padding: .7rem 1.25rem; font-size: .82rem; border-bottom: 1px solid var(--border-2); color: var(--text-2); }
.csv-table tr:last-child td { border-bottom: none; }
.csv-table tr:nth-child(even) td { background: var(--bg); }
.csv-table td.req-field { color: var(--rose); font-weight: 700; }

/* ── Resource links (contact page) ────────────────────────── */
.resource-link {
  display: flex; align-items: center; gap: .75rem;
  padding: .875rem 1.125rem; border: 1px solid var(--border);
  border-radius: var(--radius-lg); font-size: .875rem; color: var(--text-2);
  background: var(--white); transition: all var(--ease);
}
.resource-link:hover { border-color: var(--blue); color: var(--blue); box-shadow: var(--shadow-sm); }
.resource-link svg { color: var(--blue); flex-shrink: 0; }

/* ── Utilities ─────────────────────────────────────────────── */
.bg-white   { background: var(--white); }
.bg-light   { background: var(--bg); }
.bg-blue-50 { background: var(--bg-blue); }
.text-center { text-align: center; }

/* ── Navbar logo image ─────────────────────────────────────── */
.nav-logo-img-wrap {
  display: flex; align-items: center; transition: opacity var(--ease);
}
.nav-logo:hover .nav-logo-img-wrap { opacity: .8; }
.nav-logo-img { height: 52px; display: block; }

/* ── Nav phone ─────────────────────────────────────────────── */
.nav-phone {
  font-size: .78rem; font-weight: 700; color: var(--blue);
  padding: .4rem .7rem; border-radius: var(--radius);
  border: 1px solid var(--blue-100); background: var(--blue-light);
  white-space: nowrap; transition: all var(--ease);
  display: inline-flex; align-items: center; gap: .3rem;
}
.nav-phone:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ── Hero tagline (subtitle below h1) ──────────────────────── */
.hero-tagline {
  font-size: clamp(.95rem, 1.6vw, 1.15rem); color: rgba(255,255,255,.72);
  font-weight: 500; margin-bottom: 1.75rem; letter-spacing: -.01em;
}

/* ── Hero photo (replaces dashboard card) ──────────────────── */
.hero-photo-wrap {
  display: flex; justify-content: flex-end; align-items: flex-end;
  position: relative;
}
.hero-photo {
  width: 100%; max-width: 420px; height: 480px;
  object-fit: cover; object-position: center top;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(0,0,0,.35), 0 8px 24px rgba(0,0,0,.2);
  display: block;
}

/* ── Hero h1 — tighter, fits one line ──────────────────────── */
.hero h1 { font-size: clamp(1.7rem, 3.8vw, 2.85rem); }

/* ── Feat icon — updated, larger, more modern ───────────────── */
.feat-icon {
  width: 60px; height: 60px; border-radius: 16px;
  font-size: 1.75rem;
}

/* ── Why us v2 — full screenshot + feature chips ───────────── */
.why-screen-full { max-width: 960px; margin: 0 auto 2.5rem; }
.why-feat-chips {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 1rem; margin-bottom: 4rem;
}
.why-feat-chip {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem; text-align: center;
  transition: all .3s ease;
}
.why-feat-chip:hover {
  border-color: var(--blue-100); box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-feat-chip-num {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800; margin: 0 auto .75rem;
}
.why-feat-chip h4 { font-size: .82rem; color: var(--text); margin-bottom: .3rem; line-height: 1.3; }
.why-feat-chip p  { font-size: .76rem; color: var(--text-3); line-height: 1.6; }

/* (keep old classes for potential fallback) */
.why-showcase-wrap { display: flex; flex-direction: column; gap: 4rem; }
.why-showcase { display: grid; grid-template-columns: 1fr 1.45fr; gap: 4rem; align-items: center; }
.why-feat-list { display: flex; flex-direction: column; gap: 1rem; }
.why-feat-item { display:flex;align-items:flex-start;gap:.875rem;padding:1.125rem 1.25rem;background:var(--white);border-radius:var(--radius-lg);border:1px solid var(--border);transition:all var(--ease); }
.why-feat-item:hover { border-color:var(--blue-100);box-shadow:var(--shadow-sm); }
.why-feat-num { min-width:32px;height:32px;background:linear-gradient(135deg,var(--blue),var(--teal));color:var(--white);border-radius:9px;display:flex;align-items:center;justify-content:center;font-size:.8rem;font-weight:800;flex-shrink:0; }
.why-feat-item h4 { font-size:.9rem;margin-bottom:.2rem;color:var(--text); }
.why-feat-item p  { font-size:.82rem;color:var(--text-3);line-height:1.65; }

/* Browser mockup */
.browser-mockup {
  background: #1e293b; border-radius: 14px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.22), 0 4px 16px rgba(0,0,0,.1);
}
.browser-bar {
  background: #2d3748; padding: 10px 16px;
  display: flex; align-items: center; gap: 7px;
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.browser-dot-r { background: #fc605c; }
.browser-dot-y { background: #fdbc40; }
.browser-dot-g { background: #34c749; }
.browser-url {
  flex: 1; background: #1e293b; border-radius: 6px;
  padding: 3px 10px; font-size: .68rem; color: #94a3b8; margin-left: 6px;
}
.browser-img img { width: 100%; display: block; }

/* Mobile showcase — dark gradient, richer design */
.mobile-showcase {
  display: grid; grid-template-columns: 300px 1fr 200px;
  gap: 3rem; align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 55%, #0891b2 100%);
  border-radius: var(--radius-2xl); padding: 3rem;
}
.mobile-showcase-img img {
  max-height: 520px; object-fit: contain; width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.3));
}
.mobile-showcase-text h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: var(--white); margin-bottom: .875rem;
}
.mobile-showcase-text p {
  font-size: 1.05rem; color: rgba(255,255,255,.8); line-height: 1.85; margin-bottom: 2rem;
}
.ms-doc-photo {
  width: 100%; border-radius: var(--radius-xl); object-fit: cover;
  object-position: center top; max-height: 360px;
  box-shadow: 0 20px 40px rgba(0,0,0,.35); display: block;
}
.ms-stats { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.ms-stat {
  background: rgba(255,255,255,.12); border-radius: var(--radius-lg);
  padding: .875rem 1.25rem; text-align: center;
  border: 1px solid rgba(255,255,255,.2); min-width: 100px;
  backdrop-filter: blur(8px);
}
.ms-stat-icon { font-size: 1.5rem; margin-bottom: .3rem; }
.ms-stat-label { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.9); }

/* ── How it works with photo ───────────────────────────────── */
.how-intro-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; margin-bottom: 3.5rem;
}
.how-intro-row img {
  width: 100%; border-radius: var(--radius-xl);
  object-fit: cover; object-position: center 15%;
  max-height: 400px; box-shadow: var(--shadow-lg); display: block;
}

/* ── Video section ─────────────────────────────────────────── */
.video-wrap {
  max-width: 900px; margin: 0 auto;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative; padding-bottom: 56.25%; height: 0;
}
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ── Compare table improved ────────────────────────────────── */
.compare-table td.yes { background: #f0fdf4; }
.compare-table td.no  { background: #fafafa; }
.compare-table td.hl  { background: #dcfce7 !important; color: var(--green-dark) !important; }
.compare-table th.hl  { background: var(--green) !important; color: var(--white) !important; }
.hl-best {
  display: block; font-size: .63rem; font-weight: 600; opacity: .88;
  text-transform: uppercase; letter-spacing: .07em; margin-top: .3rem;
}

/* ── CTA tel more spacing ──────────────────────────────────── */
.cta-tel { margin-top: 2.25rem; }

/* ── Page hero p larger ────────────────────────────────────── */
.page-hero p { font-size: 1.15rem; }

/* ── Powered by one line, smaller ─────────────────────────── */
.powered-by { white-space: nowrap; font-size: .66rem; margin-top: .75rem; }

/* ── GS features: larger cards ─────────────────────────────── */
.gs-feat { padding: 2rem; text-align: left; }
.gs-feat-icon {
  width: 64px; height: 64px; background: var(--blue-light); color: var(--blue);
  border-radius: 16px; font-size: 2rem; display: flex; align-items: center;
  justify-content: center; margin: 0 0 1rem;
}
.gs-feat h4 { font-size: 1.1rem; margin-bottom: .5rem; color: var(--text); }
.gs-feat p  { font-size: .9rem; color: var(--text-3); line-height: 1.7; }

/* ── Service card partner logos ────────────────────────────── */
.service-partner-logo {
  height: 44px; object-fit: contain; object-position: left center;
  display: block; margin-bottom: 1rem;
}
.service-partner-logo.logo-openemr { height: 60px; }

/* ── Footer Surescripts trademark notice ───────────────────── */
.footer-trademark {
  font-size: .68rem; color: rgba(255,255,255,.42); margin-top: .3rem; line-height: 1.4;
}

/* ── About page: small powered-by label ────────────────────── */
.about-powered-by {
  font-size: .8rem; color: var(--text-3); margin-bottom: 1.5rem;
  white-space: nowrap;
}
.about-powered-by a { color: var(--text-2); font-weight: 600; }

/* ── Services section: colored top borders, bigger icons ────── */
.service-card:nth-child(1) .service-card-top { border-top: 4px solid var(--blue); }
.service-card:nth-child(2) .service-card-top { border-top: 4px solid var(--green); }
.service-card:nth-child(3) .service-card-top { border-top: 4px solid var(--purple); }
.service-card-icon { font-size: 2.25rem; }

/* ── Footer logo image ─────────────────────────────────────── */
.footer-logo-box {
  display: inline-block; margin-bottom: .875rem;
}
.footer-logo-box img { height: 52px; display: block; }
.powered-by { margin-top: .875rem; font-size: .78rem; color: rgba(255,255,255,.38); }
.powered-by a { color: rgba(255,255,255,.52); font-weight: 600; transition: color var(--ease); }
.powered-by a:hover { color: rgba(255,255,255,.85); }

/* Doctor photo strips used on inner pages */
.doc-photo-strip {
  width: 100%; max-height: 340px; object-fit: cover;
  object-position: center 20%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); display: block;
}
.doc-photo-float {
  float: right; width: 280px; margin: 0 0 1.5rem 2.5rem;
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-intro-right { grid-template-columns: repeat(4,1fr); }
  .about-intro-right .about-stat-card:first-child { grid-column: 1/-1; }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .mobile-showcase { grid-template-columns: 240px 1fr; gap: 2rem; }
  .ms-doc-photo { display: none; }
  .how-intro-row { grid-template-columns: 1fr; gap: 2rem; }
  .how-intro-row img { max-height: 280px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-lead { max-width: none; }
  .hero-photo-wrap { justify-content: center; }
  .hero-photo { max-width: 320px; height: 360px; }
  .nav-phone { display: none; }
  .pricing-bulk-card { flex-direction: column; text-align: center; gap: .75rem; }
  .why-feat-chips { grid-template-columns: repeat(2,1fr); }
  .mobile-showcase { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .mobile-showcase-img { display: flex; justify-content: center; }
  .mobile-showcase-img img { max-height: 260px; }
  .ms-stats { justify-content: center; }
  .ms-doc-photo { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps-grid::before { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .gs-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-intro-right { grid-template-columns: 1fr 1fr; }
  .about-intro-right .about-stat-card:first-child { grid-column: 1/-1; }
  .stats-bar-inner { gap: 1rem 2rem; }
  .stat-sep { display: none; }
}
@media (max-width: 700px) {
  .pricing-plans { grid-template-columns: 1fr; }
  .pricing-bulk-row { justify-content: center; }
  .pricing-bulk-card { max-width: 100%; }
}
@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .hero { padding: 105px 1.25rem 60px; }
  .pricing-body { padding: 1.5rem; }
  .pricing-head { padding: 2rem; }
  .contact-info-card { padding: 2rem; }
  .form-card { padding: 1.75rem; }
  .about-intro-right { grid-template-columns: 1fr 1fr; }
}
