


.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

.banner {
    padding: 150px 0 30px 0 ;
    overflow: hidden;
}

.banner_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.banner_content {
    max-width: 560px;
}

.banner_badge {
    display: inline-flex;
    padding: 10px 18px;
    background: #edf4ff;
    border-radius: 40px;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 30px;
}

.banner_title {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
}

.banner_title span {
    color: #2563eb;
}

.banner_text {
    font-size: 20px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 35px;
}

.banner_list {
    list-style: none;
    margin-bottom: 40px;
}

.banner_list li {
    position: relative;
    padding-left: 42px;
    margin-bottom: 18px;
    font-size: 18px;
}

.banner_list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;

    width: 28px;
    height: 28px;

    border-radius: 50%;
    background: #2563eb;
    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;
}

.banner_form {
    display: flex;
    gap: 12px;
    padding: 8px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15,23,42,.08);
    margin-bottom: 16px;
}

.banner_form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 18px 20px;
    font-size: 16px;
}

.banner_form button {
    border: none;
    background: #2563eb;
    color: #fff;
    padding: 18px 28px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.banner_note {
    font-size: 14px;
    color: #94a3b8;
}

.banner_image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard {
    width: 100%;
    max-width: 700px;
    background: #fff;
    border-radius: 36px;
    padding: 35px;
    position: relative;

    box-shadow:
        0 50px 100px rgba(15,23,42,.10);

    animation: dashboardFloat 8s ease-in-out infinite;
}

.dashboard_title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.dashboard_subtitle {
    color: #94a3b8;
}

.dashboard_stats {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
    margin: 40px 0;
}

.dashboard_stat {
    background: #f8fafc;
    padding: 22px;
    border-radius: 20px;
	text-align: center;
}

.dashboard_stat span {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 8px;
}

.dashboard_chart {
    height: 260px;
    background: #f8fafc;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.chart_grid {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            to top,
            transparent,
            transparent 50px,
            rgba(37,99,235,.06) 50px,
            rgba(37,99,235,.06) 51px
        );
}

.chart_svg {
    width: 100%;
    height: 100%;
}

.chart_path {
    fill: none;
    stroke: #2563eb;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: draw 8s ease forwards infinite;
}

.chart_fill {
    fill: rgba(37,99,235,.10);
}

.dashboard_card {
    position: absolute;
    background: #fff;
    padding: 18px 24px;
    border-radius: 20px;

    box-shadow:
        0 20px 50px rgba(15,23,42,.12);

    animation:
        float 5s ease-in-out infinite;
}

.dashboard_card span {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 5px;
}

.card_1 {
    top: 210px;
    right: -40px;
}

.card_2 {
    bottom: 80px;
    left: -30px;
    animation-delay: .7s;
}

.card_3 {
    bottom: -30px;
    right: 70px;
    animation-delay: 1.3s;
}

@keyframes draw {
    0% {
        stroke-dashoffset: 1200;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dashboardFloat {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes float {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width:1100px){

    .banner_wrapper {
        flex-direction: column;
    }

    .banner_title {
        font-size: 48px;
    }

    .dashboard {
        max-width: 620px;
    }
}

@media (max-width:768px){

    .banner {
        padding: 100px 0;
    }

    .banner_title {
        font-size: 36px;
    }

    .banner_form {
        flex-direction: column;
    }

    .banner_form button {
        width: 100%;
    }

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

    .dashboard_card {
        display: none;
    }
}
