/* Global Reach Health — carrier-first site
   Audience: insurers, TPAs, assistance companies, employers, government payers
   Focus: cost containment, claims visibility, network access, actuarial insight
   Palette derived from the GRH logo: three blues (navy, primary, cyan). */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  /* Three logo colors */
  --logo_navy: #01386b;
  --logo_blue: #0f6fb2;
  --logo_cyan: #38a8e9;

  --ink: #16273d;
  --ink_soft: #3a5570;
  --muted: #648099;
  --line: #dde8f3;
  --line_soft: #eef4fb;
  --bg: #ffffff;
  --bg_soft: #f3f8fd;
  --bg_deep: #16263f;
  --brand: var(--logo_blue);
  --brand_2: var(--logo_cyan);
  --brand_3: var(--logo_navy);
  --accent: var(--logo_cyan);
  --good: #1f9d76;
  --white: #ffffff;
  --radius: 20px;
  --radius_lg: 28px;
  --shadow: 0 22px 60px rgba(30, 49, 84, .14);
  --shadow_soft: 0 14px 38px rgba(30, 49, 84, .09);
  --container: 1200px;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font_display: "Poppins", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
body.no_scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
h1, h2, h3 { font-family: var(--font_display); line-height: 1.12; letter-spacing: -.02em; margin: 0; }
p { margin: 0; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.skip_link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  padding: 12px 18px;
  background: var(--brand_3);
  color: #fff;
  border-radius: 999px;
}
.skip_link:focus { left: 16px; }

/* ---------- Header (logo spans two rows, contact above menu) ---------- */
.site_header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header_grid {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "brand utility"
    "brand nav";
  align-items: center;
  column-gap: 26px;
  row-gap: 4px;
  padding: 12px 0;
}
.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  align-self: center;
}
.brand_logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 12px;
  background: transparent;
}
.brand_text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  font-family: var(--font_display);
  line-height: 1;
}
.brand_text .wm { font-size: 23px; font-weight: 700; letter-spacing: -.02em; }
.brand_text .wm_1 { color: var(--logo_navy); }
.brand_text .wm_2 { color: var(--logo_blue); }
.brand_text .wm_3 { color: var(--logo_cyan); }
.header_utility {
  grid-area: utility;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  font-size: 13.5px;
  color: var(--muted);
  border-bottom: 1px solid var(--line_soft);
  padding-bottom: 8px;
}
.header_utility strong { color: var(--ink); }
.header_utility a { color: var(--ink_soft); font-weight: 600; }
.header_utility a:hover { color: var(--brand); }
.header_nav {
  grid-area: nav;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  padding-top: 6px;
}
.nav_menu { display: flex; align-items: center; gap: 4px; }
.nav_menu a {
  padding: 9px 13px;
  color: var(--ink_soft);
  font-weight: 650;
  font-size: 14.5px;
  border-radius: 999px;
}
.nav_menu a:hover, .nav_menu a.active { background: #e9f6fb; color: var(--brand); }
.nav_actions { display: flex; align-items: center; gap: 10px; margin-left: 10px; }
.lang_switch {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink_soft);
  font-weight: 750;
  background: #fff;
  font-size: 13.5px;
}
.lang_switch:hover { border-color: var(--brand_2); color: var(--brand); }
.nav_toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: #e9f6fb;
  border-radius: 14px;
  color: var(--ink);
  cursor: pointer;
}
.nav_toggle span,
.nav_toggle::before,
.nav_toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
  transition: .2s ease;
}
.nav_toggle[aria-expanded="true"] span { opacity: 0; }
.nav_toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.nav_toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn_primary { background: linear-gradient(135deg, var(--brand), var(--brand_2)); color: #fff; box-shadow: 0 16px 34px rgba(11, 111, 164, .26); }
.btn_secondary { background: #fff; color: var(--brand_3); border-color: var(--line); }
.btn_ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.34); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 82% -8%, rgba(23,176,182,.16), transparent 60%),
    radial-gradient(900px 480px at 8% 4%, rgba(11,111,164,.12), transparent 55%),
    var(--bg);
  padding: 74px 0 66px;
}
.hero_grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 52px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #e9f6fb;
  color: var(--brand);
  font-weight: 750;
  font-size: 13px;
  letter-spacing: .02em;
  margin-bottom: 20px;
}
.hero h1 { font-size: clamp(38px, 5.4vw, 62px); font-weight: 850; color: var(--brand_3); }
.hero h1 span { background: linear-gradient(120deg, var(--brand), var(--brand_2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero_lead { margin-top: 22px; font-size: 19px; color: var(--ink_soft); max-width: 560px; }
.hero_actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero_trust { margin-top: 34px; }
.hero_trust span { display: block; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); margin-bottom: 14px; }
.trust_logos { display: flex; flex-wrap: wrap; gap: 10px; }
.trust_logos b {
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--brand_3);
  font-weight: 750;
  font-size: 14px;
  box-shadow: var(--shadow_soft);
}

/* Hero KPI card */
.hero_panel {
  background: linear-gradient(160deg, #fff, var(--bg_soft));
  border: 1px solid var(--line);
  border-radius: var(--radius_lg);
  box-shadow: var(--shadow);
  padding: 28px;
}
.hero_panel h3 { font-size: 15px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 750; }
.kpi_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.kpi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.kpi strong { display: block; font-size: 30px; color: var(--brand); letter-spacing: -.03em; }
.kpi span { font-size: 13.5px; color: var(--muted); }
.hero_panel_foot { display: flex; align-items: center; gap: 10px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--ink_soft); }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 4px rgba(31,157,118,.16); }

/* ---------- Sections ---------- */
.section { padding: 82px 0; }
.section_soft { background: var(--bg_soft); }
.section_deep { background: var(--bg_deep); color: #cfe6f1; }
.section_head { max-width: 720px; margin-bottom: 44px; }
.section_kicker { color: var(--brand); font-weight: 800; text-transform: uppercase; letter-spacing: .15em; font-size: 13px; margin-bottom: 12px; }
.section_title { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; color: var(--brand_3); }
.section_deep .section_title { color: #fff; }
.section_intro { margin-top: 16px; font-size: 17.5px; color: var(--ink_soft); }
.section_deep .section_intro { color: #a9cfe0; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid_2 { grid-template-columns: repeat(2, 1fr); }
.grid_3 { grid-template-columns: repeat(3, 1fr); }
.grid_4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow_soft);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.icon_badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--brand), var(--brand_2));
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
}
.card h3 { font-size: 19px; color: var(--brand_3); margin-bottom: 8px; }
.card p { color: var(--ink_soft); font-size: 15px; }
.card ul { margin: 14px 0 0; padding-left: 18px; color: var(--ink_soft); font-size: 14.5px; }
.card ul li { margin-bottom: 6px; }

/* ---------- Value / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* ---------- Office media ---------- */
.office_media {
  margin: 0;
  border-radius: var(--radius_lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(160deg, #fff, var(--bg_soft));
}
.office_media img { width: 100%; height: 100%; max-height: 420px; object-fit: cover; display: block; }
.office_media figcaption {
  padding: 12px 18px;
  font-size: 13.5px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.office_media.is_missing img { display: none; }
.office_media.is_missing {
  min-height: 300px;
  display: grid;
  place-items: center;
}
.office_media.is_missing figcaption {
  border-top: 0;
  font-weight: 650;
  color: var(--ink_soft);
  text-align: center;
}
.office_media.is_missing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 70% 0%, rgba(41,154,212,.14), transparent 60%),
    radial-gradient(500px 260px at 10% 100%, rgba(35,107,163,.12), transparent 55%);
  pointer-events: none;
}
.check_list { list-style: none; margin: 22px 0 0; padding: 0; }
.check_list li { position: relative; padding-left: 34px; margin-bottom: 14px; color: var(--ink_soft); font-size: 16px; }
.check_list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(31,157,118,.14);
  color: var(--good);
  font-weight: 800;
  font-size: 13px;
}
.visual_card {
  background: linear-gradient(160deg, #fff, var(--bg_soft));
  border: 1px solid var(--line);
  border-radius: var(--radius_lg);
  padding: 34px;
  box-shadow: var(--shadow);
}
.stat_row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat { text-align: center; padding: 18px 10px; border-radius: 16px; background: #fff; border: 1px solid var(--line); }
.stat strong { display: block; font-size: clamp(26px, 4vw, 38px); color: var(--brand); letter-spacing: -.03em; }
.stat span { font-size: 13px; color: var(--muted); }

/* ---------- Audience pills ---------- */
.audience { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.audience span {
  padding: 9px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand_3);
}

/* ---------- Deep metric band ---------- */
.metric_band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.metric_band .metric strong { display: block; font-size: clamp(30px, 4.6vw, 48px); color: #fff; letter-spacing: -.03em; }
.metric_band .metric span { color: #9fc9dc; font-size: 14px; }

/* ---------- CEO quote ---------- */
.quote_card {
  background: linear-gradient(160deg, #fff, var(--bg_soft));
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand_2);
  border-radius: var(--radius_lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.quote_card blockquote { margin: 0; font-size: clamp(19px, 2.4vw, 25px); color: var(--brand_3); font-weight: 600; line-height: 1.4; }
.quote_author { margin-top: 22px; display: flex; align-items: center; gap: 14px; }
.quote_author .avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand_2)); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 18px; }
.quote_author b { display: block; color: var(--ink); }
.quote_author small { color: var(--muted); }

/* ---------- CTA band ---------- */
.cta_band {
  background: linear-gradient(135deg, var(--brand_3), var(--brand));
  color: #fff;
  border-radius: var(--radius_lg);
  padding: 54px;
  text-align: center;
  box-shadow: var(--shadow);
}
.cta_band h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; }
.cta_band p { margin-top: 14px; color: #d7eefb; font-size: 18px; max-width: 640px; margin-inline: auto; }
.cta_band .hero_actions { justify-content: center; }

/* ---------- Footer ---------- */
.site_footer { background: var(--bg_deep); color: #a9cfe0; padding: 64px 0 30px; }
.footer_grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 34px; }
.footer_brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer_brand img { width: 56px; height: 56px; object-fit: contain; }
.footer_brand .brand_text { gap: 6px; }
.footer_brand .wm { font-size: 18px; font-weight: 700; }
.footer_brand .wm_1 { color: #ffffff; }
.footer_brand .wm_2 { color: #4aa3e0; }
.footer_brand .wm_3 { color: var(--logo_cyan); }
.footer_col h3 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer_col a { display: block; color: #a9cfe0; margin-bottom: 10px; font-size: 14.5px; }
.footer_col a:hover { color: #fff; }
.footer_note { color: #7fb0c8; font-size: 14.5px; max-width: 340px; }
.footer_bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #7fb0c8; font-size: 13.5px; }

/* ---------- Interior page hero ---------- */
.page_hero {
  background:
    radial-gradient(900px 440px at 88% -10%, rgba(41,154,212,.16), transparent 58%),
    radial-gradient(760px 420px at 6% 6%, rgba(35,107,163,.12), transparent 55%),
    var(--bg_soft);
  padding: 56px 0 52px;
  border-bottom: 1px solid var(--line);
}
.breadcrumbs { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
.breadcrumbs a { color: var(--brand); font-weight: 650; }
.page_hero h1 { font-size: clamp(32px, 4.6vw, 52px); font-weight: 800; color: var(--brand_3); }
.page_hero h1 span { color: var(--brand); }
.page_lead { margin-top: 18px; font-size: 18px; color: var(--ink_soft); max-width: 720px; }
.page_hero .hero_actions { margin-top: 26px; }
.feature_bar { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.feature_pill {
  padding: 8px 15px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--brand_3);
  font-weight: 700;
  font-size: 13.5px;
  box-shadow: var(--shadow_soft);
}

/* ---------- Contact + forms ---------- */
.contact_grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.contact_panel {
  background: linear-gradient(160deg, #fff, var(--bg_soft));
  border: 1px solid var(--line);
  border-radius: var(--radius_lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact_panel h2 { font-size: 22px; color: var(--brand_3); margin-bottom: 18px; }
.contact_item { padding: 14px 0; border-top: 1px solid var(--line); }
.contact_item:first-of-type { border-top: 0; }
.contact_item strong { display: block; font-size: 12.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: 4px; }
.contact_item a, .contact_item span { color: var(--ink_soft); font-size: 15px; }
.contact_item a:hover { color: var(--brand); }
.form_card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius_lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form_card h2 { font-size: 22px; color: var(--brand_3); margin-bottom: 20px; }
.form_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; }
.field_full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 650; color: var(--ink_soft); }
.field input, .field textarea, .field select {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--bg_soft);
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--brand_2);
  box-shadow: 0 0 0 3px rgba(41,154,212,.16);
  background: #fff;
}
.form_card .btn { margin-top: 20px; }
.status_text { color: var(--brand); font-weight: 700; margin-top: 14px; }

/* ---------- Accordion ---------- */
.accordion { display: grid; gap: 14px; }
.accordion details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 6px 22px;
  box-shadow: var(--shadow_soft);
}
.accordion summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--brand_3);
  padding: 16px 0;
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; float: right; color: var(--brand); font-weight: 800; }
.accordion details[open] summary::after { content: "–"; }
.accordion p { padding: 0 0 18px; color: var(--ink_soft); font-size: 15px; }

/* ---------- Prose (legal pages) ---------- */
.prose { max-width: 780px; }
.prose h2 { font-size: 22px; color: var(--brand_3); margin: 34px 0 12px; }
.prose p { color: var(--ink_soft); margin-bottom: 14px; }
.prose ul { color: var(--ink_soft); padding-left: 20px; margin-bottom: 14px; }
.prose li { margin-bottom: 8px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is_visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero_grid { grid-template-columns: 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .grid_4 { grid-template-columns: repeat(2, 1fr); }
  .grid_3 { grid-template-columns: repeat(2, 1fr); }
  .metric_band { grid-template-columns: repeat(2, 1fr); }
  .footer_grid { grid-template-columns: 1fr 1fr; }
  .contact_grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 860px) {
  .nav_toggle { display: block; }
  .header_grid {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "brand utility"
      "brand nav";
    column-gap: 16px;
  }
  .header_utility { border-bottom: 0; padding-bottom: 0; gap: 12px; font-size: 12.5px; }
  .header_utility .util_contact { display: none; }
  .header_nav { justify-content: flex-end; }
  .nav_menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 88vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    background: #fff;
    box-shadow: -24px 0 70px rgba(8,42,63,.18);
    padding: 92px 22px 30px;
    transform: translateX(106%);
    transition: transform .22s ease;
  }
  .nav_menu.is_open { transform: translateX(0); }
  .nav_menu a { font-size: 17px; padding: 13px 15px; }
}
@media (max-width: 620px) {
  .grid_2, .grid_3, .grid_4 { grid-template-columns: 1fr; }
  .metric_band { grid-template-columns: 1fr 1fr; }
  .footer_grid { grid-template-columns: 1fr; }
  .kpi_grid { grid-template-columns: 1fr 1fr; }
  .stat_row { grid-template-columns: 1fr; }
  .form_grid { grid-template-columns: 1fr; }
  .cta_band { padding: 38px 24px; }
  .hero_actions .btn { width: 100%; }
  .brand_logo { width: 60px; height: 60px; }
  .brand_text .wm { font-size: 19px; }
}
