/* =========================================================
   HERO SECTION
   ========================================================= */

.hero {
    padding: 80px 0;
    background: #f7f9fc;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 60px;
}

.hero-content {
    min-width: 0;
}

.hero-content h1 {
    margin: 0;
    font-size: 72px;
    line-height: 1.1;
    font-weight: 800;
    color: #0d2d73;
}

.hero-content h1 span {
    display: block;
    color: #d4a017;
}

.hero-badge {
    display: inline-block;
    max-width: 100%;
    background: #fff3d3;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.4;
}

.hero-content p {
    max-width: 650px;
    margin: 25px 0;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 35px 0;
}

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 16px 34px;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
}

.btn-primary {
    background: #0d2d73;
    color: #fff;
}

.btn-outline {
    border: 2px solid #0d2d73;
    color: #0d2d73;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 30px;
    font-weight: 600;
}

.hero-image {
    min-width: 0;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 620px;
    height: auto;
    margin: 0 auto;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .hero {
        padding: 60px 0;
    }

    .hero-wrapper {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
        gap: 35px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-badge {
        font-size: 14px;
        padding: 10px 16px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-buttons {
        gap: 12px;
    }

    .btn-primary,
    .btn-outline {
        padding: 14px 22px;
    }

    .hero-trust {
        gap: 15px;
        font-size: 14px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .hero {
        padding: 45px 0 50px;
        overflow: hidden;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero-content {
        width: 100%;
        min-width: 0;
        text-align: center;
    }

    .hero-badge {
        display: block;
        width: fit-content;
        max-width: 100%;
        margin: 0 auto 20px;
        padding: 9px 14px;
        font-size: 12px;
        line-height: 1.4;
        white-space: normal;
    }

    .hero-content h1 {
        font-size: clamp(38px, 11vw, 52px);
        line-height: 1.05;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .hero-content p {
        width: 100%;
        max-width: 100%;
        margin: 20px auto;
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin: 25px 0;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        min-height: 50px;
        padding: 14px 20px;
    }

    .hero-trust {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
        font-size: 13px;
    }

    .hero-image {
        width: 100%;
        min-width: 0;
    }

    .hero-image img {
        width: 100%;
        max-width: 390px;
        height: auto;
        margin: 0 auto;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .hero {
        padding: 35px 0 40px;
    }

    .hero-wrapper {
        gap: 28px;
    }

    .hero-content h1 {
        font-size: clamp(34px, 10.5vw, 44px);
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 12px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-trust {
        font-size: 12px;
    }

    .hero-image img {
        max-width: 330px;
    }

}