*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#0a0a0a;
    color:white;
    line-height:1.6;
}

a{
    text-decoration:none;
    color:inherit;
}

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:24px 5%;
    background:rgba(0,0,0,0.95);
    border-bottom:1px solid rgba(255,255,255,0.08);
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    font-size:1.1rem;
    font-weight:bold;
    letter-spacing:4px;
}

.nav{
    display:flex;
    gap:28px;
}

.nav a{
    color:#d6d6d6;
    text-transform:uppercase;
    font-size:0.95rem;
    transition:0.3s;
}

.nav a:hover,
.nav a.active{
    color:#ffffff;
}

.hero{
    min-height:45vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:40px;
    background:
    linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.8)),
    url("img/bg.jpg") center/cover no-repeat;
}

.subtitle{
    text-transform:uppercase;
    letter-spacing:3px;
    color:#b9b9b9;
    margin-bottom:14px;
    font-size:0.9rem;
}

.hero h1{
    font-size:3.4rem;
    text-transform:uppercase;
}

.services-section{
    padding:100px 5%;
}

.services-grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}

.service-card{
    background:#151515;
    border:1px solid rgba(255,255,255,0.07);
    padding:32px;
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-5px);
    border-color:rgba(255,255,255,0.2);
}

.service-card span{
    display:inline-block;
    font-size:2rem;
    font-weight:bold;
    color:#7e7e7e;
    margin-bottom:16px;
}

.service-card h3{
    margin-bottom:14px;
    font-size:1.3rem;
}

.service-card p{
    color:#cccccc;
}

.price-section{
    padding:90px 20px;
    background:#111111;
}

.price-box{
    max-width:850px;
    margin:0 auto;
    text-align:center;
}

.mini-title{
    text-transform:uppercase;
    letter-spacing:3px;
    color:#bdbdbd;
    margin-bottom:14px;
    font-size:0.85rem;
}

.price-box h2,
.info-box h2{
    font-size:2.7rem;
    margin-bottom:28px;
}

.price-list{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-bottom:26px;
}

.price-row{
    display:flex;
    justify-content:space-between;
    gap:20px;
    background:#151515;
    border:1px solid rgba(255,255,255,0.07);
    padding:18px 22px;
    color:#d7d7d7;
}

.price-note{
    color:#c9c9c9;
    max-width:700px;
    margin:0 auto;
}

.info-section{
    padding:90px 20px;
    background:#0d0d0d;
}

.info-box{
    max-width:850px;
    margin:0 auto;
    text-align:center;
}

.info-box p{
    color:#d0d0d0;
}

@media(max-width:900px){
    .services-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:2.5rem;
    }

    .price-box h2,
    .info-box h2{
        font-size:2.2rem;
    }
}

@media(max-width:768px){
    .header{
        flex-direction:column;
        gap:14px;
    }

    .nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:16px;
    }

    .price-row{
        flex-direction:column;
        text-align:left;
    }
}