/* ===================================
   Premium Financial Hero Section
   =================================== */

.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #050b18; /* Deep institutional navy */
    overflow: hidden;
    text-align: center;
    padding: 2rem;
}

/* --- Animated Grid Background --- */
.hero-bg-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: 
        linear-gradient(rgba(74, 144, 226, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 144, 226, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    /* This creates the 'floor' perspective of a data center */
    transform: perspective(600px) rotateX(60deg);
    animation: grid-move 25s linear infinite;
    z-index: 1;
}

@keyframes grid-move {
    0% { transform: perspective(600px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(600px) rotateX(60deg) translateY(60px); }
}

/* --- Atmospheric Glow Sphere --- */
.hero-glow-sphere {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
    z-index: 2;
    filter: blur(80px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* --- Content Wrapper --- */
.hero-content-centered {
    position: relative;
    z-index: 5;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

/* Institutional Badge */
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 50px;
    color: #4A90E2; /* Sky Blue */
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #ffffff;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

/* --- The Glowing Sky Blue Text (PMS, AIF, SIF) --- */
.glow-text {
    color: #4A90E2; 
    text-shadow: 0 0 15px rgba(74, 144, 226, 0.5);
    display: inline-block;
    animation: text-pulse 3s ease-in-out infinite alternate;
}

@keyframes text-pulse {
    from { 
        text-shadow: 0 0 10px rgba(74, 144, 226, 0.4); 
        transform: scale(1);
    }
    to { 
        text-shadow: 0 0 30px rgba(74, 144, 226, 0.8), 0 0 45px rgba(74, 144, 226, 0.3);
        transform: scale(1.02);
    }
}

.hero-description {
    color: #cbd5e1;
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* --- CTA Buttons --- */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn-main {
    background: #4A90E2;
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

.hero-btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.5);
    background: #357ABD;
}

.hero-btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* --- Trust Indicators --- */
.hero-trust-mini {
    margin-top: 4rem;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-trust-mini .dot {
    margin: 0 12px;
    color: #4A90E2;
}

/* Animation Keys */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .hero-cta-group { flex-direction: column; align-items: center; }
    .hero-btn-main, .hero-btn-outline { width: 100%; max-width: 300px; }
}