@charset "utf-8";
/* Healthcare Solutions Online — site stylesheet
   Senior-friendly: large type, high contrast, generous touch targets. */

:root {
  --g-900: #0b3d2a;
  --g-800: #0f5132;
  --g-700: #146c43;
  --g-500: #1f8f57;
  --g-100: #dff0e6;
  --g-50:  #f2f9f5;
  --amber: #f59e0b;
  --amber-d: #d97706;
  --ink:    #14261c;
  --ink-2:  #415249;
  --ink-3:  #6b7a72;
  --line:   #d7e5dc;
  --white:  #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 61, 42, 0.12);
  --shadow-sm: 0 2px 8px rgba(11, 61, 42, 0.08);
  --font-body: 'Open Sans', 'Segoe UI', Arial, sans-serif;
  --font-head: 'Merriweather', Georgia, 'Times New Roman', serif;
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
}
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; margin: 0; color: var(--ink); }
h1 em, h2 em { font-style: normal; color: var(--g-700); }
p { margin: 0; }
a { color: var(--g-700); text-decoration: none; transition: color .2s, background .2s, box-shadow .2s; }
a:hover { color: var(--g-900); }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.wrap.narrow { max-width: 820px; }
.eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--g-500);
  margin-bottom: 12px;
}
.section-head { text-align: center; margin-bottom: 44px; }
section h2 { font-size: 34px; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,.02), 0 6px 20px rgba(11,61,42,.06);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}
.brand { display: flex; align-items: center; gap: 14px; color: var(--ink); }
.brand-mark { width: 46px; height: 46px; flex: 0 0 auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-head); font-size: 21px; color: var(--g-900); }
.brand-text small { font-size: 13px; color: var(--ink-3); margin-top: 3px; }
.header-right { display: flex; align-items: center; gap: 18px; }
.lang-switch { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 3px; background: var(--g-50); }
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--ink-2);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.lang-btn.active { background: var(--g-700); color: #fff; }
.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 12px;
  border-radius: 999px;
  background: var(--g-700);
  color: #fff;
  box-shadow: 0 4px 14px rgba(20,108,67,.3);
}
.phone-btn:hover { background: var(--g-800); color: #fff; }
.phone-btn svg { width: 26px; height: 26px; }
.phone-btn span { display: flex; flex-direction: column; line-height: 1.1; }
.phone-btn small { font-size: 11px; opacity: .85; letter-spacing: .04em; text-transform: uppercase; }
.phone-btn b { font-size: 19px; }

/* ---- Hero ---- */
.hero {
  position: relative;
  color: #fff;
  background: var(--g-900) url(../images/medicare-bg-2.jpg) center 42% / cover no-repeat;
  padding: 72px 0 80px;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(11,61,42,.96) 0%, rgba(15,81,50,.86) 45%, rgba(15,81,50,.38) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero .eyebrow { color: #a8e0c1; }
.hero h1 { font-size: 46px; color: #fff; font-weight: 900; }
.hero h1 em { color: #ffd166; }
.hero .lead { font-size: 19px; line-height: 1.7; margin: 22px 0 28px; color: rgba(255,255,255,.9); max-width: 560px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.ck {
  flex: 0 0 auto;
  width: 26px; height: 26px; margin-top: 2px;
  border-radius: 50%;
  background: var(--g-500);
  position: relative;
}
.ck::after {
  content: '';
  position: absolute;
  left: 9px; top: 5px;
  width: 7px; height: 12px;
  border: solid #fff; border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.hero .ck { background: #ffd166; }
.hero .ck::after { border-color: var(--g-900); }
.hero-note {
  margin-top: 26px;
  padding: 12px 16px;
  border-left: 4px solid #ffd166;
  background: rgba(255,255,255,.08);
  border-radius: 0 10px 10px 0;
  font-size: 15px;
  font-weight: 600;
  max-width: 560px;
}

/* ---- Form card ---- */
.form-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 20px;
  padding: 32px 30px 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.form-card h2 { font-size: 26px; color: var(--g-900); }
.form-sub { font-size: 15px; color: var(--ink-3); margin: 6px 0 20px; }
.field { margin-bottom: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label { display: block; font-size: 14px; font-weight: 700; color: var(--ink-2); margin-bottom: 6px; }
.field input {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  font: inherit;
  font-size: 17px;
  color: var(--ink);
  background: #fbfdfc;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder { color: #a0aca6; }
.field input:focus { outline: none; border-color: var(--g-500); box-shadow: 0 0 0 4px rgba(31,143,87,.15); background: #fff; }
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.form-errors {
  background: #fdecea;
  border: 1px solid #f0b4ad;
  color: #8a1f11;
  border-radius: 10px;
  padding: 10px 14px;
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 6px 0 14px;
  padding: 12px;
  background: var(--g-50);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-2);
  cursor: pointer;
}
.consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 20px; height: 20px; margin: 2px 0 0;
  accent-color: var(--g-700);
  cursor: pointer;
}
.consent a { text-decoration: underline; font-weight: 600; }
.cf-turnstile { margin-bottom: 12px; min-height: 0; }
.btn-primary {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 17px 20px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .05em;
  color: #1f1300;
  background: var(--amber);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(245,158,11,.4);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover { background: var(--amber-d); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 22px rgba(217,119,6,.45); }
.secure-note { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; font-size: 13px; color: var(--ink-3); }
.secure-note svg { width: 16px; height: 16px; color: var(--g-500); }

/* ---- Trust strip ---- */
.trust { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}
.trust-grid > div:last-child { border-right: 0; }
.trust-grid .ico { grid-row: 1 / span 2; }
.trust-grid b { font-size: 16px; color: var(--g-900); }
.trust-grid span { font-size: 14px; color: var(--ink-3); line-height: 1.4; }
.ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--g-100) center / 24px no-repeat;
}
.ico-badge { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23146c43'%3E%3Cpath d='M12 2l7 3v6c0 5-3.4 9.3-7 11-3.6-1.7-7-6-7-11V5l7-3zm-1.2 13.4l5-5-1.4-1.4-3.6 3.6-1.6-1.6-1.4 1.4 3 3z'/%3E%3C/svg%3E"); }
.ico-free  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23146c43'%3E%3Cpath d='M20 4H4a2 2 0 00-2 2v12a2 2 0 002 2h16a2 2 0 002-2V6a2 2 0 00-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z'/%3E%3C/svg%3E"); }
.ico-lang  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23146c43'%3E%3Cpath d='M12 2a10 10 0 100 20 10 10 0 000-20zm6.9 9h-2.95a15.6 15.6 0 00-1.4-5.1A8 8 0 0118.9 11zM12 4c.9 1.3 1.7 3.2 2 6h-4c.3-2.8 1.1-4.7 2-6zM4.3 13a8 8 0 010-2h3c-.05.66-.08 1.33-.08 2s.03 1.34.08 2h-3a8 8 0 010-2zm.8 2h2.95c.3 1.9.8 3.6 1.4 5.1A8 8 0 015.1 15zm2.95-4H5.1a8 8 0 014.35-5.1c-.6 1.5-1.1 3.2-1.4 5.1zM12 20c-.9-1.3-1.7-3.2-2-6h4c-.3 2.8-1.1 4.7-2 6zm2.3-8H9.7c-.06-.66-.1-1.33-.1-2s.04-1.34.1-2h4.6c.06.66.1 1.33.1 2s-.04 1.34-.1 2zm.25 8.1c.6-1.5 1.1-3.2 1.4-5.1h2.95a8 8 0 01-4.35 5.1zM16.7 13c.05-.66.08-1.33.08-2s-.03-1.34-.08-2h3a8 8 0 010 4h-3z'/%3E%3C/svg%3E"); }
.ico-lock  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23146c43'%3E%3Cpath d='M12 2a5 5 0 015 5v3h1a2 2 0 012 2v8a2 2 0 01-2 2H6a2 2 0 01-2-2v-8a2 2 0 012-2h1V7a5 5 0 015-5zm0 2a3 3 0 00-3 3v3h6V7a3 3 0 00-3-3z'/%3E%3C/svg%3E"); }

/* ---- Explain ---- */
.explain { padding: 88px 0 80px; text-align: center; }
.explain h2 { font-size: 36px; margin-bottom: 20px; }
.explain p { font-size: 19px; line-height: 1.8; color: var(--ink-2); }

/* ---- Process ---- */
.process { background: var(--g-50); padding: 80px 0 88px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.steps li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.steps li:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.steps .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--g-700);
  color: #fff;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
.steps h3 { font-size: 19px; margin-bottom: 10px; }
.steps p { font-size: 15.5px; line-height: 1.6; color: var(--ink-2); }

/* ---- Advantage ---- */
.advantage { padding: 88px 0; }
.advantage-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.advantage-img { margin: 0; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.advantage-img img { width: 100%; height: 100%; object-fit: cover; }
.advantage-copy h2 { margin-bottom: 18px; }
.advantage-copy > p { font-size: 17.5px; line-height: 1.75; color: var(--ink-2); margin-bottom: 22px; }
.checklist.dark li { color: var(--ink); font-size: 17px; }

/* ---- About ---- */
.about { background: var(--g-900); color: #fff; padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 56px; align-items: center; }
.about .eyebrow { color: #a8e0c1; }
.about h2 { color: #fff; margin-bottom: 18px; }
.about-copy p:not(.eyebrow) { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,.85); margin-bottom: 16px; }
.about-cta {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 34px 30px;
  text-align: center;
}
.cta-label { font-size: 16px; color: rgba(255,255,255,.8); margin-bottom: 6px; }
.cta-phone { display: block; font-family: var(--font-head); font-size: 34px; font-weight: 900; color: #ffd166; letter-spacing: .01em; }
.cta-phone:hover { color: #fff; }
.cta-hours { font-size: 14px; color: rgba(255,255,255,.7); margin: 8px 0 22px; }
.btn-outline {
  display: inline-block;
  padding: 12px 22px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.btn-outline:hover { background: #fff; color: var(--g-900); }

/* ---- Inner pages ---- */
.page-head { background: var(--g-900); color: #fff; padding: 56px 0; }
.page-head h1 { font-size: 40px; color: #fff; }
.page-head h1 em { color: #ffd166; }
.legal { padding: 48px 24px 80px; max-width: 860px; }
.legal h2 { font-size: 24px; margin: 36px 0 12px; }
.legal p { font-size: 17px; line-height: 1.8; color: var(--ink-2); margin-bottom: 14px; }
.legal .legal-date { font-style: italic; color: var(--ink-3); }
.legal a { text-decoration: underline; }
.thanks { padding: 64px 0 88px; }
.thanks-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px 36px;
  box-shadow: var(--shadow);
}
.ck.big { width: 64px; height: 64px; margin: 0 auto 20px; }
.ck.big::after { left: 23px; top: 14px; width: 16px; height: 30px; border-width: 0 5px 5px 0; }
.thanks-card h2 { font-size: 30px; margin-bottom: 14px; }
.thanks-card p { font-size: 18px; color: var(--ink-2); margin-bottom: 10px; }
.thanks-card .cta-label { margin-top: 26px; color: var(--ink-3); }
.thanks-card .cta-phone { color: var(--g-700); }
.thanks-card .back { display: inline-block; margin-top: 20px; font-weight: 600; }

/* ---- Footer ---- */
.site-footer { background: #08301f; color: rgba(255,255,255,.8); padding: 56px 0 36px; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-brand strong { display: block; font-family: var(--font-head); font-size: 20px; color: #fff; margin-bottom: 8px; }
.footer-brand p { margin-bottom: 4px; }
.footer-h { display: block; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .1em; font-size: 12.5px; margin-bottom: 12px; }
.footer-contact a, .footer-links a { display: block; color: rgba(255,255,255,.85); margin-bottom: 8px; }
.footer-contact a:hover, .footer-links a:hover { color: #ffd166; }
.disclaimer { padding-top: 28px; }
.disclaimer p { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.62); margin-bottom: 10px; }
.disclaimer strong { color: rgba(255,255,255,.85); }
.disclaimer a { color: rgba(255,255,255,.85); text-decoration: underline; }
.disclaimer .copyright { margin-top: 20px; color: rgba(255,255,255,.5); }

/* Sticky call bar (mobile only) */
.mobile-call {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 60px;
  background: var(--amber);
  color: #1f1300;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 -4px 16px rgba(0,0,0,.18);
}
.mobile-call:hover { color: #1f1300; background: var(--amber-d); }
.mobile-call svg { width: 22px; height: 22px; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 40px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 860px) {
  .hero { padding: 48px 0 56px; background-position: center 20%; }
  .hero-grid, .advantage-grid, .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .advantage-img { order: -1; aspect-ratio: 16 / 10; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-header .wrap { min-height: 72px; }
  .brand-text small { display: none; }
  .phone-btn small { display: none; }
  .phone-btn { padding: 10px 14px; }
  section h2, .explain h2 { font-size: 29px; }
  .page-head h1 { font-size: 32px; }
}
@media (max-width: 600px) {
  body { font-size: 17px; }
  .wrap { padding: 0 16px; }
  .hero h1 { font-size: 32px; }
  .hero .lead { font-size: 17px; }
  .form-card { padding: 24px 18px 20px; border-radius: 16px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .steps, .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid var(--line); padding: 16px 4px; }
  .trust-grid > div:last-child { border-bottom: 0; }
  .brand { gap: 10px; }
  .brand-text strong { font-size: 16px; line-height: 1.15; max-width: 150px; }
  .brand-mark { width: 38px; height: 38px; }
  .header-right { gap: 8px; }
  .lang-btn { padding: 6px 10px; font-size: 13px; }
  .phone-btn { width: 44px; height: 44px; padding: 0; justify-content: center; border-radius: 50%; }
  .phone-btn span { display: none; }
  .phone-btn svg { width: 22px; height: 22px; }
  body { padding-bottom: 64px; }
  .mobile-call { display: flex; }
  .cta-phone { font-size: 28px; }
  .explain, .process, .advantage, .about { padding: 56px 0; }
  .thanks-card { padding: 32px 20px; }
}
