/* ===== RESET ===== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter,sans-serif;
    background:#f8faff;
    color:#111827;
    line-height:1.7;
}

/* ===== CONTAINER ===== */

.container{
    width:min(1200px,90%);
    margin:auto;
}

/* ===== HEADER ===== */

header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(12px);
    border-bottom:1px solid #e5e7eb;
}

header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:80px;
}

.logo{
    text-decoration:none;
    font-size:1.5rem;
    font-weight:800;
    color:#111827;
}

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

nav a{
    text-decoration:none;
    color:#374151;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#6d5dfc;
}

.nav-btn{
    text-decoration:none;
    padding:12px 22px;
    border-radius:14px;
    color:white;
    font-weight:700;
    background:linear-gradient(
        135deg,
        #7c3aed,
        #2563eb
    );
}

/* ===== HERO ===== */

#hero{
    padding:120px 0;
    text-align:center;
}

.hero-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:#eef2ff;
    color:#5b21b6;
    font-size:.9rem;
    font-weight:700;
    margin-bottom:25px;
}

#hero h1{
    max-width:850px;
    margin:auto;
    font-size:4.5rem;
    line-height:1.05;
    font-weight:800;
    margin-bottom:25px;
}

#hero p{
    max-width:750px;
    margin:auto;
    color:#6b7280;
    font-size:1.15rem;
    margin-bottom:40px;
}

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

.btn-primary,
.btn-secondary{
    text-decoration:none;
    padding:16px 28px;
    border-radius:16px;
    font-weight:700;
}

.btn-primary{
    background:linear-gradient(
        135deg,
        #7c3aed,
        #2563eb
    );
    color:white;
}

.btn-secondary{
    background:white;
    border:1px solid #dbe4ff;
    color:#111827;
}

.hero-points{
    list-style:none;
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.hero-points li{
    color:#374151;
    font-weight:600;
}

/* ===== SECTIONS ===== */

section{
    padding:100px 0;
}

section h2{
    text-align:center;
    font-size:2.8rem;
    margin-bottom:15px;
}

section > .container > p{
    text-align:center;
    max-width:700px;
    margin:auto;
    color:#6b7280;
    margin-bottom:60px;
}

/* ===== GRIDS ===== */

.services-grid,
.process-grid,
.portfolio-grid,
.benefits-grid,
.pricing-grid,
.faq-list{
    display:grid;
    gap:25px;
}

.services-grid,
.portfolio-grid,
.benefits-grid,
.pricing-grid{
    grid-template-columns:repeat(3,1fr);
}

.process-grid{
    grid-template-columns:repeat(4,1fr);
}

/* ===== CARDS ===== */

.service-card,
.project-card,
.benefit-card,
.pricing-card,
.faq-item,
.step{
    background:white;
    border-radius:24px;
    padding:30px;
    border:1px solid #edf0f7;
    transition:.3s;
}

.service-card:hover,
.project-card:hover,
.benefit-card:hover,
.pricing-card:hover,
.step:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.service-card h3,
.project-card h3,
.benefit-card h3,
.pricing-card h3,
.step h3,
.faq-item h3{
    margin-bottom:12px;
}

.service-card p,
.project-card p,
.benefit-card p,
.pricing-card p,
.step p,
.faq-item p{
    color:#6b7280;
}

/* ===== PROCESS ===== */

.step span{
    display:inline-flex;
    width:55px;
    height:55px;
    border-radius:14px;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    font-weight:800;
    color:white;
    background:linear-gradient(
        135deg,
        #7c3aed,
        #2563eb
    );
}

/* ===== PRICING ===== */

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

.pricing-card strong{
    display:block;
    margin-top:20px;
    font-size:1.6rem;
    color:#6d5dfc;
}

/* ===== CONTACT ===== */

form{
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}

label{
    font-weight:600;
}

input,
textarea{
    width:100%;
    padding:16px;
    border:1px solid #dce3f1;
    border-radius:14px;
    outline:none;
    font-size:1rem;
}

input:focus,
textarea:focus{
    border-color:#6d5dfc;
}

button{
    border:none;
    cursor:pointer;
    padding:16px;
    border-radius:16px;
    color:white;
    font-weight:700;
    font-size:1rem;
    background:linear-gradient(
        135deg,
        #7c3aed,
        #2563eb
    );
}

/* ===== INTRO ===== */

#intro{
    background:white;
}

#intro h2{
    max-width:900px;
    margin:auto;
    margin-bottom:20px;
}

/* ===== FOOTER ===== */

footer{
    background:#0f172a;
    color:#94a3b8;
    text-align:center;
    padding:40px 0;
}

/* ===== RESPONSIVE ===== */

@media(max-width:1000px){

    .services-grid,
    .portfolio-grid,
    .benefits-grid,
    .pricing-grid,
    .process-grid{
        grid-template-columns:1fr 1fr;
    }

    #hero h1{
        font-size:3.5rem;
    }

}

@media(max-width:768px){

    nav{
        display:none;
    }

    .services-grid,
    .portfolio-grid,
    .benefits-grid,
    .pricing-grid,
    .process-grid{
        grid-template-columns:1fr;
    }

    #hero{
        padding:80px 0;
    }

    #hero h1{
        font-size:2.5rem;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-points{
        flex-direction:column;
        gap:12px;
    }

  }
