*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial;
    background:#f5f5f5;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:20px;
}

.hero-section{
    padding:80px 0;
    background:#f5f5f5;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.left-content,
.right-content{
    width:50%;
}

.right-content img{
    width:100%;
    display:block;
}

h1{
    font-size:35px;
    line-height:40px;
    margin-bottom:20px;
}

.left-content p{
    font-size:19px;
    line-height:30px;
    margin-bottom:30px;
}

.button{
    display:flex;
    gap:20px;
}

.main-btn{
    display:inline-block;
    padding:18px 35px;
    border-radius:12px;
    background:#7c3aed;
    color:white;
    font-size:18px;
    text-decoration:none;
    text-align:center;
}

.review-section{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:35px;
}

.review-users{
    display:flex;
}

.review-users img{
    width:50px;
    height:50px;
    border-radius:50%;
    object-fit:cover;
    margin-left:-12px;
    border:3px solid white;
}

.review-users img:first-child{
    margin-left:0;
}

.stars{
    color:#fbbf24;
    font-size:20px;
}

.review-text p{
    font-size:15px;
    line-height:20px;
    color:#6b7280;
}

.tools-section{
    padding:70px 0 20px;
    background:#ffffff;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:32px;
    color:#111827;
    margin-bottom:10px;
}

.section-title p{
    font-size:16px;
    color:#6b7280;
}

.tools-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

.tool-card{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:28px;
    display:flex;
    gap:22px;
    align-items:flex-start;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
}

.tool-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    overflow:hidden;
}

.tool-icon img{
    width:45px;
    height:45px;
    object-fit:contain;
    display:block;
}

.red{background:#fee2e2;}
.green{background:#d1fae5;}
.purple{background:#ede9fe;}
.yellow{background:#fef3c7;}
.orange{background:#ffedd5;}
.blue{background:#dbeafe;}

.tool-card h3{
    font-size:22px;
    color:#111827;
    margin-bottom:10px;
}

.tool-card p{
    font-size:16px;
    line-height:24px;
    color:#4b5563;
    margin-bottom:18px;
}

.tool-card a{
    color:#7c3aed;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
}

.tools-btn{
    text-align:center;
    margin-top:35px;
    margin-bottom:0;
}

.info-section{
    padding:0 0 70px;
    background:#ffffff;
}

.stats-box{
    background:#f8fafc;
    border-radius:18px;
    padding:25px 35px;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
    margin-bottom:45px;
}

.stat-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    border-right:1px solid #e5e7eb;
}

.stat-item:last-child{
    border-right:none;
}

.stat-icon,
.work-icon{
    width:58px;
    height:58px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}

.stat-item h3{
    font-size:28px;
    color:#111827;
}

.stat-item p{
    font-size:14px;
    color:#6b7280;
}

.work-title{
    text-align:center;
    font-size:30px;
    color:#111827;
    margin-bottom:30px;
}

.work-boxes{
    display:grid;
    grid-template-columns:1fr auto 1fr auto 1fr;
    align-items:center;
    gap:25px;
}

.work-card{
    background:#f8fafc;
    border-radius:18px;
    padding:25px;
    display:flex;
    align-items:center;
    gap:18px;
}

.work-card h3{
    font-size:17px;
    color:#111827;
    margin-bottom:8px;
}

.work-card p{
    font-size:14px;
    line-height:22px;
    color:#6b7280;
}

.arrow{
    font-size:32px;
    color:#6b7280;
}

@media (max-width:768px){

    .container{
        padding:20px 16px;
    }

    .hero-section{
        padding:35px 0;
    }

    .hero-content{
        display:grid;
        grid-template-columns:48% 52%;
        gap:8px;
        align-items:center;
    }

    .left-content,
    .right-content{
        width:100%;
    }

    h1{
        font-size:26px;
        line-height:32px;
        margin-bottom:12px;
    }

    .left-content p{
        font-size:14px;
        line-height:22px;
        margin-bottom:18px;
    }

    .button{
        width:190px;
        flex-direction:column;
        gap:10px;
    }

    .main-btn{
        width:100%;
        padding:14px 16px;
        font-size:15px;
        border-radius:8px;
    }

    .right-content img{
        width:120%;
        max-width:260px;
        margin-left:-10px;
        margin-top:-60px;
    }

    .review-section{
        margin-top:28px;
        gap:12px;
        width:250px;
    }

    .review-users img{
        width:36px;
        height:36px;
        margin-left:-8px;
    }

    .stars{
        font-size:15px;
    }

    .review-text p{
        font-size:12px;
        line-height:16px;
    }

    .tools-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:12px;
    }

    .tool-card{
        padding:14px 10px;
        gap:10px;
        border-radius:14px;
    }

    .tool-icon{
        width:48px;
        height:48px;
        border-radius:12px;
    }

    .tool-icon img{
        width:32px;
        height:32px;
    }

    .tool-card h3{
        font-size:14px;
        line-height:18px;
        margin-bottom:6px;
    }

    .tool-card p{
        font-size:11px;
        line-height:17px;
        margin-bottom:10px;
    }

    .tool-card a{
        font-size:12px;
    }

    .tools-btn .main-btn{
        width:170px;
    }

    .stats-box{
        grid-template-columns:repeat(4, 1fr);
        padding:14px 10px;
        gap:8px;
        margin-bottom:28px;
    }

    .stat-item{
        gap:6px;
        border-right:none;
        flex-direction:column;
        text-align:center;
    }

    .stat-icon{
        width:38px;
        height:38px;
        font-size:18px;
        border-radius:12px;
    }

    .stat-item h3{
        font-size:17px;
    }

    .stat-item p{
        font-size:10px;
        line-height:14px;
    }

    .work-title{
        font-size:22px;
        margin-bottom:22px;
    }

    .work-boxes{
        grid-template-columns:1fr auto 1fr auto 1fr;
        gap:8px;
    }

    .work-card{
        padding:12px 8px;
        gap:7px;
        border-radius:14px;
        flex-direction:column;
    }

    .work-icon{
        width:40px;
        height:40px;
        font-size:20px;
        border-radius:12px;
    }

    .work-card h3{
        font-size:11px;
        margin-bottom:5px;
    }

    .work-card p{
        font-size:9px;
        line-height:13px;
    }

    .arrow{
        font-size:20px;
    }
}