﻿
    .banner-left {
        position: relative;
        z-index: 2;
    }

    /* Badge */

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 7px;

        padding: 7px 14px;

        border: 1px solid rgba(255,255,255,0.35);
        border-radius: 30px;

        background: rgba(255,255,255,0.10);

        color: #fff;

        font-size: 13px;
        font-weight: 600;

        backdrop-filter: blur(5px);
    }

    .hero-badge i {
        color: #4ade80;
    }


    /* Heading */

    .banner-left h6 {
        margin-top: 22px;
        margin-bottom: 8px;

        font-size: 16px;
        font-weight: 600;
        letter-spacing: 0.3px;
    }

    .banner-left h1 {
        margin-bottom: 15px;

        font-size: 60px;
        line-height: 1.1;

        font-weight: 800;
    }


    /* Description */

    .hero-description {
        max-width: 600px;

        font-size: 16px;
        line-height: 1.8;

        color: rgba(255,255,255,0.92);
    }

    .hero-description strong {
        color: #fff;
    }


    /* Buttons */

    .hero-buttons {
        display: flex;
        align-items: center;

        gap: 12px;

        margin-top: 25px;
    }

    .hero-buttons .primary-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .hero-secondary-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;

        padding: 12px 22px;

        color: #fff;

        border: 1px solid rgba(255,255,255,0.5);
        border-radius: 4px;

        font-size: 13px;
        font-weight: 600;

        text-transform: uppercase;

        transition: all 0.3s ease;
    }

    .hero-secondary-btn:hover {
        color: #222;
        background: #fff;
        border-color: #fff;
        text-decoration: none;
    }


    /* Trust */

    .hero-trust {
        display: flex;
        flex-wrap: wrap;

        gap: 22px;

        margin-top: 30px;
        padding-top: 20px;

        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .trust-item {
        display: flex;
        align-items: center;

        gap: 7px;

        color: #fff;

        font-size: 13px;
        font-weight: 500;
    }

    .trust-item i {
        color: #4ade80;
        font-size: 16px;
    }


    /* Mobile */

    @media (max-width: 767px) {

        .banner-left {
            padding: 20px;
        }

        .banner-left h1 {
            font-size: 42px;
        }

        .banner-left h6 {
            font-size: 14px;
        }

        .hero-description {
            font-size: 14px;
            line-height: 1.7;
        }

        .hero-buttons {
            flex-wrap: wrap;
        }

        .hero-trust {
            gap: 12px;
        }

        .trust-item {
            font-size: 12px;
        }

    }