/* Hero Section: Centered Minimalist - ULTIMATE ALIGNMENT & READABILITY */
.hero {
    position: relative !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #010816 !important;
    overflow: hidden !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
}

.hero-abstract-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url('../images/hero_abstract_bg.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    z-index: 1 !important;
    animation: hero-bg-move 80s infinite alternate ease-in-out !important;
}

@keyframes hero-bg-move {
    0% { transform: scale(1.0); }
    100% { transform: scale(1.25); }
}

/* DEEP DARK OVERLAY FOR WHITE TEXT */
.hero-abstract-bg::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(1, 8, 22, 0.75) !important;
    z-index: 2 !important;
}

.hero-premium-container {
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    max-width: 100% !important; /* Force full width for perfect centering */
    margin: 0 !important;
    padding: 0 40px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.hero-premium-content {
    width: 100% !important;
    max-width: 1200px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
}

/* FORCE PURE WHITE ON EVERYTHING */
.hero-title-main, 
.hero-title-main span,
.hero-subtitle,
.hero-subtitle span,
.hero-cta-note,
.hero-cta-note span {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    opacity: 1 !important;
    background: none !important;
    text-align: center !important;
}

.hero-title-main {
    font-size: clamp(3rem, 8vw, 5.5rem) !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin: 0 0 2.5rem 0 !important;
    text-shadow: 0 10px 50px rgba(0,0,0,1) !important;
}

.hero-title-desktop-text { display: inline-block !important; }
.hero-title-mobile-text { display: none !important; }

.hero-subtitle {
    font-size: clamp(1.4rem, 3.2vw, 2.2rem) !important;
    margin: 0 0 5rem 0 !important;
    line-height: 1.6 !important;
    font-weight: 600 !important;
    text-shadow: 0 2px 20px rgba(0,0,0,1) !important;
}

.hero-btns {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 0 3rem 0 !important;
    gap: 32px !important;
}

.hero-btns .btn-primary {
    width: fit-content !important; /* SHORTENED */
    min-width: 280px !important;
    padding: 24px 48px !important;
    font-size: 1.35rem !important;
    border-radius: 100px !important;
    background: #2563eb !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 0 50px rgba(37, 99, 235, 0.4) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
}

.hero-btns .btn-primary:hover {
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: 0 30px 80px rgba(37, 99, 235, 0.6) !important;
}

.hero-cta-note {
    font-size: 1.25rem !important;
    margin: 0 !important;
    font-weight: 500 !important;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute !important;
    bottom: 50px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    color: #ffffff !important;
    font-size: 2.2rem !important;
    animation: bounce 2s infinite !important;
}

@media (max-width: 768px) {
    .hero-title-main { font-size: 2.8rem !important; }
    .hero-title-desktop-text { display: none !important; }
    .hero-title-mobile-text { display: inline-block !important; }
    .hero-btns { flex-direction: column !important; }
    .hero-btns .btn-primary { width: 100% !important; min-width: 0 !important; }
}
