:root {
  --navy-950: #061a2f;
  --navy-900: #09233f;
  --navy-800: #103554;
  --navy-700: #174a69;
  --teal-600: #07998d;
  --teal-500: #10b7a5;
  --teal-100: #dff8f4;
  --blue-500: #2f80ed;
  --ink: #122536;
  --muted: #5e7182;
  --line: #dce7eb;
  --surface: #f5faf9;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 35, 63, .12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 14px; color: white; background: var(--navy-950); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; border-bottom: 1px solid transparent; transition: .25s ease; }
.site-header.scrolled { background: rgba(255,255,255,.94); border-color: rgba(16,53,84,.09); box-shadow: 0 8px 30px rgba(8,35,63,.06); backdrop-filter: blur(14px); }
.header-inner { height: 86px; display: flex; align-items: center; justify-content: space-between; }
.brand { width: 270px; }
.primary-navigation { display: flex; align-items: center; gap: 32px; font-weight: 650; color: #294157; font-size: 14px; }
.primary-navigation > a:not(.button) { position: relative; }
.primary-navigation > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--teal-500); transition: right .2s ease; }
.primary-navigation > a:hover::after { right: 0; }
.menu-button { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--surface); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-button span { width: 20px; height: 2px; background: var(--navy-900); transition: .2s ease; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 54px; padding: 0 24px; border: 1px solid var(--navy-900); border-radius: 10px; color: white; background: var(--navy-900); box-shadow: 0 10px 25px rgba(9,35,63,.14); font-weight: 750; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--navy-800); box-shadow: 0 14px 30px rgba(9,35,63,.2); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid rgba(47,128,237,.3); outline-offset: 3px; }
.button-small { min-height: 44px; padding: 0 18px; }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: var(--navy-900); font-weight: 750; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(3px); }

.hero { position: relative; min-height: 820px; padding: 158px 0 94px; overflow: hidden; background: linear-gradient(135deg, #fbfefd 0%, #f0f9f7 52%, #eef7fb 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .36; background-image: linear-gradient(rgba(9,35,63,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(9,35,63,.035) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to right, black, transparent 85%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-glow-one { width: 500px; height: 500px; right: -180px; top: 20px; background: radial-gradient(circle, rgba(16,183,165,.2), transparent 68%); }
.hero-glow-two { width: 400px; height: 400px; left: -180px; bottom: -220px; background: radial-gradient(circle, rgba(47,128,237,.12), transparent 68%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; gap: 70px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--teal-600); font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow span { width: 26px; height: 2px; background: currentColor; }
.hero h1 { max-width: 760px; margin: 0; color: var(--navy-950); font-size: clamp(46px, 5vw, 68px); line-height: 1.04; letter-spacing: -.055em; }
.hero h1 em { color: var(--teal-600); font-style: normal; }
.hero-lead { max-width: 650px; margin: 28px 0 32px; color: #536a7a; font-size: 19px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 18px 24px; padding: 0; margin: 34px 0 0; list-style: none; color: #405769; font-size: 13px; font-weight: 700; }
.trust-list span { display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 6px; border-radius: 50%; color: var(--teal-600); background: var(--teal-100); }

.product-visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.product-visual::before { content: ""; position: absolute; width: 430px; height: 430px; border-radius: 48% 52% 57% 43%; background: linear-gradient(145deg, rgba(16,183,165,.16), rgba(47,128,237,.08)); transform: rotate(-8deg); }
.phone-shell { position: relative; z-index: 2; width: 300px; height: 575px; padding: 12px; border: 6px solid var(--navy-950); border-radius: 44px; background: var(--navy-950); box-shadow: 0 36px 80px rgba(7,28,49,.25); transform: rotate(3deg); }
.phone-top { position: absolute; z-index: 3; width: 98px; height: 23px; top: 10px; left: 50%; border-radius: 0 0 16px 16px; background: var(--navy-950); transform: translateX(-50%); }
.phone-top span { position: absolute; width: 28px; height: 4px; top: 5px; left: 50%; border-radius: 6px; background: #31516c; transform: translateX(-50%); }
.app-screen { height: 100%; padding: 32px 17px 18px; border-radius: 32px; overflow: hidden; background: #f7fbfa; }
.app-brand { display: flex; align-items: center; gap: 8px; color: var(--navy-900); font-size: 13px; }
.app-brand i { width: 28px; height: 28px; margin-left: auto; border: 7px solid white; border-radius: 50%; background: #d2e4e1; box-shadow: 0 2px 10px rgba(9,35,63,.08); }
.mini-mark { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 7px; color: white; background: var(--teal-500); font-size: 20px; line-height: 1; }
.app-greeting { margin: 26px 0 0; color: #708492; font-size: 11px; }
.app-screen > h2 { max-width: 190px; margin: 3px 0 20px; color: var(--navy-950); font-size: 24px; line-height: 1.15; letter-spacing: -.04em; }
.appointment-card { position: relative; padding: 15px; border-radius: 18px; color: white; overflow: hidden; background: linear-gradient(135deg, var(--navy-900), #15506a); box-shadow: 0 12px 26px rgba(9,35,63,.18); }
.appointment-card::after { content: "+"; position: absolute; right: -15px; bottom: -45px; color: rgba(255,255,255,.05); font-size: 150px; font-weight: 800; }
.appointment-label { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; color: #b9d4dd; font-size: 9px; }
.appointment-label b { padding: 3px 7px; border-radius: 8px; color: #a8eee4; background: rgba(16,183,165,.18); font-size: 8px; }
.appointment-card > strong { display: block; font-size: 14px; }
.appointment-card > small { display: block; color: #b9d4dd; font-size: 9px; }
.appointment-time { position: relative; z-index: 1; display: flex; align-items: center; gap: 8px; margin-top: 13px; }
.appointment-time > b { font-size: 26px; }
.appointment-time > span { color: #b9d4dd; font-size: 8px; line-height: 1.25; }
.appointment-time strong { color: white; font-size: 9px; }
.quick-title { display: flex; justify-content: space-between; margin: 22px 0 11px; font-size: 10px; }
.quick-title span { color: var(--teal-600); }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.quick-grid div { display: grid; place-items: center; gap: 5px; padding: 11px 4px; border: 1px solid #e3ecea; border-radius: 13px; background: white; }
.quick-icon { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 9px; color: var(--teal-600); background: var(--teal-100); font-size: 14px; font-style: normal; }
.quick-grid small { color: #49606f; font-size: 8px; }
.care-progress { display: flex; align-items: center; gap: 9px; margin-top: 18px; padding: 12px; border-radius: 14px; background: white; box-shadow: 0 7px 22px rgba(9,35,63,.06); }
.care-progress > span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: conic-gradient(var(--teal-500) 75%, #d9e9e6 0); }
.care-progress > span i { width: 22px; height: 22px; border-radius: 50%; background: white; }
.care-progress div { display: flex; flex: 1; flex-direction: column; }
.care-progress strong { font-size: 9px; }
.care-progress small { color: #7b8e99; font-size: 7px; }
.care-progress > b { color: var(--teal-600); font-size: 10px; }
.signal-card, .metric-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.8); border-radius: 14px; background: rgba(255,255,255,.92); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.signal-card { top: 72px; left: -12px; }
.metric-card { right: -20px; bottom: 72px; }
.signal-card strong, .metric-card strong { display: block; color: var(--navy-900); font-size: 11px; }
.signal-card small, .metric-card small { display: block; color: #758795; font-size: 8px; }
.signal-dot { width: 11px; height: 11px; border: 3px solid white; border-radius: 50%; background: var(--teal-500); box-shadow: 0 0 0 4px rgba(16,183,165,.15); }
.metric-icon { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; color: var(--blue-500); background: #e9f2ff; font-weight: 800; }

.credibility-strip { position: relative; z-index: 4; border-top: 1px solid rgba(16,53,84,.08); border-bottom: 1px solid rgba(16,53,84,.08); background: white; }
.credibility-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.credibility-grid div { padding: 25px 28px; border-right: 1px solid var(--line); }
.credibility-grid div:first-child { padding-left: 0; }
.credibility-grid div:last-child { border: 0; }
.credibility-grid strong, .credibility-grid span { display: block; }
.credibility-grid strong { color: var(--navy-900); font-size: 14px; }
.credibility-grid span { color: #758693; font-size: 12px; }

.section { padding: 112px 0; }
.section-heading { margin-bottom: 52px; }
.heading-split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: end; }
.section-heading h2, .capability-copy h2, .security-copy h2, .faq-intro h2, .contact-copy h2 { margin: 0; color: var(--navy-950); font-size: clamp(36px, 4.2vw, 54px); line-height: 1.12; letter-spacing: -.045em; }
.section-heading p { max-width: 470px; margin: 0 0 4px; color: var(--muted); font-size: 17px; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.solution-card { position: relative; min-height: 340px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: white; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.solution-card:hover { transform: translateY(-5px); border-color: rgba(16,183,165,.4); box-shadow: 0 24px 50px rgba(9,35,63,.08); }
.solution-card.featured-card { grid-row: span 2; min-height: 698px; color: white; border: 0; background: linear-gradient(155deg, var(--navy-900), #0c4b64 70%, #087d75); }
.solution-card.featured-card::after { content: "+"; position: absolute; right: -28px; bottom: -130px; color: rgba(255,255,255,.04); font-size: 390px; line-height: 1; font-weight: 700; }
.card-number { position: absolute; top: 28px; right: 28px; color: #9aabb6; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.featured-card .card-number { color: rgba(255,255,255,.5); }
.card-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 54px; border-radius: 15px; color: var(--teal-600); background: var(--teal-100); font-size: 28px; font-weight: 500; }
.featured-card .card-icon { width: 66px; height: 66px; margin: 70px 0 110px; color: white; background: var(--teal-500); font-size: 38px; }
.solution-card h3 { margin: 0 0 12px; color: var(--navy-900); font-size: 24px; line-height: 1.2; letter-spacing: -.025em; }
.solution-card.featured-card h3 { position: relative; z-index: 1; color: white; font-size: 33px; }
.solution-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 15px; }
.solution-card.featured-card p { color: #c9dee4; font-size: 16px; }
.solution-card ul { position: relative; z-index: 1; display: grid; gap: 12px; padding: 0; margin: 30px 0 0; list-style: none; color: #e0eff1; font-size: 13px; }
.solution-card li::before { content: "✓"; margin-right: 10px; color: #5be2d2; }
.solution-card > a { position: absolute; left: 34px; bottom: 28px; color: var(--navy-900); font-size: 13px; font-weight: 800; }
.solution-card > a span { margin-left: 7px; color: var(--teal-600); }

.examples-section { overflow: hidden; border-top: 1px solid var(--line); background: linear-gradient(180deg, #f6fbfa, #edf7f5); }
.examples-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: end; }
.examples-intro > p { margin: 0 0 16px; color: var(--muted); font-size: 16px; }
.concept-label { display: inline-flex; align-items: center; gap: 7px; padding: 6px 10px; border: 1px solid #cfe4df; border-radius: 999px; color: #59766f; background: rgba(255,255,255,.72); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.concept-label::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--teal-500); }
.example-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.example-card { padding: 26px 22px 22px; border: 1px solid rgba(16,53,84,.1); border-radius: 24px; overflow: hidden; background: rgba(255,255,255,.78); box-shadow: 0 20px 60px rgba(9,35,63,.06); }
.example-meta { min-height: 92px; display: grid; grid-template-columns: 30px 1fr; gap: 11px; }
.example-index { padding-top: 5px; color: var(--teal-600); font-size: 10px; font-weight: 850; letter-spacing: .1em; }
.example-meta h3 { margin: 0 0 5px; color: var(--navy-900); font-size: 20px; line-height: 1.2; letter-spacing: -.025em; }
.example-meta p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.device-stage { position: relative; height: 540px; display: grid; place-items: end center; margin: 0 -22px 18px; overflow: hidden; }
.device-stage::before { content: ""; position: absolute; width: 330px; height: 330px; left: 50%; top: 82px; border-radius: 50%; transform: translateX(-50%); }
.example-patient .device-stage { background: linear-gradient(145deg, #e3f7f3, #f7fcfb); }
.example-patient .device-stage::before { background: rgba(16,183,165,.11); }
.example-homecare .device-stage { background: linear-gradient(145deg, #e8eff7, #f8fafc); }
.example-homecare .device-stage::before { background: rgba(47,128,237,.09); }
.example-telehealth .device-stage { background: linear-gradient(145deg, #eeeafa, #faf9fe); }
.example-telehealth .device-stage::before { background: rgba(91,70,170,.09); }
.showcase-phone { position: relative; z-index: 1; width: 257px; height: 508px; padding: 8px; border: 4px solid var(--navy-950); border-radius: 35px 35px 0 0; background: var(--navy-950); box-shadow: 0 25px 50px rgba(5,25,45,.22); }
.device-speaker { position: absolute; z-index: 4; top: 8px; left: 50%; width: 72px; height: 18px; border-radius: 0 0 12px 12px; background: var(--navy-950); transform: translateX(-50%); }
.showcase-screen { position: relative; height: 100%; padding: 24px 14px 0; border-radius: 25px 25px 0 0; overflow: hidden; background: #f8fbfa; }
.screen-status { display: flex; justify-content: space-between; margin-bottom: 17px; color: #384f60; font-size: 7px; font-weight: 800; letter-spacing: .04em; }
.screen-brand { display: flex; align-items: center; gap: 6px; margin-bottom: 28px; color: var(--navy-900); font-size: 10px; }
.screen-brand .screen-logo { display: grid; place-items: center; width: 21px; height: 21px; border-radius: 6px; color: white; background: var(--teal-500); font-size: 16px; }
.screen-brand .avatar { display: grid; place-items: center; width: 25px; height: 25px; margin-left: auto; border: 2px solid white; border-radius: 50%; color: var(--navy-700); background: #cce0df; box-shadow: 0 2px 8px rgba(9,35,63,.1); font-size: 7px; font-style: normal; }
.screen-overline { color: #82939d; font-size: 6px; font-weight: 850; letter-spacing: .12em; }
.showcase-screen > h4 { margin: 4px 0 17px; color: var(--navy-950); font-size: 22px; line-height: 1.08; letter-spacing: -.04em; }
.screen-appointment { padding: 13px; border-radius: 15px; color: white; background: linear-gradient(140deg, var(--navy-900), #14586d); box-shadow: 0 10px 24px rgba(9,35,63,.16); }
.screen-card-top { display: flex; justify-content: space-between; color: #a7c4cd; font-size: 5.5px; letter-spacing: .07em; }
.screen-card-top b { padding: 2px 5px; border-radius: 8px; color: #8ce5d8; background: rgba(16,183,165,.18); font-size: 5px; }
.doctor-row { display: flex; align-items: center; gap: 8px; margin: 11px 0; }
.doctor-row > i { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 9px; color: var(--navy-900); background: #c5dedc; font-size: 7px; font-style: normal; }
.doctor-row span { display: flex; flex-direction: column; }
.doctor-row strong { font-size: 8px; }
.doctor-row small { color: #a7c4cd; font-size: 6px; }
.visit-detail { display: grid; grid-template-columns: 1fr 1fr auto; gap: 6px; align-items: center; padding-top: 9px; border-top: 1px solid rgba(255,255,255,.13); }
.visit-detail > span { color: #a7c4cd; font-size: 5px; line-height: 1.2; }
.visit-detail > span b { display: block; color: white; font-size: 8px; }
.visit-detail button { height: 23px; padding: 0 10px; border: 0; border-radius: 7px; color: var(--navy-900); background: #75e2d5; font-size: 6px; font-weight: 800; }
.screen-section-title { display: flex; justify-content: space-between; margin: 16px 0 8px; font-size: 7px; }
.screen-section-title span { color: var(--teal-600); }
.screen-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.screen-actions > div { display: grid; place-items: center; gap: 4px; padding: 7px 2px; border: 1px solid #e2ebe9; border-radius: 9px; background: white; }
.screen-actions i { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 7px; color: var(--teal-600); background: var(--teal-100); font-size: 9px; font-style: normal; }
.screen-actions small { color: #506675; font-size: 5px; }
.screen-task { display: flex; align-items: center; gap: 7px; margin-top: 11px; padding: 9px; border-radius: 10px; background: white; box-shadow: 0 5px 15px rgba(9,35,63,.06); }
.task-ring { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: conic-gradient(var(--teal-500) 75%, #d9e9e6 0); }
.task-ring i { width: 17px; height: 17px; border-radius: 50%; background: white; }
.screen-task div { display: flex; flex: 1; flex-direction: column; }
.screen-task strong { font-size: 6px; }
.screen-task small { color: #82939d; font-size: 5px; }
.screen-task > b { color: var(--teal-600); font-size: 7px; }
.screen-nav { position: absolute; left: 0; right: 0; bottom: 0; height: 43px; display: grid; grid-template-columns: repeat(4, 1fr); padding: 7px 9px; border-top: 1px solid #e1eae8; background: rgba(255,255,255,.96); }
.screen-nav i { display: flex; align-items: center; flex-direction: column; color: #96a5ad; font-size: 9px; font-style: normal; line-height: 1; }
.screen-nav i:first-child { color: var(--teal-600); }
.screen-nav small { margin-top: 3px; font-size: 4.5px; }
.example-tags { display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; list-style: none; }
.example-tags li { padding: 6px 9px; border-radius: 999px; color: #5e766f; background: #edf6f4; font-size: 8px; font-weight: 750; }

.homecare-screen { color: white; background: linear-gradient(180deg, #0b2944 0, #103c57 46%, #f5f8fa 46%); }
.homecare-screen .screen-status, .homecare-screen .screen-overline { color: #91b0c0; }
.light-brand { color: white; margin-bottom: 26px; }
.homecare-screen > h4 { color: white; }
.route-progress { display: flex; align-items: center; gap: 7px; padding: 9px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; background: rgba(255,255,255,.07); }
.route-progress > span { position: relative; width: 29px; height: 29px; border: 1px solid rgba(101,223,210,.35); border-radius: 50%; }
.route-progress > span::before, .route-progress > span::after { content: ""; position: absolute; width: 5px; height: 5px; border-radius: 50%; background: #6ce1d4; }
.route-progress > span::before { left: 6px; top: 8px; }
.route-progress > span::after { right: 6px; bottom: 8px; }
.route-progress > span i { position: absolute; width: 12px; height: 1px; top: 14px; left: 8px; background: #6ce1d4; transform: rotate(35deg); }
.route-progress div { display: flex; flex: 1; flex-direction: column; }
.route-progress strong { font-size: 6px; }
.route-progress small { color: #91b0c0; font-size: 5px; }
.route-progress > b { padding: 2px 5px; border-radius: 6px; color: #76e3d7; background: rgba(16,183,165,.15); font-size: 5px; }
.timeline { position: relative; margin: 26px 0 0; color: var(--ink); }
.timeline::before { content: ""; position: absolute; width: 1px; top: 8px; bottom: 10px; left: 5px; background: #cddbe0; }
.timeline-item { position: relative; display: grid; grid-template-columns: 15px 1fr auto; gap: 7px; padding-bottom: 16px; }
.timeline-item > span { position: relative; z-index: 1; width: 11px; height: 11px; border: 3px solid #f5f8fa; border-radius: 50%; background: #b6c4cb; box-shadow: 0 0 0 1px #b6c4cb; }
.timeline-item.complete > span { background: var(--teal-500); box-shadow: 0 0 0 1px var(--teal-500); }
.timeline-item.active > span { background: var(--blue-500); box-shadow: 0 0 0 1px var(--blue-500), 0 0 0 5px rgba(47,128,237,.1); }
.timeline-item div { display: flex; flex-direction: column; }
.timeline-item small { color: #8b9aa3; font-size: 4.8px; font-weight: 800; letter-spacing: .04em; }
.timeline-item strong { margin: 2px 0; color: var(--navy-900); font-size: 8px; }
.timeline-item p { margin: 0; color: #6d7e89; font-size: 5.5px; }
.timeline-item > b { display: grid; place-items: center; width: 19px; height: 19px; border-radius: 6px; color: var(--teal-600); background: var(--teal-100); font-size: 7px; }
.timeline-item.active > b { color: white; background: var(--blue-500); }
.checkin-button { width: 100%; height: 31px; border: 0; border-radius: 8px; color: white; background: var(--navy-900); font-size: 6px; font-weight: 800; }
.checkin-button span { margin-right: 5px; color: #6ce1d4; }
.dark-nav i:first-child { color: var(--blue-500); }

.telehealth-screen { padding: 0; background: #f8f8fc; }
.video-scene { position: relative; height: 278px; overflow: hidden; background: linear-gradient(145deg, #b7c8d4, #829ba8); }
.video-scene::before { content: ""; position: absolute; width: 170px; height: 170px; left: 30px; top: 55px; border-radius: 50%; background: rgba(255,255,255,.16); filter: blur(2px); }
.video-status { position: relative; z-index: 3; padding: 14px 14px 0; color: white; }
.doctor-portrait { position: absolute; left: 50%; bottom: 0; width: 170px; height: 225px; transform: translateX(-50%); }
.portrait-head { position: absolute; z-index: 2; width: 72px; height: 88px; top: 14px; left: 49px; border-radius: 47% 47% 44% 44%; background: #c99578; box-shadow: inset 0 12px 0 #423832; }
.portrait-body { position: absolute; width: 155px; height: 145px; left: 7px; bottom: -28px; border-radius: 70px 70px 0 0; background: #eef5f6; }
.doctor-portrait i { position: absolute; z-index: 2; width: 58px; height: 32px; left: 56px; bottom: 72px; border-bottom: 2px solid #89a0ab; border-radius: 50%; }
.call-top { position: absolute; z-index: 3; left: 12px; right: 12px; top: 38px; display: flex; justify-content: space-between; color: white; }
.call-top span { display: flex; flex-direction: column; }
.call-top small { color: #d9f7f3; font-size: 4.5px; letter-spacing: .1em; }
.call-top strong { font-size: 7px; }
.call-top b { height: 17px; padding: 3px 6px; border-radius: 7px; background: rgba(5,25,45,.38); font-size: 6px; }
.self-view { position: absolute; z-index: 3; right: 12px; bottom: 12px; width: 53px; height: 74px; border: 2px solid white; border-radius: 9px; overflow: hidden; background: #d7c8bb; box-shadow: 0 7px 16px rgba(0,0,0,.18); }
.self-head { position: absolute; width: 25px; height: 30px; left: 14px; top: 12px; border-radius: 50%; background: #b78063; box-shadow: inset 0 7px 0 #29241f; }
.self-body { position: absolute; width: 45px; height: 37px; left: 4px; bottom: -8px; border-radius: 20px 20px 0 0; background: #18435d; }
.call-details { padding: 16px 16px 8px; }
.call-details small { color: #7d759f; font-size: 5px; font-weight: 850; letter-spacing: .1em; }
.call-details h4 { margin: 2px 0 2px; color: #211f35; font-size: 16px; letter-spacing: -.03em; }
.call-details p { margin: 0; color: #7c7a88; font-size: 5.5px; }
.call-controls { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; padding: 8px 14px 12px; }
.call-controls button { display: flex; align-items: center; flex-direction: column; gap: 3px; padding: 7px 2px; border: 0; border-radius: 9px; color: #423f58; background: #ebeaf2; font-size: 10px; }
.call-controls button small { font-size: 4.5px; }
.call-controls .end-call { color: white; background: #d84b5c; }
.call-note { display: flex; align-items: center; gap: 7px; margin: 0 14px; padding: 9px; border: 1px solid #e4e2ed; border-radius: 9px; background: white; }
.call-note > span { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 7px; color: #6855b0; background: #eeeafa; font-size: 9px; }
.call-note div { display: flex; flex: 1; flex-direction: column; }
.call-note strong { color: #302d43; font-size: 6px; }
.call-note small { color: #8a8798; font-size: 4.8px; }
.call-note > b { color: #6855b0; font-size: 8px; }
.examples-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 24px; padding: 22px 25px; border: 1px solid rgba(16,53,84,.1); border-radius: 18px; background: white; }
.examples-cta > div { display: flex; align-items: center; gap: 14px; }
.examples-cta p { margin: 0; color: var(--muted); font-size: 13px; }
.examples-cta strong { display: block; color: var(--navy-900); font-size: 14px; }

.capability-section { color: white; background: var(--navy-950); }
.capability-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 100px; align-items: center; }
.eyebrow-light { color: #64dbce; }
.capability-copy h2, .contact-copy h2 { color: white; }
.capability-copy > p { max-width: 540px; margin: 25px 0 34px; color: #b9ced9; font-size: 17px; }
.button-light { color: var(--navy-950); border-color: white; background: white; box-shadow: none; }
.button-light:hover { color: var(--navy-950); background: #e9f9f6; }
.capability-list { border-top: 1px solid rgba(255,255,255,.15); }
.capability-list > div { display: flex; gap: 24px; padding: 24px 4px; border-bottom: 1px solid rgba(255,255,255,.15); }
.capability-list b { color: #5ed9cc; font-size: 11px; letter-spacing: .12em; }
.capability-list span { display: flex; flex: 1; justify-content: space-between; gap: 20px; }
.capability-list strong { font-size: 18px; }
.capability-list small { max-width: 260px; color: #98b2bf; font-size: 13px; }

.security-section { background: var(--surface); }
.security-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; align-items: center; }
.security-panel { position: relative; min-height: 520px; display: grid; place-items: center; border: 1px solid #d4e5e2; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(145deg, #eaf8f5, #f7fbfa); }
.security-panel::before { content: ""; position: absolute; inset: 0; opacity: .7; background-image: radial-gradient(rgba(16,183,165,.22) 1px, transparent 1px); background-size: 18px 18px; mask-image: radial-gradient(circle, black, transparent 72%); }
.security-orbit { position: absolute; border: 1px solid rgba(16,183,165,.25); border-radius: 50%; }
.orbit-one { width: 320px; height: 320px; }
.orbit-two { width: 440px; height: 440px; }
.lock-mark { position: relative; z-index: 2; width: 148px; height: 132px; margin-top: 35px; border-radius: 28px; background: var(--navy-900); box-shadow: 0 25px 60px rgba(9,35,63,.22); }
.lock-mark::before { content: ""; position: absolute; width: 74px; height: 70px; top: -50px; left: 37px; border: 17px solid var(--navy-900); border-bottom: 0; border-radius: 50px 50px 0 0; }
.lock-mark::after { content: ""; position: absolute; width: 18px; height: 36px; left: 65px; top: 49px; border-radius: 12px; background: var(--teal-500); }
.lock-mark span { position: absolute; width: 44px; height: 44px; left: 52px; top: 35px; border-radius: 50%; background: var(--teal-500); }
.security-status { position: absolute; z-index: 3; right: 28px; bottom: 28px; display: flex; align-items: center; gap: 12px; padding: 14px 18px; border: 1px solid white; border-radius: 14px; background: rgba(255,255,255,.9); box-shadow: var(--shadow); }
.security-status i { width: 12px; height: 12px; border-radius: 50%; background: var(--teal-500); box-shadow: 0 0 0 5px rgba(16,183,165,.14); }
.security-status strong, .security-status small { display: block; }
.security-status strong { color: var(--navy-900); font-size: 12px; }
.security-status small { color: var(--muted); font-size: 9px; }
.security-copy > p { margin: 22px 0 28px; color: var(--muted); font-size: 16px; }
.security-points { display: grid; gap: 20px; }
.security-points > div { display: grid; grid-template-columns: 42px 1fr; gap: 16px; }
.security-points span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: var(--teal-600); background: var(--teal-100); font-size: 10px; font-weight: 800; }
.security-points p { margin: 0; color: var(--muted); font-size: 14px; }
.security-points strong { display: block; margin-bottom: 3px; color: var(--navy-900); font-size: 15px; }
.compliance-note { padding: 16px 18px; border-left: 3px solid var(--teal-500); background: white; font-size: 13px !important; }

.centered-heading { max-width: 750px; margin-inline: auto; text-align: center; }
.centered-heading .eyebrow { justify-content: center; }
.centered-heading p { max-width: 650px; margin: 18px auto 0; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; padding: 0; margin: 70px 0 0; list-style: none; }
.process-grid::before { content: ""; position: absolute; top: 43px; left: 8%; right: 8%; height: 1px; background: var(--line); }
.process-grid li { position: relative; }
.process-grid li > span { color: #8798a4; font-size: 11px; font-weight: 800; }
.process-dot { position: relative; z-index: 2; width: 15px; height: 15px; margin: 23px 0 28px; border: 4px solid white; border-radius: 50%; background: var(--teal-500); box-shadow: 0 0 0 1px var(--teal-500), 0 0 0 8px var(--teal-100); }
.process-grid h3 { margin: 0 0 9px; color: var(--navy-900); font-size: 20px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.insights-section { border-top: 1px solid var(--line); background: #f7faf9; }
.insights-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: end; margin-bottom: 48px; }
.insights-heading h2 { margin: 0; color: var(--navy-950); font-size: clamp(38px, 4.5vw, 56px); line-height: 1.1; letter-spacing: -.045em; }
.insights-heading > p { max-width: 470px; margin: 0 0 5px; color: var(--muted); font-size: 16px; }
.insights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.insight-card { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 390px; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: white; transition: transform .2s ease, box-shadow .2s ease; }
.insight-card:hover { transform: translateY(-4px); box-shadow: 0 24px 52px rgba(9,35,63,.08); }
.insight-featured { grid-column: 1 / -1; grid-template-columns: 1.02fr .98fr; min-height: 430px; }
.insight-visual { position: relative; min-height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 24px; overflow: hidden; }
.insight-visual::before { content: ""; position: absolute; width: 300px; height: 300px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.insight-visual small { position: relative; color: rgba(255,255,255,.7); font-size: 9px; font-weight: 750; letter-spacing: .05em; }
.cost-visual { background: linear-gradient(145deg, var(--navy-900), #0d6570); }
.insight-symbol { position: relative; z-index: 1; display: grid; place-items: center; width: 76px; height: 76px; border: 1px solid rgba(255,255,255,.2); border-radius: 22px; color: #79e6d9; background: rgba(255,255,255,.08); font-size: 38px; font-weight: 700; }
.cost-bars { position: relative; z-index: 1; height: 60px; display: flex; align-items: end; gap: 9px; }
.cost-bars i { width: 15px; border-radius: 4px 4px 0 0; background: rgba(120,230,217,.85); }
.cost-bars i:nth-child(1) { height: 24px; opacity: .45; }
.cost-bars i:nth-child(2) { height: 37px; opacity: .6; }
.cost-bars i:nth-child(3) { height: 48px; opacity: .8; }
.cost-bars i:nth-child(4) { height: 60px; }
.security-visual { background: linear-gradient(145deg, #143651, #1b5870); }
.insight-lock { position: relative; z-index: 1; width: 84px; height: 72px; margin-top: 22px; border-radius: 18px; background: #71e0d3; }
.insight-lock::before { content: ""; position: absolute; width: 43px; height: 38px; left: 20px; top: -29px; border: 10px solid #71e0d3; border-bottom: 0; border-radius: 28px 28px 0 0; }
.insight-lock i { position: absolute; width: 13px; height: 28px; left: 35px; top: 23px; border-radius: 8px; background: var(--navy-900); }
.fhir-visual { background: linear-gradient(145deg, #21425d, #355f7d); }
.fhir-nodes { position: relative; z-index: 1; width: 150px; height: 110px; }
.fhir-nodes::before, .fhir-nodes::after, .fhir-nodes span { content: ""; position: absolute; height: 2px; transform-origin: left; background: rgba(120,230,217,.55); }
.fhir-nodes::before { width: 90px; left: 30px; top: 28px; transform: rotate(27deg); }
.fhir-nodes::after { width: 90px; left: 30px; bottom: 28px; transform: rotate(-27deg); }
.fhir-nodes span { width: 63px; right: 14px; top: 54px; transform: rotate(90deg); }
.fhir-nodes i { position: absolute; z-index: 2; width: 38px; height: 38px; border: 8px solid rgba(255,255,255,.16); border-radius: 50%; background: #71e0d3; }
.fhir-nodes i:nth-child(1) { left: 7px; top: 36px; }
.fhir-nodes i:nth-child(2) { right: 8px; top: 0; }
.fhir-nodes i:nth-child(3) { right: 8px; bottom: 0; }
.insight-content { display: flex; flex-direction: column; padding: 31px; }
.insight-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.insight-meta span { color: var(--teal-600); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.insight-meta small { color: #8999a3; font-size: 9px; }
.insight-content h3 { margin: 0 0 13px; color: var(--navy-900); font-size: 23px; line-height: 1.25; letter-spacing: -.025em; }
.insight-featured .insight-content h3 { font-size: 31px; }
.insight-content > p { margin: 0 0 22px; color: var(--muted); font-size: 13px; }
.insight-content details { margin-top: auto; border-top: 1px solid var(--line); }
.insight-content summary { display: flex; align-items: center; justify-content: space-between; padding: 17px 0 0; color: var(--navy-900); font-size: 11px; font-weight: 800; cursor: pointer; list-style: none; }
.insight-content summary::-webkit-details-marker { display: none; }
.insight-content summary span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; color: var(--teal-600); background: var(--teal-100); font-size: 15px; transition: transform .2s ease; }
.insight-content details[open] summary span { transform: rotate(45deg); }
.insight-content details ul { display: grid; gap: 8px; padding: 15px 0 0 17px; margin: 0; color: var(--muted); font-size: 10px; }
.insight-content details li::marker { color: var(--teal-500); }
.insight-article-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--teal-600); font-size: 11px; font-weight: 850; }
.insight-article-link span { transition: transform .2s ease; }
.insight-article-link:hover span { transform: translateX(3px); }
.insights-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 22px; padding: 21px 24px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.insights-footer p { margin: 0; color: var(--muted); font-size: 13px; }
.insights-footer strong { color: var(--navy-900); }

.reviews-section { position: relative; overflow: hidden; color: white; background: linear-gradient(145deg, #071e34, #0a3a4d); }
.reviews-section::before { content: ""; position: absolute; width: 540px; height: 540px; right: -210px; top: -250px; border-radius: 50%; background: radial-gradient(circle, rgba(16,183,165,.2), transparent 68%); }
.reviews-heading { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: end; margin-bottom: 48px; }
.reviews-heading h2 { margin: 0; font-size: clamp(38px, 4.5vw, 56px); line-height: 1.08; letter-spacing: -.045em; }
.review-integrity-note { padding: 17px 18px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(255,255,255,.05); }
.review-integrity-note span { color: #69dfd2; font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.review-integrity-note p { margin: 5px 0 0; color: #a9c0cb; font-size: 12px; }
.reviews-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { min-height: 340px; display: flex; flex-direction: column; padding: 28px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(255,255,255,.055); }
.review-card-featured { background: linear-gradient(145deg, rgba(16,183,165,.18), rgba(255,255,255,.06)); }
.review-card-top { display: flex; align-items: flex-start; justify-content: space-between; }
.review-slot { padding: 5px 8px; border: 1px solid rgba(105,223,210,.25); border-radius: 999px; color: #77e4d7; background: rgba(16,183,165,.09); font-size: 8px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.quote-mark { height: 50px; color: rgba(105,223,210,.7); font-family: Georgia, serif; font-size: 64px; line-height: .8; }
.review-card blockquote { margin: 37px 0 34px; color: #d6e4e9; font-size: 17px; line-height: 1.65; letter-spacing: -.01em; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.review-avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: #72e2d5; background: rgba(16,183,165,.12); font-size: 9px; font-weight: 850; }
.review-author div { display: flex; flex-direction: column; }
.review-author strong { font-size: 12px; }
.review-author small { color: #8fa8b4; font-size: 9px; }
.review-proof-bar { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 20px; padding: 22px 24px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(3,18,31,.32); }
.review-proof-bar > div { display: grid; grid-template-columns: 24px 1fr; gap: 10px; }
.review-proof-bar span { display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; color: #74e2d5; background: rgba(16,183,165,.13); font-size: 9px; }
.review-proof-bar p { margin: 0; color: #8fa8b4; font-size: 9px; }
.review-proof-bar strong { display: block; color: #d7e5ea; font-size: 10px; }

.faq-section { border-top: 1px solid var(--line); background: #fbfdfd; }
.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 100px; }
.faq-intro p { margin: 20px 0 22px; color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 2px; border: 0; color: var(--navy-900); background: transparent; text-align: left; font-size: 17px; font-weight: 750; cursor: pointer; }
.faq-item button i { position: relative; flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%; background: var(--teal-100); }
.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; width: 10px; height: 2px; top: 13px; left: 9px; background: var(--teal-600); }
.faq-item button i::after { transform: rotate(90deg); transition: transform .2s ease; }
.faq-item button[aria-expanded="true"] i::after { transform: rotate(0); }
.faq-answer { padding: 0 46px 24px 2px; }
.faq-answer p { margin: 0; color: var(--muted); font-size: 14px; }

.contact-section { padding: 110px 0; color: white; background: linear-gradient(145deg, var(--navy-950), #0d3953); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.contact-copy > p { max-width: 520px; margin: 24px 0 32px; color: #b9ced9; font-size: 17px; }
.contact-promise { display: grid; gap: 16px; }
.contact-promise > div { display: flex; align-items: flex-start; gap: 14px; }
.contact-promise span { display: grid; flex: 0 0 30px; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(100,219,206,.4); border-radius: 50%; color: #64dbce; font-size: 11px; font-weight: 800; }
.contact-promise p { margin: 0; color: #a9c0cb; font-size: 13px; }
.contact-promise strong { display: block; color: white; font-size: 14px; }
.contact-form { padding: 38px; border-radius: var(--radius-lg); color: var(--ink); background: white; box-shadow: 0 30px 70px rgba(0,0,0,.18); }
.form-heading { margin-bottom: 26px; }
.form-heading h3 { margin: 0; color: var(--navy-900); font-size: 25px; }
.form-heading p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: block; margin-bottom: 15px; color: #3b5264; font-size: 12px; font-weight: 750; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; margin-top: 7px; border: 1px solid #cfdde2; border-radius: 9px; color: var(--ink); background: #fbfdfd; }
.contact-form input, .contact-form select { height: 48px; padding: 0 13px; }
.contact-form textarea { min-height: 108px; padding: 12px 13px; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #91a1aa; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--teal-500); background: white; }
.form-submit { width: 100%; border: 0; cursor: pointer; }
.form-note { margin: 12px 0 0; color: #7a8b96; font-size: 10px; text-align: center; }
.form-status { min-height: 20px; margin: 8px 0 0; color: var(--teal-600); font-size: 12px; text-align: center; }

.site-footer { padding: 70px 0 24px; background: #041423; color: white; }
.footer-main { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; padding-bottom: 54px; }
.footer-brand img { width: 280px; padding: 6px; border-radius: 6px; background: white; }
.footer-brand p { max-width: 390px; margin: 20px 0 0; color: #89a3b2; font-size: 14px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; }
.footer-links div { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong { margin-bottom: 5px; font-size: 13px; }
.footer-links a { color: #89a3b2; font-size: 13px; }
.footer-links a:hover { color: #62dbcd; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #708a99; font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #62dbcd; font-weight: 750; }
.footer-bottom a:hover { color: white; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 1040px) {
  .primary-navigation { gap: 21px; }
  .hero-grid { gap: 24px; }
  .hero h1 { font-size: 54px; }
  .signal-card { left: -25px; }
  .metric-card { right: -16px; }
  .heading-split, .capability-grid, .security-grid, .faq-grid, .contact-grid { gap: 55px; }
  .examples-heading { gap: 55px; }
}

@media (max-width: 860px) {
  .header-inner { height: 74px; }
  .brand { width: 230px; }
  .menu-button { display: flex; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-navigation { position: absolute; top: 73px; left: 20px; right: 20px; display: none; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 8px; }
  .primary-navigation.open { display: flex; }
  .primary-navigation > a { padding: 10px 8px; }
  .primary-navigation .button { padding: 0 18px; }
  .hero { padding-top: 130px; }
  .hero-grid, .heading-split, .capability-grid, .security-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .trust-list { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .product-visual { margin-top: 30px; }
  .credibility-grid { grid-template-columns: 1fr 1fr; }
  .credibility-grid div:nth-child(2) { border-right: 0; }
  .credibility-grid div:first-child { padding-left: 28px; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .solution-card.featured-card { grid-column: span 2; grid-row: auto; min-height: 480px; }
  .featured-card .card-icon { margin: 50px 0 65px; }
  .heading-split { gap: 20px; }
  .examples-heading { grid-template-columns: 1fr; gap: 20px; }
  .example-showcase { grid-template-columns: 1fr 1fr; }
  .example-telehealth { grid-column: 1 / -1; width: calc(50% - 9px); margin-inline: auto; }
  .section-heading p { max-width: 650px; }
  .capability-copy { max-width: 680px; }
  .security-panel { order: 2; min-height: 450px; }
  .process-grid { grid-template-columns: 1fr 1fr; row-gap: 50px; }
  .process-grid::before { display: none; }
  .insights-heading { grid-template-columns: 1fr; gap: 20px; }
  .insight-card, .insight-featured { grid-template-columns: 1fr; }
  .insight-visual { min-height: 250px; }
  .reviews-heading { grid-template-columns: 1fr; gap: 24px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review-card-featured { grid-column: 1 / -1; min-height: 290px; }
  .review-proof-bar { grid-template-columns: 1fr; }
  .contact-copy { max-width: 680px; }
}

@media (max-width: 580px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand { width: 208px; }
  .hero { min-height: auto; padding: 116px 0 72px; }
  .hero h1 { font-size: 42px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .trust-list { align-items: center; flex-direction: column; gap: 10px; }
  .product-visual { min-height: 540px; transform: scale(.9); margin: -5px -20px -25px; }
  .signal-card { left: 0; }
  .metric-card { right: 0; }
  .credibility-grid { grid-template-columns: 1fr; padding: 8px 0; }
  .credibility-grid div, .credibility-grid div:first-child { padding: 14px 8px; border-right: 0; border-bottom: 1px solid var(--line); }
  .credibility-grid div:last-child { border-bottom: 0; }
  .section { padding: 80px 0; }
  .section-heading h2, .capability-copy h2, .security-copy h2, .faq-intro h2, .contact-copy h2 { font-size: 36px; }
  .solution-grid { grid-template-columns: 1fr; }
  .example-showcase { grid-template-columns: 1fr; }
  .example-telehealth { grid-column: auto; width: auto; }
  .examples-cta { align-items: stretch; flex-direction: column; }
  .examples-cta .button { width: 100%; }
  .solution-card.featured-card { grid-column: auto; min-height: 520px; }
  .solution-card { padding: 28px; }
  .solution-card > a { left: 28px; }
  .capability-list span { flex-direction: column; gap: 2px; }
  .capability-list small { max-width: none; }
  .security-panel { min-height: 390px; }
  .orbit-two { width: 350px; height: 350px; }
  .security-status { right: 16px; left: 16px; bottom: 16px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { padding-left: 45px; }
  .process-dot { position: absolute; left: 4px; top: 2px; margin: 0; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-featured { grid-column: auto; }
  .insight-content { padding: 25px 22px; }
  .insight-featured .insight-content h3 { font-size: 25px; }
  .insights-footer { align-items: flex-start; flex-direction: column; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card-featured { grid-column: auto; }
  .review-card { min-height: 310px; }
  .contact-section { padding: 80px 0; }
  .contact-form { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-main { grid-template-columns: 1fr; gap: 44px; }
  .footer-links { gap: 25px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
