﻿.page-header {
    position: relative;
    overflow: hidden;
    padding: 120px 0 90px;
    background: linear-gradient(135deg,#ffffff 0%,#eef5ff 100%);
}

    .page-header::before {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        right: -120px;
        top: -120px;
        border-radius: 50%;
        background: rgba(37,99,235,.06);
    }

    .page-header::after {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        left: -80px;
        bottom: -120px;
        border-radius: 50%;
        background: rgba(37,99,235,.04);
    }

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}


.page-header h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 25px;
}

.page-header p {
    font-size: 19px;
    line-height: 1.8;
    color: #6b7280;
    
    margin-bottom: 40px;
}

.page-header-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media(max-width:768px) {

    .page-header {
        padding: 90px 0 70px;
    }

        .page-header h1 {
            font-size: 38px;
        }

        .page-header p {
            font-size: 16px;
        }
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 35px 0;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px 30px;
}

    .feature-list li {
        position: relative;
        padding-left: 40px;
        font-size: 16px;
        line-height: 1.7;
        color: #4b5563;
    }

        .feature-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 2px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #2563eb;
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .feature-list li {
        transition: .3s;
    }

        .feature-list li:hover {
            color: #111827;
            transform: translateX(5px);
        }

@media(max-width:768px) {

    .feature-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}