:root {
  --ink: #18324a;
  --teal: #2f7d7a;
  --slate: #52606d;
  --paper: #ffffff;
  --mist: #f3f7f7;
  --line: #d8e4e7;
  --max: 1180px;
  --shadow: 0 24px 60px rgba(24, 50, 74, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 400 1rem/1.65 Arial, Helvetica, sans-serif; }
a { color: inherit; }
img { max-width: 100%; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip { position: fixed; top: -100px; left: 16px; z-index: 99; padding: 10px 14px; background: var(--ink); color: white; }
.skip:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(216,228,231,.8); backdrop-filter: blur(14px); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { display: block; width: 290px; height: auto; }
.nav { display: flex; align-items: center; gap: 28px; font-size: .95rem; font-weight: 700; }
.nav a { text-decoration: none; }
.nav a:hover, .nav a:focus-visible { color: var(--teal); }
.simple-nav { display: flex; font-weight: 700; }
.simple-nav a { text-decoration: none; }
.simple-nav a:hover, .simple-nav a:focus-visible { color: var(--teal); }
.menu-button { display: none; border: 0; background: transparent; padding: 10px; color: var(--ink); font: inherit; font-weight: 700; }

.hero { position: relative; overflow: hidden; padding: clamp(72px, 9vw, 128px) 0 88px; background: linear-gradient(125deg, #f7fafa 0 58%, #e8f2f1 58%); }
.hero::after { content: ""; position: absolute; width: 340px; height: 340px; right: -100px; top: -120px; border: 1px solid rgba(47,125,122,.22); border-radius: 50%; box-shadow: 0 0 0 70px rgba(47,125,122,.05), 0 0 0 140px rgba(47,125,122,.035); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.45fr) minmax(300px,.55fr); align-items: center; gap: clamp(42px,8vw,100px); }
.eyebrow { margin: 0 0 20px; color: var(--teal); font-size: .82rem; line-height: 1.2; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.12; }
h1 { max-width: 850px; margin-bottom: 25px; font-size: clamp(2.6rem, 6vw, 5.4rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -.035em; }
h3 { font-size: 1.3rem; }
.lead { max-width: 720px; margin: 0 0 34px; color: var(--slate); font-size: clamp(1.12rem,2vw,1.35rem); }
.actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 12px 20px; border: 2px solid var(--ink); text-decoration: none; font-weight: 800; transition: .2s ease; }
.button.primary { background: var(--ink); color: white; }
.button.secondary { background: transparent; }
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(24,50,74,.15); }
.hero-mark { width: min(100%,360px); padding: 35px; background: rgba(255,255,255,.85); border: 1px solid white; box-shadow: var(--shadow); }

.proof { background: var(--ink); color: white; }
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.proof-item { padding: 28px clamp(20px,4vw,46px); border-left: 1px solid rgba(255,255,255,.15); }
.proof-item:first-child { border-left: 0; }
.proof strong { display: block; color: #83cbc6; font-size: 1.05rem; }
.proof span { color: #d8e4e7; }

.section { padding: clamp(76px,10vw,128px) 0; }
.section.alt { background: var(--mist); }
.section-head { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; margin-bottom: 52px; }
.section-head p { margin: 4px 0 0; color: var(--slate); font-size: 1.12rem; }
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.card { min-height: 285px; padding: 30px; background: white; border: 1px solid var(--line); border-top: 5px solid var(--teal); }
.card-number { color: var(--teal); font-weight: 800; letter-spacing: .1em; }
.card h3 { margin: 45px 0 12px; }
.card p { margin: 0; color: var(--slate); }

.process { display: grid; grid-template-columns: repeat(4,1fr); counter-reset: step; }
.step { position: relative; padding: 32px 28px 12px; border-top: 2px solid var(--line); }
.step::before { counter-increment: step; content: "0" counter(step); display: grid; place-items: center; width: 48px; height: 48px; margin: -57px 0 28px; color: white; background: var(--teal); border-radius: 50%; font-weight: 800; }
.step p { color: var(--slate); }

.profile-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px,9vw,110px); align-items: start; }
.profile-panel { padding: 42px; color: white; background: var(--ink); box-shadow: var(--shadow); }
.profile-panel img { display: block; width: 110px; filter: brightness(0) invert(1); opacity: .95; }
.profile-panel blockquote { margin: 30px 0 0; font-size: 1.45rem; line-height: 1.35; font-weight: 700; }
.profile-copy p { color: var(--slate); font-size: 1.07rem; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tag { padding: 7px 11px; background: var(--mist); border: 1px solid var(--line); color: var(--ink); font-size: .88rem; font-weight: 700; }

.contact { background: linear-gradient(135deg,var(--ink),#204967); color: white; }
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.contact p { color: #d8e4e7; font-size: 1.12rem; }
.contact-card { padding: 34px; background: white; color: var(--ink); }
.contact-card { font-style: normal; }
.contact-card small { display: block; color: var(--slate); text-transform: uppercase; letter-spacing: .12em; }
.contact-card a { display: inline-block; margin: 5px 0 22px; color: var(--teal); font-size: 1.15rem; font-weight: 800; overflow-wrap: anywhere; }

.site-footer { padding: 34px 0; background: #102537; color: #d8e4e7; font-size: .92rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: white; }

.legal { min-height: 65vh; padding: 75px 0 110px; }
.legal article { max-width: 820px; }
.legal h1 { font-size: clamp(2.5rem,5vw,4rem); }
.legal h2 { margin-top: 45px; font-size: 1.55rem; }
.notice { margin: 28px 0; padding: 18px 22px; border-left: 5px solid var(--teal); background: var(--mist); }

@media (max-width: 900px) {
  .hero-grid, .section-head, .profile-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-mark { display: none; }
  .cards { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; gap: 50px 0; }
  .section-head { gap: 8px; }
  .nav { position: absolute; inset: 82px 0 auto; display: none; padding: 24px 20px 30px; flex-direction: column; align-items: flex-start; background: white; border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .simple-nav { display: flex; }
  .menu-button { display: block; }
}

@media (max-width: 600px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .brand img { width: 220px; }
  .header-inner { min-height: 72px; }
  .nav { top: 72px; }
  .hero { padding-top: 58px; background: linear-gradient(135deg,#f7fafa,#e8f2f1); }
  .proof-grid, .process { grid-template-columns: 1fr; }
  .proof-item { border-left: 0; border-top: 1px solid rgba(255,255,255,.15); }
  .proof-item:first-child { border-top: 0; }
  .process { gap: 45px; }
  .profile-panel { padding: 30px; }
  .footer-inner, .footer-links { flex-direction: column; }
}

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