:root {
  --navy: #0b3550;
  --navy-deep: #07283d;
  --teal: #176d72;
  --teal-dark: #11585c;
  --text: #263b48;
  --muted: #5c6f79;
  --line: #d9e3e7;
  --surface: #f4f7f8;
  --white: #fff;
  --shadow: 0 12px 34px rgba(7, 40, 61, .10);
  --radius: 6px;
  --content: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 106px; }
body { margin: 0; overflow-x: hidden; color: var(--text); background: var(--white); font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--teal); text-underline-offset: .18em; }
a:hover { color: var(--teal-dark); }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { margin: 0; color: var(--navy); line-height: 1.12; }
h1 { font-size: clamp(2.45rem, 5.2vw, 4.65rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 3.7vw, 3.25rem); letter-spacing: -.035em; }
h3 { font-size: 1.25rem; }
p { margin: 0; }
ul, ol { margin: 0; }

:focus-visible { outline: 3px solid #f2a900; outline-offset: 3px; }
.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; left: 14px; top: -90px; z-index: 4000; padding: 12px 16px; background: var(--white); color: var(--navy); font-weight: 800; box-shadow: var(--shadow); }
.skip-link:focus { top: 14px; }
.eyebrow { margin: 0 0 16px; color: var(--teal); font-size: .78rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow-light { color: #83d6d9; }

.site-header { position: sticky; top: 0; z-index: 2000; display: grid; grid-template-columns: 240px minmax(0, 1fr) auto; align-items: center; gap: 28px; min-height: 94px; padding: 10px max(24px, calc((100vw - var(--content)) / 2)); background: rgba(255, 255, 255, .98); border-bottom: 1px solid var(--line); box-shadow: 0 7px 24px rgba(7, 42, 64, .09); }
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { width: 238px; }
.site-header nav { display: flex; justify-content: flex-end; align-items: center; gap: clamp(14px, 2vw, 28px); }
.site-header nav a { color: var(--navy); text-decoration: none; font-size: .92rem; font-weight: 750; white-space: nowrap; }
.site-header nav a:hover { color: var(--teal); }
.header-contact { padding: 12px 16px; color: var(--white); background: var(--teal); border-radius: var(--radius); text-decoration: none; font-weight: 750; white-space: nowrap; }
.header-contact:hover { color: var(--white); background: var(--teal-dark); }
.menu-toggle { display: none; width: 46px; height: 42px; padding: 9px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--navy); }

.hero { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr); align-items: stretch; max-width: 1440px; min-height: 650px; margin: auto; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 84px clamp(28px, 5.8vw, 92px); }
.hero-lead { max-width: 760px; margin-top: 27px; color: #405762; font-size: clamp(1.08rem, 1.5vw, 1.3rem); }
.service-area { margin-top: 24px; color: var(--navy); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 49px; padding: 13px 20px; border: 1px solid transparent; border-radius: var(--radius); text-align: center; text-decoration: none; font-weight: 800; cursor: pointer; transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { color: var(--white); background: var(--teal); border-color: var(--teal); }
.button-primary:hover { color: var(--white); background: var(--teal-dark); border-color: var(--teal-dark); }
.button-secondary { color: var(--navy); background: var(--white); border-color: var(--navy); }
.button-secondary:hover { color: var(--white); background: var(--navy); }
.hero-media { position: relative; min-height: 650px; margin: 0; overflow: hidden; background: var(--surface); }
.hero-media picture, .hero-media img { width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: 68% center; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11, 53, 80, .08), transparent 30%); pointer-events: none; }
.hero-media figcaption { position: absolute; z-index: 2; right: 22px; bottom: 22px; max-width: 310px; padding: 10px 13px; color: var(--white); background: rgba(7, 40, 61, .83); border-radius: var(--radius); font-size: .82rem; }

.credential-strip { display: grid; grid-template-columns: repeat(3, 1fr); max-width: var(--content); margin: 0 auto; border: 1px solid var(--line); border-left: 0; border-right: 0; }
.credential-strip div { display: grid; gap: 2px; padding: 24px clamp(18px, 3vw, 38px); border-right: 1px solid var(--line); }
.credential-strip div:last-child { border-right: 0; }
.credential-strip strong { color: var(--navy); }
.credential-strip span { color: var(--muted); font-size: .9rem; }

.section { padding: 88px max(24px, calc((100vw - var(--content)) / 2)); }
.section-muted { background: var(--surface); }
.section-accent { background: #edf6f6; }
.section-dark { color: var(--white); background: var(--navy); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-heading { max-width: 960px; margin-bottom: 42px; }
.section-heading h2 + p { margin-top: 22px; color: var(--muted); font-size: 1.08rem; }
.section-heading.compact { max-width: 900px; }
.section-dark .section-heading p { color: #d3e3e8; }

.audience-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.audience-grid article { padding: 25px 27px; background: var(--surface); border-left: 4px solid var(--teal); }
.audience-grid article p { margin-top: 10px; color: var(--muted); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-grid article { padding: 27px; background: var(--white); border-left: 4px solid var(--teal); box-shadow: 0 4px 18px rgba(7, 40, 61, .06); }
.benefit-grid article p { margin-top: 11px; color: var(--muted); }

.scope-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.scope-grid article { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); }
.scope-grid article:last-child { grid-column: 1 / -1; }
.scope-grid ul, .package-grid ul, .start-review ul, .condition-box ul { padding-left: 20px; }
.scope-grid li, .package-grid li, .start-review li, .condition-box li { margin-top: 8px; }
.scope-grid h3 { margin-bottom: 16px; }
.scope-note { margin-top: 22px; padding: 19px 22px; background: #edf6f6; border-left: 4px solid var(--teal); }

.first-job .split > div > p:not(.eyebrow) { max-width: 760px; }
.first-job aside { border-top: 4px solid var(--teal); }
.first-job aside > p:not(.eyebrow, .price) { color: var(--muted); }
.check-list { margin-top: 22px; padding-left: 21px; }
.check-list li { margin-top: 8px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; padding: 0; background: rgba(255,255,255,.19); list-style: none; border: 1px solid rgba(255,255,255,.19); }
.steps li { min-width: 0; padding: 28px 23px; background: var(--navy); }
.steps span { display: block; margin-bottom: 16px; color: #83d6d9; font-weight: 900; }
.steps strong { color: var(--white); font-size: 1.05rem; }
.steps p { margin-top: 10px; color: #d3e3e8; font-size: .94rem; }

.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.package-grid article { display: flex; flex-direction: column; padding: 31px; border: 1px solid var(--line); border-top: 4px solid var(--teal); border-radius: var(--radius); }
.section-muted .package-grid article { background: var(--white); }
.package-grid h3 { font-size: 1.65rem; }
.price { margin: 18px 0; color: var(--navy); font-size: clamp(1.75rem, 3vw, 2.35rem); font-weight: 850; line-height: 1.05; }
.price small { display: block; margin-top: 6px; color: var(--muted); font-size: .8rem; font-weight: 650; }
.package-grid article > p:not(.eyebrow, .price) { color: var(--muted); }
.package-grid ul { margin: 19px 0 26px; }
.text-link { margin-top: auto; font-weight: 800; }
.package-note { margin-top: 23px; padding: 18px 21px; background: var(--surface); border-left: 4px solid var(--navy); }

.split { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); align-items: start; gap: clamp(35px, 7vw, 90px); }
.split > div > p:not(.eyebrow) { margin-top: 18px; color: var(--muted); }
.split aside { padding: 30px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.split aside .button { margin-top: 26px; }
.split-small { grid-template-columns: minmax(0, 1.4fr) minmax(270px, .6fr); }
.intervention aside { box-shadow: none; }

.condition-box { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: 44px; padding: 34px; color: var(--white); background: var(--navy); border-radius: var(--radius); }
.condition-box > p { font-size: 1.1rem; }
.condition-box li { color: #d7e5e9; }

.faq-list { max-width: 960px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 22px 48px 22px 0; color: var(--navy); font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; top: 14px; color: var(--teal); font-size: 1.8rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 820px; padding: 0 46px 22px 0; color: var(--muted); }

.contact { display: grid; grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr); gap: clamp(38px, 7vw, 90px); color: var(--white); background: var(--navy-deep); }
.contact h2, .contact h3 { color: var(--white); }
.contact-intro > p:not(.eyebrow, .contact-area) { margin-top: 22px; color: #d5e4e9; font-size: 1.06rem; }
.contact-area { margin-top: 22px; color: #83d6d9; font-weight: 700; }
.contact-links { display: grid; gap: 12px; margin-top: 31px; }
.contact-links a { display: grid; padding: 15px 17px; color: var(--white); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); text-decoration: none; }
.contact-links span { color: #9ec4cf; font-size: .82rem; }
.contact-links strong { font-size: 1.08rem; }
.contact-form { padding: 33px; color: var(--text); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form h3 { margin-bottom: 23px; color: var(--navy); font-size: 1.45rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 16px; color: var(--navy); font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-width: 0; padding: 12px 13px; color: var(--text); background: var(--white); border: 1px solid #b9c9d0; border-radius: 4px; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus-visible, .contact-form select:focus-visible, .contact-form textarea:focus-visible { outline: 3px solid rgba(23,109,114,.25); border-color: var(--teal); }
.file-field small { color: var(--muted); font-weight: 450; }
.honeypot { position: absolute !important; left: -9999px !important; }
.consent { display: flex !important; grid-template-columns: 20px 1fr; align-items: start; gap: 10px !important; font-size: .89rem; font-weight: 500 !important; }
.consent input { width: 19px; height: 19px; margin-top: 3px; }
.contact-form button[disabled] { opacity: .65; cursor: wait; transform: none; }
.form-status { min-height: 1.6em; margin-top: 13px; font-weight: 700; }
.form-status.is-error { color: #a51d2b; }
.form-status.is-success { color: #166534; }

.privacy { padding: 38px max(24px, calc((100vw - var(--content)) / 2)); background: var(--surface); }
.privacy h2 { font-size: 1.22rem; }
.privacy p { max-width: 1050px; margin-top: 12px; color: var(--muted); font-size: .9rem; }
footer { display: grid; grid-template-columns: 220px 1fr auto; align-items: center; gap: 25px; padding: 28px max(24px, calc((100vw - var(--content)) / 2)); color: #c7d9df; background: #061f30; font-size: .87rem; }
footer img { width: 210px; filter: brightness(0) invert(1); opacity: .92; }
footer a { color: var(--white); }
.mobile-contact-bar { display: none; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 210px minmax(0, 1fr); }
  .brand img { width: 205px; }
  .header-contact { display: none; }
  .hero { grid-template-columns: 1fr 1fr; min-height: 590px; }
  .hero-copy { padding: 62px 36px; }
  .hero-media { min-height: 590px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; }
  .contact-intro { max-width: 760px; }
  footer { grid-template-columns: 190px 1fr; }
  footer p:last-child { grid-column: 2; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 82px; }
  body { padding-bottom: 58px; }
  .site-header { grid-template-columns: minmax(0, 1fr) auto; min-height: 76px; padding: 9px 18px; }
  .brand img { width: 188px; }
  .menu-toggle { display: block; }
  .site-header nav { position: absolute; top: 100%; left: 0; right: 0; display: none; align-items: stretch; padding: 12px 18px 18px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .site-header nav.is-open { display: grid; }
  .site-header nav a { padding: 10px 4px; border-bottom: 1px solid var(--line); }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 58px 24px 46px; }
  .hero-media { min-height: 420px; }
  .credential-strip { grid-template-columns: 1fr; width: auto; margin: 0 24px; }
  .credential-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .credential-strip div:last-child { border-bottom: 0; }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .audience-grid, .benefit-grid, .scope-grid, .package-grid { grid-template-columns: 1fr; }
  .scope-grid article:last-child { grid-column: auto; }
  .split, .split-small, .condition-box { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer img { margin: auto; }
  footer p:last-child { grid-column: auto; }
  .mobile-contact-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 2500; display: grid; grid-template-columns: .8fr 1.2fr; height: 58px; box-shadow: 0 -6px 20px rgba(7,40,61,.18); }
  .mobile-contact-bar a { display: flex; justify-content: center; align-items: center; color: var(--white); background: var(--navy); text-decoration: none; font-weight: 800; }
  .mobile-contact-bar a:last-child { background: var(--teal); }
}

@media (max-width: 520px) {
  h1 { font-size: clamp(2.05rem, 10.2vw, 2.85rem); }
  h2 { font-size: clamp(1.75rem, 8.3vw, 2.35rem); }
  .hero-actions { display: grid; }
  .hero-media { min-height: 330px; }
  .hero-media figcaption { right: 14px; bottom: 14px; left: 14px; max-width: none; }
  .section { padding-left: 18px; padding-right: 18px; }
  .contact-form { padding: 24px 18px; }
  .audience-grid article, .scope-grid article, .package-grid article { padding: 24px; }
  .steps { grid-template-columns: 1fr; }
  .condition-box { padding: 26px 22px; }
}

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