:root{
    --bg:#eef7f7;
    --surface:#ffffff;
    --surface-soft:#f5fbfb;
    --surface-strong:#dfeff0;
    --primary:#1e7a84;
    --primary-hover:#155d66;
    --accent:#db8f3f;
    --heading:#1a2d31;
    --text:#51676b;
    --muted:#6e8489;
    --border:#d6e6e7;
    --focus:#1e7a84;
    --shadow:0 24px 60px rgba(26,45,49,0.11);
    --shadow-soft:0 16px 40px rgba(30,122,132,0.14);
    --radius-sm:14px;
    --radius-md:24px;
    --radius-lg:34px;
    --container:1180px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    min-width:0;
}

html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
}

body{
    background:
        radial-gradient(circle at top left, rgba(30,122,132,0.12), transparent 24%),
        radial-gradient(circle at top right, rgba(219,143,63,0.08), transparent 20%),
        linear-gradient(180deg, #fbfdfd 0%, var(--bg) 44%, #f4f9f9 100%);
    color:var(--text);
    font-family:"DM Sans", sans-serif;
    line-height:1.75;
    overflow-x:hidden;
}

main,
section,
header,
footer,
nav,
aside{
    display:block;
}

h1,
h2,
h3,
h4{
    color:var(--heading);
    font-family:"Epilogue", sans-serif;
    line-height:1.08;
    letter-spacing:-0.035em;
}

p,
a,
span,
li{
    overflow-wrap:break-word;
}

a{
    color:inherit;
    text-decoration:none;
}

img,
iframe{
    display:block;
    max-width:100%;
}

a:focus-visible,
button:focus-visible{
    outline:3px solid var(--focus);
    outline-offset:3px;
    border-radius:10px;
}

.skip-link{
    position:absolute;
    left:16px;
    top:16px;
    transform:translateY(-160%);
    background:var(--heading);
    color:#ffffff;
    padding:12px 16px;
    border-radius:10px;
    z-index:1100;
    transition:transform 0.2s ease;
}

.skip-link:focus{
    transform:translateY(0);
}

.container{
    width:min(92%, var(--container));
    margin:0 auto;
}

.narrow{
    max-width:860px;
}

.section{
    padding:96px 0;
}

.section-sm{
    padding:72px 0;
}

.flex{
    display:flex;
}

.grid{
    display:grid;
}

.grid-3{
    grid-template-columns:repeat(3, minmax(0, 1fr));
}

.items-center{
    align-items:center;
}

.justify-between{
    justify-content:space-between;
}

.text-center{
    text-align:center;
}

.w-full{
    width:100%;
}

.gap-2{
    gap:20px;
}

.mb-1{
    margin-bottom:10px;
}

.mb-2{
    margin-bottom:20px;
}

.mb-3{
    margin-bottom:30px;
}

.mb-4{
    margin-bottom:40px;
}

.mt-3{
    margin-top:30px;
}

.heading-xl{
    font-size:clamp(2.6rem, 5.3vw, 4.8rem);
    font-weight:800;
}

.heading-lg{
    font-size:clamp(2rem, 4vw, 3rem);
    font-weight:800;
}

.heading-md{
    font-size:1.28rem;
    font-weight:700;
}

.text-lg{
    font-size:1.08rem;
}

.text-muted{
    color:var(--muted);
}

.eyebrow{
    color:#c7f0f4;
    font-size:0.87rem;
    font-weight:700;
    letter-spacing:0.1em;
    text-transform:uppercase;
}

.panel-label{
    color:var(--primary);
    font-size:0.82rem;
    font-weight:700;
    letter-spacing:0.08em;
    text-transform:uppercase;
}

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    padding-top:14px;
    background:transparent;
}

.nav-shell{
    min-height:74px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:14px 18px;
    border:1px solid rgba(214,230,231,0.84);
    border-radius:20px;
    background:rgba(255,255,255,0.82);
    backdrop-filter:blur(18px);
    box-shadow:0 12px 30px rgba(26,45,49,0.08);
}

.brand{
    color:var(--heading);
    font-family:"Epilogue", sans-serif;
    font-size:1.15rem;
    font-weight:800;
    max-width:260px;
}

.brand-mobile{
    font-size:1rem;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
    flex-wrap:wrap;
}

.nav-links a{
    color:var(--heading);
    font-size:0.95rem;
    font-weight:600;
}

.nav-links > a:not(.btn){
    padding:10px 12px;
    border-radius:999px;
}

.nav-links > a:not(.btn):hover{
    background:rgba(30,122,132,0.08);
}

.nav-links .btn-primary,
.mobile-menu .btn-primary{
    color:#ffffff;
}

.nav-links a:hover,
.mobile-nav a:hover,
.text-link:hover,
.site-footer a:hover{
    color:var(--primary);
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:14px 22px;
    border:none;
    border-radius:14px;
    font-size:0.98rem;
    font-weight:700;
    text-align:center;
    cursor:pointer;
    transition:transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover{
    transform:translateY(-1px);
}

.btn-primary{
    background:linear-gradient(135deg, var(--primary) 0%, #2da0ab 100%);
    color:#ffffff;
    box-shadow:var(--shadow-soft);
}

.btn-primary:hover{
    background:linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
    color:#ffffff;
}

.btn-secondary{
    background:#ffffff;
    border:1px solid var(--border);
    color:var(--heading);
}

.btn-secondary:hover{
    background:#eff8f8;
}

.mobile-toggle,
.icon-button{
    border:none;
    background:transparent;
    cursor:pointer;
}

.mobile-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    padding:8px;
}

.mobile-toggle span{
    width:26px;
    height:2px;
    background:var(--heading);
}

.icon-button{
    color:var(--heading);
    font-size:2rem;
    line-height:1;
}

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:min(86%, 340px);
    height:100vh;
    padding:28px;
    background:#ffffff;
    box-shadow:-12px 0 36px rgba(26,45,49,0.12);
    z-index:1050;
    transition:right 0.25s ease;
    overflow-y:auto;
}

.mobile-menu.active{
    right:0;
}

.mobile-menu-top{
    margin-bottom:34px;
}

.mobile-nav a{
    display:block;
    margin-bottom:22px;
    color:var(--heading);
    font-size:1rem;
    font-weight:600;
}

.hero{
    padding:42px 0 88px;
}

.hero-layout{
    display:grid;
    grid-template-columns:minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap:32px;
    align-items:center;
    padding:46px;
    border-radius:var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(219,143,63,0.24), transparent 28%),
        radial-gradient(circle at bottom left, rgba(30,122,132,0.2), transparent 24%),
        linear-gradient(135deg, #193035 0%, #24464d 56%, #1c373c 100%);
    box-shadow:0 30px 80px rgba(26,45,49,0.2);
}

.hero-copy{
    max-width:640px;
    color:#dceff1;
}

.hero-actions{
    flex-wrap:wrap;
}

.hero-copy .heading-xl{
    color:#ffffff;
}

.hero-copy .text-muted{
    color:#c3dadd;
}

.hero-proof{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:28px;
}

.hero-proof span{
    padding:10px 14px;
    border:1px solid rgba(195,218,221,0.22);
    border-radius:999px;
    background:rgba(255,255,255,0.08);
    color:#eef7f8;
    font-size:0.9rem;
    font-weight:600;
}

.hero-panel{
    position:relative;
}

.hero-card,
.feature-card,
.comparison-card,
.contact-card{
    background:rgba(255,255,255,0.94);
    border:1px solid var(--border);
    border-radius:var(--radius-md);
    box-shadow:var(--shadow);
}

.hero-card{
    padding:30px;
    background:linear-gradient(180deg, rgba(27,53,58,0.95) 0%, rgba(36,70,77,0.98) 100%);
    border-color:rgba(148,163,184,0.16);
    color:#dceff1;
}

.hero-card .panel-label{
    color:#efc498;
}

.hero-card .heading-md{
    color:#ffffff;
}

.hero-card .text-muted{
    color:#c3dadd;
}

.metric-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:14px;
}

.metric-card{
    padding:18px;
    border-radius:18px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(195,218,221,0.14);
    backdrop-filter:blur(8px);
}

.metric-card strong{
    display:block;
    color:#ffffff;
    font-size:1.08rem;
    margin-bottom:4px;
}

.metric-card span{
    color:#d4e7e9;
    font-size:0.92rem;
}

.section-head{
    max-width:760px;
    margin-left:auto;
    margin-right:auto;
}

.section-copy{
    max-width:680px;
    margin-left:auto;
    margin-right:auto;
}

.feature-card{
    padding:28px;
    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(245,251,251,0.93) 100%);
}

.feature-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:5px;
    background:linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.feature-icon{
    width:44px;
    height:44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:linear-gradient(135deg, rgba(30,122,132,0.14), rgba(219,143,63,0.16));
    color:var(--primary);
    font-weight:800;
    margin-bottom:18px;
}

.comparison-card{
    padding:30px;
    background:linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(245,251,251,0.94) 100%);
}

.contact-section{
    padding-top:88px;
}

.contact-shell{
    display:grid;
    grid-template-columns:minmax(0, 1fr) minmax(300px, 420px);
    gap:28px;
    padding:34px;
    border:1px solid rgba(148,163,184,0.16);
    border-radius:var(--radius-lg);
    background:
        radial-gradient(circle at top left, rgba(30,122,132,0.18), transparent 28%),
        linear-gradient(135deg, #193035 0%, #33636a 58%, #224449 100%);
    box-shadow:0 30px 80px rgba(26,45,49,0.2);
}

.contact-card{
    padding:26px;
    background:#ffffff;
}

.contact-copy .eyebrow{
    color:#efc498;
}

.contact-copy .heading-lg{
    color:#ffffff;
}

.contact-copy .text-muted{
    color:#c3dadd;
}

.contact-copy .text-link{
    color:#ffffff;
}

.map-frame{
    margin-top:28px;
    overflow:hidden;
    border:1px solid var(--border);
    border-radius:var(--radius-md);
    box-shadow:var(--shadow);
    background:#ffffff;
}

.map-frame iframe{
    width:100%;
    min-height:360px;
    border:0;
}

.contact-item{
    padding:16px 0;
    border-bottom:1px solid #e0edee;
}

.contact-item:last-child{
    border-bottom:none;
}

.contact-item strong{
    display:block;
    color:var(--heading);
    margin-bottom:4px;
}

.text-link{
    color:var(--primary);
    font-weight:700;
}

.site-footer{
    background:linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(244,250,250,0.95) 100%);
    border-top:1px solid #dfebec;
    padding:48px 0 0;
}

.footer-shell{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:28px;
}

.site-footer a,
.site-footer p{
    display:block;
    color:var(--muted);
    font-size:0.95rem;
    margin-bottom:10px;
}

.copyright{
    margin-top:38px;
    padding:24px 0;
    border-top:1px solid #e0edee;
    color:#86999d;
    text-align:center;
    font-size:0.92rem;
}

@media (max-width:1024px){
    .hero-layout,
    .contact-shell{
        grid-template-columns:1fr;
    }

    .hero-layout{
        padding:34px;
    }
}

@media (max-width:768px){
    .section{
        padding:74px 0;
    }

    .section-sm{
        padding:62px 0;
    }

    .grid-3,
    .footer-shell{
        grid-template-columns:1fr;
    }

    .nav-links{
        display:none;
    }

    .mobile-toggle{
        display:flex;
    }

    .btn,
    .hero-actions .btn{
        width:100%;
    }

    .contact-shell{
        padding:24px;
    }

    .hero{
        padding-top:30px;
    }
}

@media (max-width:480px){
    body{
        font-size:15px;
    }

    .container{
        width:94%;
    }

    .heading-xl{
        font-size:2.2rem;
    }

    .heading-lg{
        font-size:1.9rem;
    }

    .hero-card,
    .feature-card,
    .comparison-card,
    .contact-card{
        padding:22px;
    }

    .metric-grid{
        grid-template-columns:1fr;
    }

    .mobile-menu{
        width:min(92%, 320px);
        padding:24px;
    }
}
