/* NRWCS shared styles — edit here, run build, every page updates. */

:root {
  --color-navy: #0D4894;
  --color-navy-dark: #224A77;
  --color-navy-overlay: #234162;
  --color-orange: #CE7333;
  /* darkened orange for white button text: 5.3:1 vs the base #CE7333's 3.4:1 (WCAG AA) */
  --color-orange-deep: #A9541B;
  --color-orange-deeper: #8F4616;
  --color-green: #2E8A64;
  --color-slate: #5A6169;
  --color-white: #FFFFFF;
  --color-offwhite: #F7F8FA;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Lora', Georgia, serif;
  --shadow-card: 0 2px 12px rgba(13, 72, 148, 0.06);
  --shadow-card-hover: 0 8px 28px rgba(13, 72, 148, 0.12);
  --radius: 14px;
  --topbar-h: 38px;
  --header-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font-sans);
  color: var(--color-slate);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { color: var(--color-navy); line-height: 1.18; font-weight: 800; letter-spacing: -0.02em; }

a { color: var(--color-navy); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 1rem; font-weight: 600;
  padding: 15px 30px; border-radius: 10px; border: none; cursor: pointer;
  text-decoration: none; transition: background-color .25s, box-shadow .25s, transform .25s;
}
.btn svg { transition: transform .25s; }
.btn:hover svg { transform: translateX(3px); }
.btn-orange { background: var(--color-orange-deep); color: var(--color-white); }
.btn-orange:hover { background: var(--color-orange-deeper); box-shadow: 0 8px 20px rgba(169, 84, 27, 0.35); transform: translateY(-2px); }
.btn-white { background: var(--color-white); color: var(--color-navy); }
.btn-white:hover { background: var(--color-offwhite); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); transform: translateY(-2px); }

:focus-visible { outline: 3px solid var(--color-orange); outline-offset: 3px; border-radius: 4px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--color-navy-dark); color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem; height: var(--topbar-h);
  display: flex; align-items: center;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar a { color: var(--color-white); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { text-decoration: underline; }
.topbar-trust { display: flex; align-items: center; gap: 7px; }
.topbar-trust svg { flex-shrink: 0; }
@media (max-width: 560px) { .topbar-trust { display: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(13, 72, 148, 0.08);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(13, 72, 148, 0.08); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.logo-link svg { display: block; height: 48px; width: auto; }

.main-nav > ul { display: flex; list-style: none; gap: 6px; align-items: center; }
.main-nav a {
  position: relative; display: block; padding: 10px 13px;
  color: var(--color-slate); text-decoration: none;
  font-size: 0.95rem; font-weight: 500;
  transition: color .22s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 5px;
  height: 2px; background: var(--color-orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--color-navy); }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--color-navy); font-weight: 600; }
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }

/* Dropdown menus */
.main-nav .nav-parent {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 500;
  color: var(--color-slate); padding: 10px 13px; transition: color .22s;
}
.main-nav .nav-parent:hover, .main-nav .nav-parent:focus-visible,
.has-dropdown:hover .nav-parent, .has-dropdown:focus-within .nav-parent { color: var(--color-navy); }
.nav-chevron { transition: transform .25s; margin-top: 1px; }
.has-dropdown:hover .nav-chevron, .has-dropdown:focus-within .nav-chevron,
.nav-parent[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

.has-dropdown { position: relative; }
.dropdown {
  display: block; position: absolute; top: calc(100% + 4px); left: 0; z-index: 200;
  min-width: 248px; list-style: none;
  background: var(--color-white); border: 1px solid rgba(13, 72, 148, 0.1);
  border-radius: 12px; box-shadow: 0 16px 40px rgba(13, 72, 148, 0.16);
  padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown,
.nav-parent[aria-expanded="true"] + .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li { display: block; }
.dropdown a {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 500; color: var(--color-slate);
  white-space: nowrap; transition: background .18s, color .18s;
}
.dropdown a::after { display: none; }
.dropdown a:hover, .dropdown a:focus-visible { background: var(--color-offwhite); color: var(--color-navy); }
.dropdown a[aria-current="page"] { background: rgba(13, 72, 148, 0.08); color: var(--color-navy); font-weight: 600; }
.dropdown a.external-link svg { opacity: 0.6; flex-shrink: 0; }

/* Apply Now button inside the nav */
.main-nav .btn-nav {
  padding: 11px 22px; font-size: 0.92rem; color: var(--color-white); margin-left: 8px;
}
.main-nav .btn-nav::after { display: none; }
.main-nav .btn-nav:hover, .main-nav .btn-nav:focus-visible { color: var(--color-white); }
.main-nav .btn-nav[aria-current="page"] { color: var(--color-white); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; border-radius: 8px;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 24px; height: 2.5px; border-radius: 2px;
  background: var(--color-navy); position: relative; content: ""; transition: transform .3s, opacity .3s;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; inset: calc(var(--header-h)) 0 auto 0; z-index: 99;
    background: var(--color-white);
    border-bottom: 1px solid rgba(13, 72, 148, 0.1);
    box-shadow: 0 20px 40px rgba(13, 72, 148, 0.12);
    transform: translateY(-115%); transition: transform .35s ease;
    visibility: hidden;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); visibility: visible; }
  .main-nav > ul { flex-direction: column; gap: 0; padding: 12px 24px 20px; align-items: stretch; }
  .main-nav > ul > li > a,
  .main-nav .nav-parent { font-size: 1.1rem; padding: 14px 4px; border-bottom: 1px solid rgba(13, 72, 148, 0.06); }
  .main-nav a::after { display: none; }

  /* Dropdowns become inline accordions on mobile */
  .has-dropdown { position: static; }
  .main-nav .nav-parent { width: 100%; justify-content: space-between; }
  .dropdown {
    position: static; min-width: 0;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-radius: 0; padding: 4px 0 8px 14px;
    display: none;
  }
  .has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { display: none; }
  .nav-parent[aria-expanded="true"] + .dropdown { display: block; }
  .dropdown a { font-size: 1rem; padding: 12px 8px; }

  .main-nav .nav-apply { margin-top: 16px; }
  .main-nav .btn-nav { margin-left: 0; justify-content: center; border-bottom: none; }
}

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: min(88vh, 760px);
  display: flex; align-items: center;
  padding: 96px 0;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(35, 65, 98, 0.82) 0%, rgba(35, 65, 98, 0.55) 55%, rgba(35, 65, 98, 0.42) 100%);
}
.hero-content { max-width: 700px; }
.hero-kicker {
  display: inline-block; color: var(--color-white); font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 26px;
}
.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  margin-bottom: 10px; max-width: 15ch;
}
.hero-sub {
  color: var(--color-white); font-weight: 800;
  font-size: clamp(1.4rem, 2.8vw, 2rem); letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero-sub em { font-style: normal; color: #F5A96B; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; list-style: none; }
.hero-pills li {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--color-white); font-size: 0.9rem; font-weight: 500;
  background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(4px);
  padding: 9px 16px; border-radius: 999px;
}
.hero-pills svg { flex-shrink: 0; }
@media (max-width: 640px) {
  .hero { padding: 72px 0; }
  .hero-pills { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-pills li { font-size: 0.82rem; padding: 9px 12px; }
}
@media (max-width: 400px) { .hero-pills { grid-template-columns: 1fr; } }

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative; isolation: isolate;
  min-height: 380px;
  display: flex; align-items: center;
  padding: 72px 0 64px;
}
.page-hero .hero-bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(35, 65, 98, 0.88) 0%, rgba(35, 65, 98, 0.62) 55%, rgba(35, 65, 98, 0.46) 100%);
}
.page-hero h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 4.2vw, 3rem);
  max-width: 22ch; margin-bottom: 16px;
}
.page-hero .page-hero-sub {
  color: rgba(255, 255, 255, 0.92); font-size: 1.12rem; max-width: 620px;
}
.breadcrumbs { margin-bottom: 22px; font-size: 0.88rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.75); }
.breadcrumbs li + li::before { content: "/"; color: rgba(255, 255, 255, 0.45); }
.breadcrumbs a { color: rgba(255, 255, 255, 0.9); text-decoration: none; font-weight: 500; }
.breadcrumbs a:hover { text-decoration: underline; color: var(--color-white); }
.breadcrumbs [aria-current="page"] { color: var(--color-white); font-weight: 600; }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
@media (max-width: 640px) { section { padding: 64px 0; } }
.section-heading { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.section-sub { max-width: 640px; font-size: 1.05rem; }
.section-center { text-align: center; }
.section-center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Two-column intro (text + image) ---------- */
.intro-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; }
.intro-grid h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); margin-bottom: 22px; }
.intro-grid p + p { margin-top: 16px; }
.intro-copy .btn { margin-top: 30px; }
.img-card { border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 40px rgba(13, 72, 148, 0.14); }
.img-card img { display: block; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Features / benefit cards ---------- */
.features { background: var(--color-offwhite); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 12px;
}
.features-grid.grid-2 { grid-template-columns: repeat(2, 1fr); margin-top: 44px; }
.feature-card {
  background: var(--color-white); border: 1px solid rgba(13, 72, 148, 0.07);
  border-radius: var(--radius); padding: 38px 32px;
  box-shadow: var(--shadow-card);
  transition: box-shadow .3s, transform .3s;
}
.feature-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(13, 72, 148, 0.07);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.feature-card h3 { font-size: 1.22rem; margin-bottom: 12px; font-weight: 700; }
.feature-card p { font-size: 0.98rem; }
.card-link { color: var(--color-navy); text-decoration: none; }
.card-link:hover, .card-link:focus-visible { text-decoration: underline; text-decoration-color: var(--color-orange); text-underline-offset: 4px; }
@media (max-width: 900px) {
  .features-grid, .features-grid.grid-2 { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

/* ---------- Mission / numbered list ---------- */
.mission { background: var(--color-white); }
.mission-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; }
.mission h2 { font-size: clamp(1.45rem, 2.6vw, 1.9rem); margin-bottom: 30px; font-weight: 700; }
.mission-label { font-weight: 700; color: var(--color-navy); margin-bottom: 20px; font-size: 1.05rem; }
.mission-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.mission-list li { display: flex; gap: 18px; align-items: flex-start; }
.mission-num {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: var(--color-orange); color: var(--color-white);
  font-weight: 800; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.mission-list p { padding-top: 8px; }
.mission-list h3 { font-size: 1.08rem; margin: 8px 0 4px; font-weight: 700; }
.mission-list li > div p { padding-top: 0; }
@media (max-width: 900px) { .mission-grid { grid-template-columns: 1fr; gap: 44px; } }

/* ---------- Quote card ---------- */
.quote-card {
  background: var(--color-white); border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(13, 72, 148, 0.12);
  border: 1px solid rgba(13, 72, 148, 0.06);
  padding: 46px 42px;
  position: relative;
}
.quote-mark { color: var(--color-orange); margin-bottom: 18px; }
.quote-card blockquote p {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  color: var(--color-navy); font-size: 1.32rem; line-height: 1.55;
  margin-bottom: 22px;
}
.quote-card cite { font-style: normal; color: var(--color-slate); font-weight: 600; font-size: 0.95rem; }
@media (max-width: 900px) { .quote-card { padding: 36px 28px; } }

/* ---------- Stat band ---------- */
.stat-band { background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%); }
.stat-band-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.stat-value {
  color: var(--color-white); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: -0.02em; line-height: 1.1; display: block;
}
.stat-value em { font-style: normal; color: #F5A96B; }
.stat-label { color: rgba(255, 255, 255, 0.82); font-size: 0.98rem; margin-top: 10px; }
@media (max-width: 760px) { .stat-band-grid { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- Credibility / marquee ---------- */
.credibility { background: var(--color-offwhite); text-align: center; }
.credibility .section-sub { margin: 0 auto 52px; }
.marquee {
  overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 18px; width: max-content;
  animation: marquee 38s linear infinite;
  padding: 4px 0;
}
.marquee:hover .marquee-track, .marquee:focus-within .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.logo-chip {
  display: inline-flex; align-items: center; white-space: nowrap;
  background: var(--color-white); border: 1px solid rgba(13, 72, 148, 0.1);
  color: var(--color-navy-dark); font-weight: 600; font-size: 1rem;
  padding: 16px 28px; border-radius: 12px; margin-right: 18px;
  box-shadow: var(--shadow-card);
}
@media (max-width: 640px) {
  .marquee-track { animation-duration: 52s; }
  .logo-chip { font-size: 1.05rem; padding: 18px 30px; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee { mask-image: none; -webkit-mask-image: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .marquee-track[aria-hidden="true"] { display: none; }
}

/* ---------- Final CTA ---------- */
.final-cta { background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%); text-align: center; }
.final-cta h2 { color: var(--color-white); font-size: clamp(1.6rem, 3vw, 2.3rem); max-width: 21ch; margin: 0 auto 18px; }
.final-cta p { color: rgba(255, 255, 255, 0.85); max-width: 540px; margin: 0 auto 36px; font-size: 1.05rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-navy); color: rgba(255, 255, 255, 0.78); font-size: 0.93rem; }
.footer-grid {
  display: grid; grid-template-columns: 1fr 1.1fr 1fr 1.2fr;
  gap: 40px; padding: 72px 0 56px;
}
.footer-contact address { font-style: normal; line-height: 1.85; color: rgba(255, 255, 255, 0.78); }
.footer-contact address a { color: var(--color-white); font-weight: 600; text-decoration: none; }
.footer-contact address a:hover { text-decoration: underline; }
.site-footer h3 { color: var(--color-white); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.site-footer ul a { color: rgba(255, 255, 255, 0.78); text-decoration: none; transition: color .2s; }
.site-footer ul a:hover { color: var(--color-white); text-decoration: underline; }
.footer-social { margin-top: 20px; }
.footer-social a {
  display: inline-flex; width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.1); color: var(--color-white);
  align-items: center; justify-content: center; transition: background .2s;
}
.footer-social a:hover { background: rgba(255, 255, 255, 0.22); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0; font-size: 0.83rem; color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Prose (blog posts, legal, long-form) ---------- */
.prose-wrap { max-width: 760px; margin: 0 auto; }
.prose { color: var(--color-slate); font-size: 1.06rem; line-height: 1.75; }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.7rem); margin-top: 1.8em; }
.prose h3 { font-size: 1.2rem; margin-top: 1.6em; color: var(--color-navy); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-top: 0.5em; }
.prose li::marker { color: var(--color-orange); }
.prose strong { color: var(--color-navy); }
.prose a { color: var(--color-navy); text-decoration: underline; text-decoration-color: rgba(206,115,51,0.5); text-underline-offset: 3px; }
.prose blockquote {
  border-left: 3px solid var(--color-orange); padding: 6px 0 6px 22px;
  font-family: var(--font-serif); font-style: italic; color: var(--color-navy); font-size: 1.2rem;
}
.prose .lead { font-size: 1.2rem; color: var(--color-navy-dark); font-weight: 500; }
.legal-meta { color: var(--color-slate); font-size: 0.92rem; margin-bottom: 8px; }

/* ---------- Check list ---------- */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.02rem; }
.check-list .check {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(46, 138, 100, 0.14); display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.check-list li strong { color: var(--color-navy); }

/* ---------- Forms ---------- */
.form-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .form-layout { grid-template-columns: 1fr; gap: 40px; } }
.form-card {
  background: var(--color-offwhite); border: 1px solid rgba(13, 72, 148, 0.08);
  border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-card);
}

/* GoHighLevel form embed wrapper */
.form-embed {
  background: var(--color-offwhite); border: 1px solid rgba(13, 72, 148, 0.08);
  border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow-card);
  overflow: hidden;
}
.form-embed iframe { display: block; width: 100%; border: none; border-radius: 3px; }
.form-note {
  font-size: 0.82rem; color: var(--color-slate); background: rgba(206, 115, 51, 0.08);
  border: 1px dashed rgba(206, 115, 51, 0.4); border-radius: 8px; padding: 10px 14px; margin-bottom: 26px;
}
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; color: var(--color-navy); font-size: 0.92rem; margin-bottom: 7px; }
.field .req { color: var(--color-orange-deep); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-sans); font-size: 1rem; color: var(--color-navy-dark);
  padding: 13px 15px; border: 1px solid rgba(13, 72, 148, 0.18); border-radius: 9px;
  background: var(--color-white); transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--color-navy); box-shadow: 0 0 0 3px rgba(13, 72, 148, 0.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-opt { display: flex; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid rgba(13,72,148,0.18); border-radius: 9px; background: var(--color-white); cursor: pointer; }
.radio-opt input { width: auto; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }

.contact-aside { display: flex; flex-direction: column; gap: 24px; }
.info-block { display: flex; gap: 16px; align-items: flex-start; }
.info-block .info-icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: rgba(13,72,148,0.07); display: flex; align-items: center; justify-content: center; }
.info-block h3 { font-size: 1.02rem; margin-bottom: 3px; }
.info-block a { color: var(--color-navy); font-weight: 600; text-decoration: none; }
.info-block a:hover { text-decoration: underline; }
.info-block address { font-style: normal; color: var(--color-slate); line-height: 1.6; }

/* Price callout */
.price-tag { display: inline-flex; align-items: baseline; gap: 8px; margin-bottom: 22px; }
.price-tag .amt { font-size: 2.4rem; font-weight: 800; color: var(--color-navy); letter-spacing: -0.02em; }
.price-tag .per { color: var(--color-slate); font-size: 0.98rem; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.post-card {
  display: flex; flex-direction: column; background: var(--color-white);
  border: 1px solid rgba(13, 72, 148, 0.08); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card); transition: box-shadow .3s, transform .3s;
}
.post-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.post-card .thumb { aspect-ratio: 16 / 10; overflow: hidden; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .thumb img { transform: scale(1.05); }
.post-card .body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.tag { align-self: flex-start; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-orange-deep); background: rgba(206,115,51,0.1); padding: 5px 11px; border-radius: 999px; margin-bottom: 14px; }
.post-card h3 { font-size: 1.16rem; line-height: 1.3; margin-bottom: 10px; }
.post-card h3 a { color: var(--color-navy); text-decoration: none; }
.post-card h3 a:hover { color: var(--color-navy-dark); }
.post-card p { font-size: 0.95rem; margin-bottom: 18px; }
.post-card .read-more { margin-top: auto; font-weight: 600; color: var(--color-orange-deep); text-decoration: none; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 6px; }
.post-card .read-more:hover { gap: 9px; }

/* ---------- Sitemap page ---------- */
.sitemap-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 760px) { .sitemap-cols { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 460px) { .sitemap-cols { grid-template-columns: 1fr; } }
.sitemap-cols h2 { font-size: 1.1rem; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid rgba(13,72,148,0.1); }
.sitemap-cols ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sitemap-cols a { color: var(--color-slate); text-decoration: none; }
.sitemap-cols a:hover { color: var(--color-navy); text-decoration: underline; }

/* ---------- Thank-you ---------- */
.thankyou { text-align: center; max-width: 620px; margin: 0 auto; }
.thankyou .ty-icon { width: 84px; height: 84px; border-radius: 50%; background: rgba(46,138,100,0.14); display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; }
.thankyou h1 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 16px; }
.thankyou p { font-size: 1.08rem; margin-bottom: 30px; }

/* ---------- Leadership ---------- */
.leader-card { display: flex; gap: 26px; align-items: center; background: var(--color-white); border: 1px solid rgba(13,72,148,0.08); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-card); }
.leader-avatar { flex-shrink: 0; width: 96px; height: 96px; border-radius: 50%; background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%); color: var(--color-white); display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; }
.leader-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.leader-card .role { color: var(--color-orange-deep); font-weight: 600; font-size: 0.95rem; }
@media (max-width: 520px) { .leader-card { flex-direction: column; text-align: center; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .feature-card, .main-nav a { transition: none; }
}
