:root{
    --primary:#0f766e;
    --primary-dark:#115e59;
    --dark:#111827;
    --muted:#6b7280;
    --light:#f8fafc;
    --border:#e5e7eb;
    --max:1200px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:var(--dark);
    background:white;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:var(--max);
    margin:auto;
}

section{
    padding:90px 0;
}

header{
    padding:24px 0;
    border-bottom:1px solid var(--border);
    background:white;
    position:sticky;
    top:0;
    z-index:100;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    height:48px;
}

.menu{
    display:flex;
    gap:30px;
}

.menu a{
    text-decoration:none;
    color:var(--dark);
    font-weight:500;
}

.btn{
    display:inline-block;
    padding:16px 28px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:var(--primary);
    color:white;
}

.btn-primary:hover{
    background:var(--primary-dark);
}

.btn-secondary{
    border:1px solid var(--border);
    color:var(--dark);
}

.hero{
    text-align:center;
    padding:120px 0;
}

.hero h1{
    font-size:clamp(3rem,6vw,5rem);
    line-height:1.1;
    font-weight:800;
    max-width:900px;
    margin:auto;
}

.hero p{
    max-width:800px;
    margin:30px auto;
    color:var(--muted);
    font-size:1.2rem;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.metrics{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.metric{
    border:1px solid var(--border);
    border-radius:16px;
    padding:25px;
}

.metric strong{
    display:block;
    font-size:1.5rem;
}

.gray{
    background:var(--light);
}

.section-title{
    text-align:center;
    max-width:800px;
    margin:auto auto 60px;
}

.section-title h2{
    font-size:2.4rem;
    margin-bottom:15px;
}

.section-title p{
    color:var(--muted);
}

.grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.card{
    background:white;
    border:1px solid var(--border);
    border-radius:18px;
    padding:35px;
}

.card h3{
    margin-bottom:15px;
}

.card p{
    color:var(--muted);
}

.problems{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.problem{
    background:white;
    border:1px solid var(--border);
    padding:25px;
    border-radius:16px;
}

.about{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.about p{
    margin-bottom:20px;
    color:var(--muted);
}

.cta{
    background:var(--dark);
    color:white;
    border-radius:24px;
    text-align:center;
    padding:80px 40px;
}

.cta h2{
    font-size:2.5rem;
    margin-bottom:15px;
}

.cta p{
    color:#d1d5db;
    max-width:700px;
    margin:auto auto 30px;
}

footer{
    border-top:1px solid var(--border);
    padding:50px 0;
    text-align:center;
}

footer p{
    color:var(--muted);
}

.focus-areas{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:20px 0 30px;
}

.focus-areas span{
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:999px;
    padding:8px 14px;
    font-size:.95rem;
    font-weight:500;
}
.advisor-note{
    margin-top:25px;
    padding-left:18px;
    border-left:4px solid var(--primary);
    color:var(--muted);
    font-style:italic;
}

.grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.hero-highlights{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(4,260px);
    justify-content:center;
    gap:24px;
}

@media(max-width:900px){

.grid-2{
    grid-template-columns:1fr;
}

.grid-3{
    grid-template-columns:1fr;
}

.problems{
    grid-template-columns:1fr;
}

.metrics{
    grid-template-columns:1fr;
}

.menu{
    display:none;
}

.hero h1{
    font-size:2.7rem;
}

}