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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#ffffff;
    color:#111111;
    line-height:1.6;
}

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

.container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

/* HEADER */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#ffffff;
    border-bottom:1px solid #e5e7eb;
}

.header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.brand-block{
    line-height:1.1;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#111111;
}

.logo span{
    color:#00bfff;
}

.tagline{
    font-size:12px;
    color:#666666;
    margin-top:4px;
}

.nav{
    display:flex;
    gap:30px;
}

.nav a{
    color:#444444;
    transition:.3s;
}

.nav a:hover{
    color:#00bfff;
}

.btn{
    display:inline-block;
    background:#00bfff;
    color:#ffffff;
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
    border:1px solid #00bfff;
}

.btn:hover{
    transform:translateY(-2px);
    background:#009ed3;
    border-color:#009ed3;
}

.btn.small{
    padding:10px 18px;
}

.btn.outline{
    background:#ffffff;
    color:#00bfff;
    border:1px solid #00bfff;
}

.btn.outline:hover{
    background:#00bfff;
    color:#ffffff;
}

.btn.full{
    width:100%;
    text-align:center;
}

/* HERO */

.hero{
    padding:50px 0;
    text-align:center;
    background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
}

.eyebrow{
    color:#00bfff;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    font-weight:700;
    margin-bottom:15px;
}

.hero h1{
    font-size:64px;
    line-height:1.1;
    max-width:900px;
    margin:0 auto 25px;
    color:#111111;
}

.hero-text{
    max-width:700px;
    margin:0 auto;
    color:#555555;
    font-size:20px;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

/* SECTIONS */

.section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#111111;
}

.dark{
    background:#f8fafc;
}

/* GRID */

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

.services-grid{
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
}

.card{
    background:#ffffff;
    padding:30px;
    border-radius:12px;
    border:1px solid #e5e7eb;
    box-shadow:0 10px 30px rgba(15,23,42,.06);
}

.card h2{
    font-size:42px;
    color:#00bfff;
    margin-bottom:5px;
}

.card h3{
    margin-bottom:15px;
    color:#111111;
}

.card p{
    color:#555555;
}

/* PRICING */

.pricing-grid{
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
}

.price-card{
    background:#ffffff;
    padding:40px 30px;
    border-radius:14px;
    text-align:center;
    position:relative;
    border:1px solid #e5e7eb;
    box-shadow:0 10px 30px rgba(15,23,42,.06);
}

.featured{
    border:2px solid #00bfff;
}

.badge{
    position:absolute;
    top:-12px;
    left:50%;
    transform:translateX(-50%);
    background:#00bfff;
    color:#ffffff;
    padding:6px 14px;
    border-radius:20px;
    font-size:12px;
    font-weight:bold;
}

.setup-price{
    font-size:30px;
    font-weight:800;
    color:#111111;
    margin-top:18px;
}

.setup-price span{
    font-size:15px;
    color:#666666;
    font-weight:500;
}

.price{
    font-size:48px;
    font-weight:bold;
    margin:10px 0 20px;
    color:#111111;
}

.price span{
    font-size:16px;
    color:#666666;
}

.price-card ul{
    list-style:none;
    margin-bottom:30px;
}

.price-card li{
    margin:12px 0;
    color:#555555;
}

/* PORTFOLIO */

.portfolio-grid{
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
}

.portfolio-card{
    background:#ffffff;
    padding:30px;
    border-radius:12px;
    border:1px solid #e5e7eb;
    transition:.3s;
    box-shadow:0 10px 30px rgba(15,23,42,.06);
}

.portfolio-card:hover{
    transform:translateY(-5px);
    border-color:#00bfff;
}

.portfolio-card h3{
    margin-bottom:12px;
    color:#111111;
}

.portfolio-card p{
    color:#555555;
}

/* WHY */

.why{
    background:#f8fafc;
}

.why-inner{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.why h2{
    font-size:42px;
    color:#111111;
}

.why-list p{
    padding:15px 0;
    border-bottom:1px solid #e5e7eb;
    color:#444444;
}

/* CONTACT */

.contact-section{
    text-align:center;
    background:#ffffff;
}

.contact-box{
    max-width:850px;
}

.contact-box h2{
    font-size:48px;
    margin-bottom:20px;
    color:#111111;
}

.contact-box p{
    color:#555555;
    margin-bottom:30px;
}

.contact-form{
    margin-top:35px;
    text-align:left;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:15px;
    border:1px solid #e5e7eb;
    border-radius:8px;
    font-family:Arial, Helvetica, sans-serif;
    font-size:15px;
    color:#111111;
    background:#ffffff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#00bfff;
    box-shadow:0 0 0 3px rgba(0,191,255,.12);
}

.contact-form textarea{
    min-height:140px;
    resize:vertical;
    margin-bottom:20px;
}

.contact-form button{
    border:none;
    cursor:pointer;
}

/* FOOTER */

.footer{
    border-top:1px solid #e5e7eb;
    padding:30px 0;
    background:#ffffff;
}

.footer-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#666666;
}

/* MOBILE */

@media(max-width:768px){

    .header-inner{
        flex-direction:column;
        gap:20px;
    }

    .nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .hero{
        padding:70px 0;
    }

    .hero h1{
        font-size:42px;
    }

    .hero-text{
        font-size:18px;
    }

    .section{
        padding:75px 0;
    }

    .section-title h2,
    .why h2,
    .contact-box h2{
        font-size:32px;
    }

    .why-inner{
        grid-template-columns:1fr;
    }

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

    .footer-inner{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
}