:root {
  --ink: #17343b;
  --navy: #123f48;
  --navy-deep: #0c2d34;
  --teal: #3f9fa0;
  --teal-dark: #287b7d;
  --coral: #ef6545;
  --sand: #f3eee6;
  --mist: #edf6f5;
  --white: #fff;
  --muted: #5c6d70;
  --line: #dce6e5;
  --shadow: 0 18px 50px rgba(18, 63, 72, .12);
  --radius: 22px;
  --max: 1220px;
}

* { box-sizing: border-box; min-width: 0; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3 { text-wrap: balance; overflow-wrap: anywhere; }
p { text-wrap: pretty; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: #fff; padding: 12px 18px; border-radius: 8px; }
.skip-link:focus { top: 16px; }
.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; }

.utility-bar { background: var(--navy); color: #eaf6f4; font-size: .82rem; }
.utility-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-inner a { color: #fff; font-weight: 850; white-space: nowrap; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .98); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: flex; flex: 0 1 220px; align-items: center; align-self: stretch; padding-block: 8px; }
.brand img { width: 220px; max-height: 76px; object-fit: contain; }
.primary-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(14px, 1.75vw, 26px); font-size: .93rem; font-weight: 780; }
.primary-nav > a, .nav-group > button { padding: 14px 0; white-space: nowrap; }
.primary-nav .active { color: var(--teal-dark); }
.nav-group { position: relative; }
.nav-group > button { border: 0; background: transparent; color: inherit; font-weight: 780; cursor: pointer; }
.dropdown { position: absolute; top: 48px; left: -22px; width: 255px; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .18s; }
.dropdown a { display: block; padding: 9px 12px; border-radius: 8px; }
.dropdown a:hover, .dropdown a:focus-visible { background: var(--mist); }
.nav-group:hover .dropdown, .nav-group:focus-within .dropdown, .nav-group.open .dropdown { opacity: 1; visibility: visible; transform: none; }
.primary-nav .nav-cta { padding: 11px 18px; border-radius: 999px; background: var(--coral); color: #fff; box-shadow: 0 8px 22px rgba(239, 101, 69, .24); }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; background: var(--navy); margin: 5px; }

.eyebrow { margin: 0 0 11px; color: var(--teal-dark); font-size: .76rem; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.hero { position: relative; overflow: hidden; background: linear-gradient(125deg, var(--mist), #fff 58%, #fdf6f2); padding: 74px 0 82px; }
.hero::before { content: ""; position: absolute; width: 370px; height: 370px; right: -120px; top: -180px; border: 54px solid rgba(63, 159, 160, .12); border-radius: 50%; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); align-items: center; gap: clamp(40px, 6vw, 74px); }
.hero h1, .page-hero h1 { margin: 0; max-width: 820px; font-size: clamp(2.7rem, 5.4vw, 4.85rem); line-height: .99; letter-spacing: -.055em; }
.hero h1 em, .page-hero h1 em { color: var(--coral); font-style: italic; }
.hero-copy { margin: 24px 0 30px; max-width: 640px; color: var(--muted); font-size: 1.12rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 12px 22px; border: 0; border-radius: 999px; background: var(--coral); color: #fff; font-weight: 870; cursor: pointer; transition: transform .18s, box-shadow .18s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(239, 101, 69, .25); }
.btn-secondary { background: var(--navy); }
.btn-light { background: #fff; color: var(--navy); }
.text-link { color: var(--teal-dark); font-weight: 870; }
.text-link::after { content: " →"; }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: 34px 8px; box-shadow: var(--shadow); }
.hero-note { position: absolute; left: -24px; bottom: 24px; max-width: 285px; padding: 18px 20px; background: #fff; border-left: 5px solid var(--coral); border-radius: 8px; box-shadow: var(--shadow); font-weight: 800; }

.trust-strip, .quick-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid, .quick-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trust-item, .quick-item { padding: 22px 18px; text-align: center; border-right: 1px solid var(--line); font-size: .9rem; }
.trust-item:last-child, .quick-item:last-child { border-right: 0; }
.trust-item strong, .quick-item strong { display: block; color: var(--navy); font-size: 1.04rem; line-height: 1.3; }
.trust-item strong { color: var(--coral); }
.quick-item span { display: block; margin-bottom: 4px; color: var(--teal-dark); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

.section { padding: 88px 0; }
.section-sm { padding: 60px 0; }
.section-tint { background: var(--mist); }
.section-dark { background: var(--navy-deep); color: #fff; }
.section-head { max-width: 760px; margin-bottom: 38px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section h2, .cta-band h2 { margin: 0 0 16px; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.07; letter-spacing: -.045em; }
.section h3 { line-height: 1.2; }
.section-head p { margin: 0; color: var(--muted); font-size: 1.06rem; }
.section-dark .section-head p, .section-dark p { color: #d2e2e0; }
.lead { color: var(--muted); font-size: 1.12rem; }
.content-stack p { margin: 0 0 18px; }
.content-stack .text-link { display: inline-block; margin-top: 8px; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.card { display: flex; flex-direction: column; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 28px rgba(18, 63, 72, .05); }
.card .icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 22px; border-radius: 12px; background: var(--mist); color: var(--teal-dark); font-weight: 900; }
.card h3 { margin: 0 0 10px; font-size: 1.28rem; letter-spacing: -.02em; }
.card p { margin: 0 0 22px; color: var(--muted); }
.card .text-link { margin-top: auto; }
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: clamp(42px, 6vw, 74px); }
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px 28px; box-shadow: var(--shadow); }
.split-media.media-portrait-safe img { aspect-ratio: 4 / 3; object-position: center top; }
.split-media.media-contain { padding: 24px; background: #fff; border-radius: 8px 28px; }
.split-media.media-contain img { object-fit: contain; box-shadow: none; }
.check-list { list-style: none; padding: 0; margin: 24px 0; }
.check-list li { position: relative; padding: 8px 0 8px 32px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--coral); font-weight: 950; }
.light-list li::before { color: #ff9e84; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
.stat { padding: 20px; border-top: 3px solid var(--teal); background: #fff; border-radius: 0 0 14px 14px; }
.stat strong { display: block; color: var(--navy); font-size: 1.45rem; }
.brand-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.brand-card { display: flex; min-height: 180px; align-items: center; justify-content: center; padding: 36px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.brand-card img { max-width: 78%; max-height: 88px; object-fit: contain; }
.brand-card.kip-card { background: var(--navy); border-color: var(--navy); }

.page-hero { position: relative; overflow: hidden; padding: 68px 0 72px; background: linear-gradient(135deg, var(--mist), #f8fbfb 62%, #fff6f1); }
.page-hero::after { content: ""; position: absolute; right: -100px; bottom: -150px; width: 320px; height: 320px; border: 42px solid rgba(63, 159, 160, .11); border-radius: 50%; pointer-events: none; }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr); gap: clamp(38px, 5vw, 66px); align-items: center; }
.page-hero h1 { max-width: 760px; font-size: clamp(2.6rem, 5vw, 4.5rem); }
.page-hero p:not(.eyebrow) { max-width: 720px; margin: 22px 0 0; color: var(--muted); font-size: 1.12rem; }
.breadcrumbs { margin-bottom: 22px; color: var(--teal-dark); font-size: .85rem; font-weight: 780; }
.breadcrumbs span { margin: 0 8px; color: #8ca1a2; }
.hero-actions { margin-top: 28px; }
.page-hero-media { position: relative; }
.page-hero-media > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center top; border-radius: 28px 8px; box-shadow: var(--shadow); }
.page-hero-media.media-contain { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 28px 8px; }
.page-hero-media.media-contain > img { object-fit: contain; box-shadow: none; border-radius: 0; }
.media-badge { position: absolute; left: -18px; bottom: 20px; max-width: 270px; padding: 15px 18px; background: #fff; border-left: 5px solid var(--coral); border-radius: 8px; box-shadow: var(--shadow); }
.media-badge strong, .media-badge span { display: block; }
.media-badge strong { font-size: .92rem; }
.media-badge span { color: var(--muted); font-size: .78rem; }
.brand-mark { display: inline-flex; align-items: center; max-width: 270px; min-height: 54px; margin: 0 0 22px; padding: 12px 18px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.brand-mark img { max-height: 42px; width: auto; object-fit: contain; }
.brand-mark.brand-mark-dark { background: var(--navy); border-color: var(--navy); }

.service-overview { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr); gap: clamp(42px, 7vw, 86px); align-items: start; }
.benefit-panel { position: relative; overflow: hidden; padding: 34px; background: var(--navy); color: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.benefit-panel::after { content: ""; position: absolute; right: -70px; bottom: -70px; width: 170px; height: 170px; border: 28px solid rgba(255, 255, 255, .07); border-radius: 50%; }
.benefit-panel h3 { margin: 0; font-size: 1.6rem; }
.benefit-panel .check-list { position: relative; z-index: 1; }
.panel-kicker { margin: 0 0 8px; color: #9fddda; font-size: .74rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.panel-note { position: relative; z-index: 1; margin: 20px 0 0; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .2); color: #cfe0de; font-size: .9rem; }
.feature-band { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.feature { position: relative; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.feature-dot { display: block; width: 36px; height: 5px; margin-bottom: 22px; background: var(--coral); border-radius: 999px; }
.feature h3 { margin: 0 0 9px; font-size: 1.22rem; }
.feature p { margin: 0; color: var(--muted); }
.decision-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.decision-card { padding: 27px 24px; border-top: 4px solid var(--teal); background: #fff; box-shadow: 0 8px 28px rgba(18, 63, 72, .07); }
.decision-card > span { display: block; margin-bottom: 24px; color: var(--coral); font-size: .8rem; font-weight: 950; letter-spacing: .12em; }
.decision-card h3 { margin: 0 0 9px; font-size: 1.15rem; }
.decision-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.service-proof .eyebrow, .section-dark .eyebrow { color: #9fddda; }
.service-proof h2 { color: #fff; }
.service-proof .split-media img { box-shadow: 0 20px 55px rgba(0, 0, 0, .24); }
.process { counter-reset: steps; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.process-step { counter-increment: steps; position: relative; padding: 66px 24px 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.process-step::before { content: "0" counter(steps); position: absolute; top: 20px; left: 24px; color: var(--coral); font-weight: 950; letter-spacing: .08em; }
.process-step h3 { margin: 0 0 8px; font-size: 1.15rem; }
.process-step p { margin: 0; color: var(--muted); font-size: .94rem; }
.faq-layout { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); gap: clamp(40px, 7vw, 90px); align-items: start; }
.faq-layout .section-head { position: sticky; top: 150px; margin: 0; }
.faq-layout .section-head .btn { margin-top: 24px; }
.faq-list { width: 100%; }
.faq-list details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq-list summary { position: relative; padding: 21px 42px 21px 0; cursor: pointer; font-size: 1.04rem; font-weight: 850; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 20px; color: var(--teal-dark); font-size: 1.3rem; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list p { margin: 0 0 22px; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); gap: 58px; }
.contact-card { padding: 32px; background: var(--navy); color: #fff; border-radius: var(--radius); }
.contact-card .eyebrow { color: #9fddda; }
.contact-card a, .contact-card address { display: block; margin: 12px 0; font-style: normal; }
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .9rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #b8caca; border-radius: 10px; padding: 13px 14px; background: #fff; color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(63, 159, 160, .25); border-color: var(--teal); }
.field textarea { min-height: 150px; resize: vertical; }
.form-note { grid-column: 1 / -1; color: var(--muted); font-size: .82rem; }
.form-status { grid-column: 1 / -1; margin-bottom: 18px; padding: 12px 15px; border-radius: 8px; }
.form-status.error { background: #fff0ec; color: #87331f; }
.hp-field { position: absolute; left: -10000px; }
.turnstile-wrap { overflow: hidden; padding-top: 4px; }
.legal { max-width: 850px; }
.legal h2 { margin-top: 42px; font-size: 1.7rem; }
.legal p, .legal li { color: var(--muted); }

.cta-band { padding: 56px 0; background: var(--coral); color: #fff; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-band .eyebrow { color: #fff8f5; }
.cta-band h2 { margin: 0; max-width: 700px; font-size: clamp(1.9rem, 4vw, 3rem); }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.text-link.light { color: #fff; }
.site-footer { padding: 62px 0 28px; background: var(--navy-deep); color: #d3e1df; }
.footer-grid { display: grid; grid-template-columns: minmax(260px, 1.45fr) minmax(150px, .9fr) minmax(150px, .8fr) minmax(210px, 1fr); gap: clamp(28px, 4vw, 48px); }
.footer-logo-box { display: inline-flex; align-items: center; justify-content: center; width: 245px; min-height: 116px; padding: 12px 18px; background: #fff; border-radius: 12px; }
.footer-logo { width: 210px; max-height: 90px; object-fit: contain; }
.footer-grid h2 { margin: 0 0 16px; color: #fff; font-size: .84rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-grid .footer-subhead { margin-top: 27px; }
.footer-grid a { display: block; margin: 8px 0; }
.footer-grid p { max-width: 380px; }
.footer-grid address { margin-top: 8px; font-style: normal; }
.footer-marks { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 20px; }
.footer-marks img { width: auto; max-width: 125px; max-height: 38px; padding: 7px 10px; background: #fff; border-radius: 7px; object-fit: contain; }
.footer-marks img.kip-mark { background: #174d58; }
.footer-button { margin-top: 18px !important; padding: 10px 14px; border: 1px solid rgba(255, 255, 255, .35); border-radius: 999px; text-align: center; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .15); font-size: .82rem; }
.mobile-call { display: none; }

@media (max-width: 1140px) {
  .nav-wrap { min-height: 82px; }
  .brand, .brand img { width: 205px; flex-basis: 205px; max-height: 68px; }
  .menu-toggle { display: block; margin-left: auto; }
  .primary-nav { display: none; position: absolute; left: 0; right: 0; top: 116px; max-height: calc(100vh - 116px); overflow-y: auto; padding: 18px 24px 26px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); align-items: stretch; flex-direction: column; gap: 2px; }
  .primary-nav.open { display: flex; }
  .primary-nav > a, .nav-group > button { display: block; width: 100%; padding: 10px 0; text-align: left; }
  .dropdown { position: static; display: none; width: 100%; padding: 4px 0 8px 12px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-group.open .dropdown { display: block; }
  .primary-nav .nav-cta { margin-top: 8px; padding: 11px 18px; text-align: center; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr); }
  .decision-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .hero { padding: 56px 0; }
  .hero-grid, .page-hero-grid, .split, .service-overview, .contact-grid, .faq-layout { grid-template-columns: 1fr; gap: 42px; }
  .hero-visual, .page-hero-media { max-width: 720px; }
  .page-hero-media { order: -1; }
  .page-hero-media > img { max-height: 480px; }
  .page-hero-media.media-contain > img { max-height: 360px; }
  .media-badge { left: 14px; }
  .hero-note { left: 14px; }
  .cards, .feature-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-item:nth-child(2) { border-right: 0; }
  .quick-item:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .faq-layout .section-head { position: static; }
  .cta-band-inner { align-items: flex-start; flex-direction: column; }
  .cta-actions { align-items: flex-start; }
  .mobile-call { display: block; position: fixed; z-index: 90; right: 16px; bottom: 16px; padding: 11px 16px; border-radius: 999px; background: var(--coral); color: #fff; font-weight: 850; box-shadow: var(--shadow); }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 30px), var(--max)); }
  .utility-inner span { display: none; }
  .utility-inner { justify-content: center; }
  .primary-nav { top: 116px; }
  .brand, .brand img { width: 190px; flex-basis: 190px; }
  .hero h1, .page-hero h1 { font-size: clamp(2.35rem, 13vw, 3.15rem); }
  .hero-note, .media-badge { position: relative; left: auto; bottom: auto; max-width: none; margin: -18px 14px 0; }
  .page-hero { padding: 46px 0 56px; }
  .section { padding: 64px 0; }
  .section-sm { padding: 46px 0; }
  .cards, .feature-band, .decision-grid, .process, .stats, .contact-form, .brand-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .button-row { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { width: 100%; }
}

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