:root {
  --navy: #082438;
  --navy-deep: #041722;
  --blue: #0579b8;
  --aqua: #42c4d7;
  --red: #e33843;
  --orange: #f47736;
  --ink: #102b3c;
  --muted: #5f7180;
  --line: #dce8ee;
  --soft: #f2f8fa;
  --white: #fff;
  --shadow: 0 24px 70px rgba(8,36,56,.13);
  --shadow-sm: 0 12px 34px rgba(8,36,56,.08);
  --radius: 22px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 118px; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: #fff; font: 400 1rem/1.7 "Segoe UI Variable", "Segoe UI", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-underline-offset: 4px; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 999; padding: 10px 15px; color: #fff; background: var(--navy); border-radius: 7px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.topbar { color: #d8e7ed; background: var(--navy-deep); font-size: .8rem; }
.topbar-inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar-inner > span { color: #a9c2ce; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.topbar-contact { display: flex; gap: 25px; }
.topbar a { color: #eef8fb; text-decoration: none; }
.topbar a:hover { color: var(--aqua); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(8,36,56,.08); box-shadow: 0 6px 26px rgba(8,36,56,.06); backdrop-filter: blur(14px); }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.brand { width: 222px; flex: 0 0 auto; }
.brand img { width: 100%; }
.primary-nav { display: flex; align-items: center; gap: 29px; }
.primary-nav a { position: relative; color: #19384a; font-size: .88rem; font-weight: 750; text-decoration: none; }
.primary-nav > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; content: ""; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.primary-nav > a:hover::after { transform: scaleX(1); }
.primary-nav .nav-cta { min-height: 44px; display: inline-flex; align-items: center; padding: 10px 19px; color: #fff; background: var(--red); border-radius: 8px; box-shadow: 0 9px 22px rgba(227,56,67,.2); }
.primary-nav .nav-cta:hover { background: #c92a35; }
.menu-toggle { width: 45px; height: 45px; display: none; padding: 10px; border: 1px solid var(--line); background: #fff; border-radius: 9px; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { width: 22px; height: 2px; display: block; margin: 5px auto; background: var(--navy); transition: .2s ease; }

.hero { position: relative; padding: 78px 0 88px; overflow: hidden; background: linear-gradient(135deg, #f7fbfc 0%, #eef8fa 62%, #e3f3f7 100%); }
.hero::before { position: absolute; top: -220px; right: -190px; width: 600px; height: 600px; content: ""; border: 100px solid rgba(66,196,215,.1); border-radius: 50%; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(48px, 6vw, 86px); }
.kicker, .eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--blue); font-size: .76rem; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.kicker::before, .eyebrow::before { width: 29px; height: 3px; content: ""; background: var(--red); border-radius: 9px; }
.eyebrow.light { color: #7fe2ed; }
.hero h1 { max-width: 650px; margin: 17px 0 23px; color: var(--navy); font-size: clamp(3.2rem, 2.8vw, 2.55rem); font-weight: 820; line-height: .98; letter-spacing: -.06em; text-wrap: balance; }
.hero-copy > p { max-width: 620px; margin: 0; color: var(--muted); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { min-height: 51px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 23px; border: 2px solid transparent; border-radius: 8px; font-size: .9rem; font-weight: 800; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--red); box-shadow: 0 13px 28px rgba(227,56,67,.22); }
.button-primary:hover { color: #fff; background: #c92a35; }
.button-secondary { color: var(--navy); background: #fff; border-color: #cbdde5; }
.button-secondary:hover { color: var(--blue); border-color: #9fc7d7; }
.button-dark { color: #fff; background: var(--navy); }
.button-dark:hover { color: #fff; background: var(--blue); }
.button-white { color: var(--navy); background: #fff; box-shadow: 0 13px 30px rgba(0,0,0,.18); }
.hero-points { display: flex; flex-wrap: wrap; gap: 11px 24px; margin: 31px 0 0; padding: 0; color: #395466; font-size: .81rem; font-weight: 700; list-style: none; }
.hero-points li { position: relative; padding-left: 17px; }
.hero-points li::before { position: absolute; top: .58em; left: 0; width: 6px; height: 6px; content: ""; background: var(--aqua); border-radius: 50%; }
.hero-visual { position: relative; padding: 15px 15px 0 0; }
.hero-visual::before { position: absolute; top: 0; right: 0; width: 72%; height: 72%; content: ""; background: var(--aqua); border-radius: 26px; opacity: .23; }
.hero-visual img { position: relative; width: 100%; aspect-ratio: 1.22 / 1; object-fit: cover; object-position: 60% center; border-radius: 26px 26px 90px 26px; box-shadow: var(--shadow); }
.hero-badge { position: absolute; bottom: 28px; left: -38px; width: 210px; display: flex; align-items: center; gap: 13px; padding: 17px 18px; color: #d8e7ed; background: rgba(4,23,34,.95); border-left: 4px solid var(--orange); border-radius: 10px; box-shadow: 0 16px 35px rgba(4,23,34,.25); }
.hero-badge strong { color: #fff; font-size: 1.8rem; line-height: 1; }
.hero-badge span { font-size: .72rem; line-height: 1.35; }

.proof { position: relative; z-index: 2; margin-top: -1px; color: #fff; background: var(--navy); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { min-height: 115px; display: flex; flex-direction: column; justify-content: center; padding: 20px 30px; border-right: 1px solid rgba(255,255,255,.12); }
.proof-grid > div:last-child { border-right: 0; }
.proof strong { font-size: 1.45rem; }
.proof span { margin-top: 4px; color: #afc8d4; font-size: .75rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }

.section { position: relative; padding: 110px 0; }
.split { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); align-items: center; gap: clamp(55px, 7vw, 95px); }
.image-panel { position: relative; padding: 0 28px 28px 0; }
.image-panel::before { position: absolute; right: 0; bottom: 0; width: 72%; height: 72%; content: ""; background: var(--soft); border-radius: 22px; }
.image-panel img { position: relative; width: 100%; aspect-ratio: 1.18 / 1; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow); }
.image-rule { position: absolute; top: 28px; left: -10px; width: 5px; height: 120px; background: var(--red); border-radius: 8px; }
.section-copy h2, .section-heading h2, .faq-heading h2 { margin: 13px 0 22px; color: var(--navy); font-size: clamp(2.35rem, 4.3vw, 4rem); font-weight: 810; line-height: 1.04; letter-spacing: -.05em; text-wrap: balance; }
.section-copy p, .section-heading p, .faq-heading p { color: var(--muted); }
.section-copy p { margin: 0 0 17px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 10px; color: var(--blue); font-weight: 800; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading.centered { margin-right: auto; margin-left: auto; text-align: center; }

.programs { overflow: hidden; background: var(--soft); }
.programs::after { position: absolute; top: 100px; right: -160px; width: 380px; height: 380px; content: ""; border: 70px solid rgba(5,121,184,.045); border-radius: 50%; }
.program-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.program-card { position: relative; min-height: 290px; display: flex; flex-direction: column; padding: 31px; overflow: hidden; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 9px 28px rgba(8,36,56,.04); text-decoration: none; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.program-card:hover { transform: translateY(-7px); border-color: #a9cbd8; box-shadow: var(--shadow-sm); }
.program-card::after { position: absolute; right: -42px; bottom: -52px; width: 130px; height: 130px; content: ""; border: 23px solid rgba(66,196,215,.08); border-radius: 50%; }
.program-number { width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 10px; font-size: .71rem; font-weight: 850; letter-spacing: .08em; }
.program-card h3 { margin: 25px 0 10px; color: var(--navy); font-size: 1.3rem; line-height: 1.25; }
.program-card p { margin: 0 0 23px; color: var(--muted); }
.program-card strong { position: relative; z-index: 1; margin-top: auto; color: var(--blue); font-size: .82rem; }
.program-card.featured { color: #d8e8ef; background: var(--navy); border-color: var(--navy); }
.program-card.featured h3 { color: #fff; }
.program-card.featured p { color: #b8ced8; }
.program-card.featured .program-number { background: var(--red); }
.program-card.featured strong { color: #7ee1eb; }
.program-card.wide { grid-column: span 3; min-height: 0; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 25px; }
.program-card.wide h3 { margin-top: 0; }
.program-card.wide p { margin-bottom: 0; }

.responsibility { padding: 0; color: #d7e6ed; background: var(--navy-deep); }
.responsibility-grid { width: 100%; max-width: none; display: grid; grid-template-columns: 1fr 1fr; }
.responsibility-copy { display: flex; flex-direction: column; justify-content: center; padding: 94px max(32px, calc((100vw - var(--container))/2)); padding-right: clamp(46px, 6vw, 100px); }
.responsibility-copy h2 { max-width: 680px; margin: 13px 0 22px; color: #fff; font-size: clamp(2.4rem, 4.2vw, 4rem); line-height: 1.04; letter-spacing: -.05em; }
.responsibility-copy > p { max-width: 650px; color: #b6cbd5; }
.rescue-image img { width: 100%; height: 100%; min-height: 720px; object-fit: cover; object-position: center; }
.feature-list { display: grid; gap: 13px; margin-top: 26px; }
.feature-list article { display: grid; grid-template-columns: 39px 1fr; gap: 15px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.1); }
.feature-list article > span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--navy); background: var(--aqua); border-radius: 8px; font-size: .68rem; font-weight: 850; }
.feature-list h3 { margin: 0 0 3px; color: #fff; font-size: 1rem; }
.feature-list p { margin: 0; color: #aec4cf; font-size: .9rem; }

.pathway { background: #fff; }
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin: 0; padding: 0; list-style: none; }
.steps::before { position: absolute; top: 35px; right: 16%; left: 16%; height: 1px; content: ""; background: #bfd5de; }
.steps li { position: relative; padding: 0 24px; text-align: center; }
.steps li > span { position: relative; z-index: 1; width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 24px; color: #fff; background: var(--blue); border: 9px solid #e5f4f8; border-radius: 50%; font-size: 1rem; font-weight: 850; }
.steps li:nth-child(2) > span { background: var(--red); border-color: #fbe9eb; }
.steps h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.2rem; }
.steps p { margin: 0; color: var(--muted); }

.faq { background: var(--soft); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: clamp(55px, 7vw, 90px); }
.faq-heading { position: sticky; top: 132px; }
.faq-heading .button { margin-top: 15px; }
.accordion details { margin-bottom: 13px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 7px 23px rgba(8,36,56,.035); }
.accordion details[open] { border-color: #acd0dc; box-shadow: var(--shadow-sm); }
.accordion summary { position: relative; padding: 22px 62px 22px 24px; color: var(--navy); font-weight: 780; line-height: 1.45; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { position: absolute; top: 17px; right: 18px; width: 34px; height: 34px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 8px; content: "+"; font-size: 1.2rem; }
.accordion details[open] summary::after { content: "−"; background: var(--red); }
.accordion p { margin: 0; padding: 0 24px 22px; color: var(--muted); }

.final-cta { padding: 72px 0; color: #d8e9ef; background: linear-gradient(115deg, #0579b8, #086b9e 55%, #064c72); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta h2 { margin: 10px 0 10px; color: #fff; font-size: clamp(2.1rem, 3.7vw, 3.4rem); line-height: 1.05; letter-spacing: -.04em; }
.final-cta p { max-width: 700px; margin: 0; }
.cta-inner .button { flex: 0 0 auto; }

.site-footer { color: #b9cdd7; background: var(--navy-deep); }
.footer-main { display: grid; grid-template-columns: 1.15fr 1.15fr .8fr; gap: clamp(45px, 7vw, 90px); padding-top: 80px; padding-bottom: 58px; }
.footer-brand img { width: 230px; margin-bottom: 23px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 350px; }
.site-footer h2 { margin: 0 0 20px; color: #fff; font-size: .87rem; letter-spacing: .11em; text-transform: uppercase; }
.site-footer p, .site-footer address { margin: 0 0 17px; font-size: .9rem; font-style: normal; }
.site-footer ul { columns: 2; column-gap: 32px; margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-bottom: 10px; break-inside: avoid; }
.site-footer a { color: #d9e8ee; text-decoration: none; }
.site-footer a:hover { color: var(--aqua); }
.site-footer strong { color: #edf7fa; }
.footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; }

@media (max-width: 1020px) {
  .primary-nav { position: absolute; top: 88px; right: 24px; left: 24px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 13px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 13px 15px; }
  .primary-nav .nav-cta { margin-top: 6px; justify-content: center; }
  .primary-nav > a:not(.nav-cta)::after { display: none; }
  .menu-toggle { display: block; }
  .menu-toggle.active > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active > span:nth-child(2) { opacity: 0; }
  .menu-toggle.active > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 820px; }
  .hero-badge { left: 28px; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .program-card.wide { grid-column: span 2; }
  .responsibility-grid { grid-template-columns: 1fr; }
  .responsibility-copy { padding: 82px 40px; }
  .rescue-image img { min-height: 500px; }
  .faq-grid { grid-template-columns: 1fr; gap: 44px; }
  .faq-heading { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .topbar-inner { min-height: 45px; justify-content: center; }
  .topbar-inner > span { display: none; }
  .topbar-contact { width: 100%; justify-content: space-between; gap: 8px; font-size: .72rem; }
  .header-inner { min-height: 76px; }
  .brand { width: 180px; }
  .primary-nav { top: 76px; right: 15px; left: 15px; }
  .hero { padding: 64px 0 73px; }
  .hero h1 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .hero-copy > p { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-visual { padding: 9px 9px 0 0; }
  .hero-visual img { aspect-ratio: 1 / .92; border-radius: 18px 18px 55px 18px; }
  .hero-badge { right: 18px; bottom: 18px; left: 18px; width: auto; }
  .proof-grid { grid-template-columns: repeat(2,1fr); }
  .proof-grid > div { min-height: 96px; padding: 17px; }
  .proof-grid > div:nth-child(2) { border-right: 0; }
  .proof-grid > div:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.12); }
  .section { padding: 78px 0; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .section-copy h2, .section-heading h2, .faq-heading h2 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .program-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 260px; }
  .program-card.wide { grid-column: auto; display: flex; align-items: flex-start; }
  .responsibility-copy { padding: 72px 20px; }
  .responsibility-copy h2 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .rescue-image img { min-height: 380px; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .steps::before { top: 35px; bottom: 35px; left: 50%; width: 1px; height: auto; }
  .steps li { padding: 0 15px; background: #fff; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-main { grid-template-columns: 1fr; padding-top: 66px; }
  .footer-brand { grid-column: auto; }
  .site-footer ul { columns: 1; }
}

@media (max-width: 420px) {
  .topbar-contact { flex-direction: column; align-items: center; padding: 7px 0; }
  .hero h1 { font-size: 2.45rem; }
  .proof strong { font-size: 1.2rem; }
  .footer-bottom { flex-direction: column; justify-content: center; padding: 18px 0; }
}

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