.at-hero {
    position: relative;
}

    .at-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(11,17,27,.65), rgba(27,47,74,.55) 60%, transparent);
        z-index: 1;
    }

    .at-hero > .row {
        position: relative;
        z-index: 2;
    }

.at-hero-side h1 {
    font-weight: 700;
    font-size: 2rem;
    text-shadow: 0 0 20px rgba(232,160,32,.45), 0 2px 10px rgba(0,0,0,.5);
    margin-bottom: 16px;
}

.at-hero-side .lead {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,.88);
}

.at-btn {
    background: #e8a020;
    color: #1b2f4a;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 6px;
    border: none;
    transition: all .25s ease;
    text-decoration: none;
    display: inline-block;
}

    .at-btn:hover {
        background: #c2841a;
        color: #fff;
    }

.at-benefits {
    background: #f4f6f9;
    padding: 64px 0;
}

.at-benefits-header {
    text-align: center;
    margin-bottom: 40px;
}

.at-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e8a020;
    margin-bottom: 8px;
}

.at-benefits-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1b2f4a;
    margin: 0;
}

.at-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.at-benefit-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    border: 1px solid #dde2ea;
    transition: transform .3s ease, box-shadow .3s ease;
    text-align: center;
}

    .at-benefit-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 36px rgba(27,47,74,.14);
        border-color: #e8a020;
    }

.at-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(232,160,32,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

    .at-benefit-icon i {
        font-size: 22px;
        color: #e8a020;
    }

.at-benefit-card h5 {
    font-weight: 700;
    color: #1b2f4a;
    margin-bottom: 10px;
    font-size: 1rem;
}

.at-benefit-card p {
    color: #555;
    font-size: .92rem;
    line-height: 1.7;
    margin: 0;
}

at-video-section {
    width: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.at-video {
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .at-hero {
        height: auto !important;
        padding: 60px 0;
    }

    .at-hero-side h1 {
        font-size: 1.5rem;
    }

    .at-benefits {
        padding: 40px 0;
    }
}
