*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --primary:#2563eb;
    --primary-dark:#1d4ed8;
    --dark:#0f172a;
    --text:#334155;
    --light:#f8fafc;
    --border:#e2e8f0;
}

body{
    font-family:Arial, sans-serif;
    background:#ffffff;
    color:var(--text);
    line-height:1.7;
}

.container{
    width:92%;
    max-width:1280px;
    margin:auto;
}

a{
    text-decoration:none;
}

.section{
    padding:100px 0;
}

.btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
}

.btn-primary{
    background:var(--primary);
    color:white;
}

.btn-primary:hover{
    background:var(--primary-dark);
}

.text-center{
    text-align:center;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-title{
    font-size:72px;
    line-height:1.1;
    color:var(--dark);
    margin-bottom:20px;
}

.hero-desc{
    font-size:20px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-bottom:40px;
}

.btn-outline{
    border:1px solid var(--primary);
    color:var(--primary);
    padding:14px 28px;
    border-radius:8px;
}

.stats{
    display:flex;
    gap:40px;
}

.stat-number{
    font-size:32px;
    font-weight:700;
    color:var(--dark);
}

.hero-card{
    background:#f8fafc;
    border:1px solid var(--border);
    border-radius:20px;
    padding:40px;
}

.trust-bar{
    background:#f8fafc;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    padding:30px 0;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    text-align:center;
}

@media(max-width:991px){

.hero-grid{
    grid-template-columns:1fr;
}

.trust-grid{
    grid-template-columns:repeat(2,1fr);
}

.hero-title{
    font-size:42px;
}

.stats{
    flex-wrap:wrap;
}
}

.section-title{
    text-align:center;
    margin-bottom:20px;
}

.section-title h2{
    font-size:48px;
    color:var(--dark);
    margin-bottom:10px;
}

.section-title p{
    max-width:700px;
    margin:auto;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
    margin-top:60px;
}

.service-card{
    background:#ffffff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:30px;
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.service-icon{
    width:60px;
    height:60px;
    border-radius:12px;
    background:#eff6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.service-card h3{
    font-size:22px;
    margin-bottom:12px;
    color:var(--dark);
}

.service-card p{
    font-size:15px;
}

@media(max-width:1200px){

.services-grid{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.services-grid{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:34px;
}

}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.pricing-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:35px;
    position:relative;
    transition:0.3s;
}

.pricing-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.pricing-popular{
    border:2px solid var(--primary);
}

.popular-badge{
    position:absolute;
    top:-12px;
    right:20px;
    background:var(--primary);
    color:#fff;
    padding:6px 14px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}

.plan-name{
    font-size:24px;
    font-weight:700;
    color:var(--dark);
}

.plan-price{
    font-size:48px;
    font-weight:700;
    color:var(--dark);
    margin:20px 0;
}

.plan-price span{
    font-size:16px;
    color:#64748b;
}

.plan-features{
    list-style:none;
    margin:25px 0;
}

.plan-features li{
    margin-bottom:12px;
}

@media(max-width:991px){

.pricing-grid{
    grid-template-columns:1fr;
}

}

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:60px;
}

.feature-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:30px;
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.feature-icon{
    width:70px;
    height:70px;
    border-radius:15px;
    background:#eff6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:20px;
}

.feature-card h3{
    color:var(--dark);
    margin-bottom:15px;
}

@media(max-width:991px){

.features-grid{
    grid-template-columns:1fr;
}

}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:60px;
}

.portfolio-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    overflow:hidden;
    transition:.3s;
}

.portfolio-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.portfolio-image{
    height:220px;
    background:linear-gradient(
    135deg,
    #2563eb,
    #7c3aed
    );
}

.portfolio-content{
    padding:25px;
}

.portfolio-tag{
    display:inline-block;
    padding:6px 12px;
    background:#eff6ff;
    color:#2563eb;
    border-radius:20px;
    font-size:12px;
    margin-bottom:15px;
}

.portfolio-content h3{
    margin-bottom:10px;
    color:var(--dark);
}

@media(max-width:991px){

.portfolio-grid{
    grid-template-columns:1fr;
}

}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:60px;
}

.testimonial-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:30px;
}

.testimonial-card p{
    margin-bottom:20px;
}

.testimonial-name{
    font-weight:700;
    color:var(--dark);
}

.testimonial-role{
    color:#64748b;
    font-size:14px;
}

@media(max-width:991px){

.testimonial-grid{
    grid-template-columns:1fr;
}

}

.cta-section{
    background:linear-gradient(
    135deg,
    #2563eb,
    #7c3aed
    );

    color:white;
    padding:100px 0;
    text-align:center;
}

.cta-section h2{
    font-size:48px;
    margin-bottom:20px;
}

.cta-section p{
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
}