/* Hero container */
.hero-box {
    background: linear-gradient(180deg, #f4f7ff 0%, #f9fbff 100%);
    border-radius: 24px;
    padding: 60px 40px 36px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* Title & text */
.hero-title {
    font-weight: 700;
    color: #4b6cb7;
}

.hero-text {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 860px;
    margin: 0 auto 12px;
}

/* Divider */
.hero-divider {
    height: 1px;
    width: 80%;
    margin: 0 auto;
    background: linear-gradient( to right, transparent, rgba(99, 102, 241, 0.35), transparent );
}

/* Action footer */
.hero-actions {
    margin-top: 8px;
}

.hero-actions-box {
    background-color: #fff
}
/* Visual Guard buttons */
.vg-btn-primary {
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    padding: 10px 26px;
}

.vg-btn-primary:hover {
    background: linear-gradient(135deg, #4338ca, #2563eb);
    color: #fff;
}

.vg-btn-outline {
    background: transparent;
    color: #4f46e5;
    border: 1.5px solid #c7d2fe;
    border-radius: 12px;
    font-weight: 500;
    padding: 10px 26px;
}

    .vg-btn-outline:hover {
        background: linear-gradient(135deg, #638FEA, #475FB8 );
        color: #fff;
    }

/* Credentials */
.hero-credentials {
    font-size: 0.9rem;
}
