*{box-sizing:border-box}
:root{
  --brand:#0a6b75;
  --brand-dark:#084f56;
  --text:#1f2937;
  --muted:#6b7280;
  --bg:#f8fafc;
}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,'Helvetica Neue',sans-serif;color:var(--text);background:#fff}
a{color:var(--brand);text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:0 20px}

.site-header{position:sticky;top:0;z-index:10;background:#fff;border-bottom:1px solid #eef2f7}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:64px}
.logo{height:36px;width:auto}
.nav a{margin-left:18px;color:#374151}
.nav a:hover{color:var(--brand)}
.btn{display:inline-block;background:var(--brand);color:#fff;padding:12px 18px;border-radius:12px;font-weight:600}
.btn:hover{filter:brightness(1.06)}
.btn-outline{background:#fff;border:1px solid #d1d5db;color:#374151}
.link{font-weight:600}

.hero{position:relative;min-height:62vh;background-size:cover;background-position:center}
.hero .overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.45),rgba(0,0,0,.45))}
.hero-content{position:relative;color:#fff;padding:18vh 0 12vh}
.hero .tagline{font-size:clamp(18px,2.5vw,24px);max-width:720px}
.cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}

.section{padding:64px 0}
.section.alt{background:#fff;border-top:1px solid #eef2f7;border-bottom:1px solid #eef2f7}
.subtle{color:var(--muted)}
.cards{margin-top:22px;display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:16px}
.card{background:#fff;border:1px solid #eef2f7;border-radius:14px;padding:18px;box-shadow:0 8px 24px rgba(0,0,0,.04)}
.card h3{margin:8px 0 6px}
.form-card label{display:block;font-size:14px;color:#374151;margin-bottom:10px}
.form-card input,.form-card textarea{width:100%;margin-top:6px;padding:10px;border:1px solid #e5e7eb;border-radius:10px}
.form-card button{margin-top:8px}
.hidden{display:none}
.two-col{display:grid;grid-template-columns:1.2fr 1fr;gap:28px}
@media (max-width:900px){.two-col{grid-template-columns:1fr} .hero{min-height:56vh}.hero-content{padding:16vh 0 10vh}}

.ticks{list-style:none;padding:0;margin:14px 0 0}
.ticks li{margin:6px 0;padding-left:26px;position:relative}
.ticks li:before{content:'✓';position:absolute;left:0;top:0;color:var(--brand);font-weight:700}

.quotes blockquote{background:rgba(10,107,117,.06);border-left:4px solid rgba(10,107,117,.2);padding:12px 14px;border-radius:8px;margin:0 0 12px}
.quotes blockquote span{display:block;font-size:14px;color:var(--muted);margin-top:6px}

.muted{color:var(--muted)}
.alt-bg{background:var(--bg)}

.site-footer{background:#f9fafb;border-top:1px solid #eef2f7;margin-top:20px}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:12px;padding:16px 0}
.footer-inner .links a{margin-left:14px;color:#374151}
.footer-inner .links a:hover{color:var(--brand)}