
:root{
    --teal:#087b78;
    --teal-dark:#075956;
    --ink:#163436;
    --muted:#648184;
    --soft:#f2f8f7;
    --line:#dcebea;
    --white:#ffffff;
    --max:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    color:var(--ink);
    background:#fff;
    line-height:1.62;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.container{
    width:min(var(--max),calc(100% - 44px));
    margin:0 auto;
}
.topline{
    background:var(--teal-dark);
    color:#d6f2f0;
    font-size:13px;
}
.topline-inner{
    width:min(var(--max),calc(100% - 44px));
    min-height:42px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
}
.topline-items{display:flex;gap:22px;flex-wrap:wrap}
.site-header{
    position:sticky;
    top:0;
    z-index:99;
    background:rgba(255,255,255,.98);
    border-bottom:1px solid var(--line);
}
.header-inner{
    width:min(var(--max),calc(100% - 44px));
    min-height:88px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
}
.brand{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}
.brand-mark{
    display:grid;
    width:48px;
    height:48px;
    place-items:center;
    background:var(--teal);
    color:#fff;
    border-radius:14px;
    font-size:19px;
    font-weight:800;
}
.brand-name{
    font-size:24px;
    line-height:1;
    font-weight:800;
    letter-spacing:-.03em;
}
.brand-sub{
    margin-top:5px;
    color:var(--muted);
    font-size:11px;
}
.nav{
    display:flex;
    align-items:center;
    gap:25px;
}
.nav a{
    color:#214648;
    padding:11px 0;
    font-size:13px;
    font-weight:700;
}
.nav a:hover,.nav a.active{color:var(--teal)}
.nav .nav-cta{
    padding:13px 20px;
    border-radius:999px;
    background:var(--teal);
    color:#fff;
}
.hero{
    position:relative;
    min-height:640px;
    overflow:hidden;
    display:grid;
    align-items:center;
    color:#fff;
}
.hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}
.hero-shade{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(4,58,56,.86),rgba(4,58,56,.42));
}
.hero-content{
    position:relative;
    z-index:1;
    width:min(var(--max),calc(100% - 44px));
    margin:0 auto;
}
.hero-copy{max-width:690px}
.eyebrow{
    margin:0 0 14px;
    color:#91e6dc;
    font-size:12px;
    font-weight:800;
    letter-spacing:.11em;
    text-transform:uppercase;
}
h1,h2,h3,p{margin-top:0}
h1{
    margin-bottom:22px;
    font-size:clamp(42px,5vw,70px);
    line-height:1.06;
    letter-spacing:-.045em;
}
.hero p{
    max-width:610px;
    color:#e4f7f5;
    font-size:18px;
}
.actions{
    display:flex;
    gap:13px;
    flex-wrap:wrap;
    margin-top:31px;
}
.btn{
    display:inline-flex;
    min-height:50px;
    align-items:center;
    justify-content:center;
    padding:0 23px;
    border-radius:999px;
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
}
.btn-primary{background:var(--teal);color:#fff}
.btn-light{background:#fff;color:var(--teal-dark)}
.section{padding:88px 0}
.section-soft{background:var(--soft)}
.section-heading{
    max-width:720px;
    margin-bottom:42px;
}
.section-heading h2{
    margin-bottom:12px;
    font-size:37px;
    line-height:1.18;
    letter-spacing:-.03em;
}
.section-heading p{color:var(--muted)}
.grid{display:grid;gap:24px}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.card{
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:18px;
    background:#fff;
}
.card-media{
    aspect-ratio:16/10;
    overflow:hidden;
    background:#eaf2f1;
}
.card-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}
.card-body{padding:24px}
.card-body h3{
    margin-bottom:10px;
    font-size:20px;
    line-height:1.3;
}
.card-body p{margin-bottom:0;color:var(--muted)}
.split{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:58px;
}
.split-image{
    overflow:hidden;
    aspect-ratio:4/3;
    border-radius:18px;
    background:#eaf2f1;
}
.split-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.list{
    padding:0;
    margin:24px 0 0;
    list-style:none;
}
.list li{
    position:relative;
    padding:8px 0 8px 25px;
    color:var(--muted);
}
.list li:before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--teal);
    font-weight:900;
}
.steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}
.step{
    padding:25px;
    border:1px solid var(--line);
    border-radius:16px;
    background:#fff;
}
.step strong{
    display:block;
    margin-bottom:8px;
    color:var(--teal);
    font-size:26px;
}
.step span{color:var(--muted);font-size:14px}
.page-hero{
    padding:94px 0;
    background:linear-gradient(130deg,#075955,#0a8d87);
    color:#fff;
}
.page-hero h1{
    margin:0 0 12px;
    font-size:50px;
}
.page-hero p{
    max-width:680px;
    margin:0;
    color:#d5f4f1;
}
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}
.contact-card{
    padding:31px;
    border:1px solid var(--line);
    border-radius:18px;
    background:#fff;
}
.contact-card h3{margin-bottom:18px;font-size:22px}
.contact-row{
    padding:15px 0;
    border-bottom:1px solid var(--line);
}
.contact-row:last-child{border-bottom:0}
.contact-label{
    display:block;
    color:var(--teal-dark);
    font-size:13px;
    font-weight:800;
}
.contact-value{color:var(--muted)}
.notice{
    padding:19px;
    border-left:4px solid var(--teal);
    background:#eaf7f6;
    color:#42696a;
}
.cta{
    padding:63px 0;
    background:linear-gradient(135deg,#075954,#0b9189);
    color:#fff;
}
.cta-inner{
    width:min(var(--max),calc(100% - 44px));
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}
.cta h2{margin:0;font-size:33px}
.footer{
    padding:55px 0 24px;
    background:#062f30;
    color:#bad7d5;
}
.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:35px;
}
.footer h3{
    margin-bottom:13px;
    color:#fff;
    font-size:17px;
}
.footer p,.footer a{color:#bad7d5;font-size:14px}
.footer a:hover{color:#fff}
.footer-list{padding:0;margin:0;list-style:none}
.footer-list li{padding:5px 0}
.footer-bottom{
    width:min(var(--max),calc(100% - 44px));
    margin:35px auto 0;
    padding-top:19px;
    border-top:1px solid rgba(255,255,255,.13);
    color:#8eafad;
    font-size:13px;
}
[data-hide-empty].hidden{display:none!important}
@media(max-width:900px){
    .grid-3{grid-template-columns:repeat(2,minmax(0,1fr))}
    .split,.contact-grid{grid-template-columns:1fr}
    .steps{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:680px){
    .topline-inner,.header-inner,.container{width:min(100% - 28px,var(--max))}
    .topline-inner{min-height:38px}
    .topline-inner > span{display:none}
    .header-inner{min-height:74px}
    .brand-mark{width:42px;height:42px}
    .brand-name{font-size:20px}
    .nav{gap:13px;max-width:60vw;overflow-x:auto}
    .nav a{font-size:11px;white-space:nowrap}
    .nav .nav-cta{display:none}
    .hero{min-height:570px}
    .hero-content{width:min(100% - 28px,var(--max))}
    .section{padding:63px 0}
    .grid-2,.grid-3{grid-template-columns:1fr}
    .steps{grid-template-columns:1fr 1fr}
    .footer-grid{grid-template-columns:1fr}
    .cta-inner{align-items:flex-start;flex-direction:column}
}

/* Full business address in footer */
.footer-address {
    max-width: 310px;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

/* Legal company name */
.legal-company-name {
    margin-top: 14px;
    color: #ffffff !important;
    font-size: 14px !important;
    line-height: 1.55;
}
