:root{
    --bg:#f5f7fb;
    --card:#ffffff;
    --text:#172033;
    --muted:#667085;
    --line:#e5e7eb;
    --primary:#2563eb;
    --primary-dark:#1d4ed8;
    --dark:#0f172a;
    --shadow:0 15px 35px rgba(15,23,42,.08);
}

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

html{
    scroll-behavior:smooth;
}

body{
    background:var(--bg);
    color:var(--text);
    font-family:Inter,Arial,Helvetica,sans-serif;
    line-height:1.7;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 24px;
}

.narrow{
    max-width:800px;
}

.header{
    background:#fff;
    border-bottom:1px solid var(--line);
    position:sticky;
    top:0;
    z-index:100;
}

.nav{
    height:76px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.brand{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
    color:var(--dark);
}

.brand strong{
    display:block;
}

.brand small{
    color:var(--muted);
}

.logo{
    width:48px;
    height:48px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--primary);
    color:#fff;
    font-weight:700;
}

.menu{
    display:flex;
    gap:24px;
}

.menu a{
    color:var(--muted);
    text-decoration:none;
    font-weight:600;
}

.menu a:hover{
    color:var(--primary);
}

.hero{
    padding:100px 0;
    background:linear-gradient(135deg,#eef4ff,#ffffff);
}

.hero-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:40px;
    align-items:center;
}

.badge{
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    background:#e8f0ff;
    color:var(--primary);
    font-size:14px;
    font-weight:700;
}

h1{
    font-size:52px;
    line-height:1.15;
    margin:18px 0;
}

h2{
    font-size:34px;
    margin-bottom:18px;
}

h3{
    margin-bottom:12px;
}

.lead{
    font-size:18px;
    color:var(--muted);
}

.actions{
    margin-top:30px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.btn{
    padding:13px 20px;
    border-radius:12px;
    border:1px solid var(--line);
    background:#fff;
    text-decoration:none;
    color:var(--dark);
    font-weight:600;
    transition:.2s;
}

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

.btn.primary{
    background:var(--primary);
    border-color:var(--primary);
    color:#fff;
}

.btn.primary:hover{
    background:var(--primary-dark);
}

.section{
    padding:80px 0;
}

.section-label{
    color:var(--primary);
    font-weight:700;
    margin-bottom:10px;
}

.muted{
    background:#f8fafc;
}

.two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.grid{
    display:grid;
    gap:24px;
}

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

.card{
    background:var(--card);
    border:1px solid var(--line);
    border-radius:18px;
    padding:26px;
    box-shadow:var(--shadow);
}

.highlight{
    border-top:5px solid var(--primary);
}

.highlight p{
    display:flex;
    justify-content:space-between;
    gap:10px;
    padding:10px 0;
    border-bottom:1px solid #f0f2f5;
}

.highlight p:last-child{
    border-bottom:none;
}

.info-list{
    list-style:none;
}

.info-list li{
    margin-bottom:10px;
}

.checklist{
    list-style:none;
    margin-top:20px;
}

.checklist li{
    padding:14px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:12px;
    margin-bottom:12px;
}

.checklist li::before{
    content:"✓ ";
    color:var(--primary);
    font-weight:700;
}

.why-box{
    margin-top:50px;
}

.contact-card p{
    margin-bottom:12px;
}

.contact-card a{
    color:var(--primary);
    text-decoration:none;
}

.note{
    margin-top:20px;
    color:var(--muted);
}

.cta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:20px;
    padding:35px;
    box-shadow:var(--shadow);
}

.footer{
    background:var(--dark);
    color:#fff;
    padding:50px 0;
}

.footer-grid{
    display:flex;
    justify-content:space-between;
    gap:30px;
}

.footer p{
    color:#cbd5e1;
    margin-top:8px;
}

.footer-links a{
    display:block;
    margin-bottom:8px;
    color:#e2e8f0;
    text-decoration:none;
}

.footer-links a:hover{
    color:#fff;
}

.page{
    min-height:60vh;
}

@media(max-width:900px){

    .hero-grid,
    .cards,
    .two-col{
        grid-template-columns:1fr;
    }

    .footer-grid,
    .nav,
    .cta{
        flex-direction:column;
        align-items:flex-start;
    }

    .menu{
        flex-wrap:wrap;
    }

    h1{
        font-size:38px;
    }

    h2{
        font-size:28px;
    }

    .nav{
        height:auto;
        padding:18px 0;
    }
}

.logo-img{
    height:50px;
    width:auto;
    max-width:180px;
    object-fit:contain;
    display:block;
}
.portfolio-card{
    overflow:hidden;
}

.portfolio-img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:14px;
    margin-bottom:18px;
    background:#f1f5f9;
}

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

.testimonial-photo{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    margin:0 auto 15px;
}

.testimonial-rating{
    font-size:20px;
    margin-bottom:10px;
}

.testimonial-text{
    font-style:italic;
    margin-bottom:15px;
}
