/* COMPONENTS - Refined Performance */

/* Hero V3 */
.hero-v3 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px; /* Precisely tuned for PC branding */
    background: linear-gradient(rgba(2, 3, 4, 0.85), rgba(2, 3, 4, 0.92)), url('../img/hero_blue.jpg') no-repeat center center/cover; /* Refined for more image clarity */
    background-attachment: fixed;
    text-align: center;
}

.hero-v3-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.brand-logo-hero {
    width: 350px; /* Prominent Premium Size */
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    margin-bottom: 50px; /* Generous spacing for premium readability */
}

.hero-v3 h1 {
    font-size: clamp(2.2rem, 5vw, 4rem); /* More responsive for slim phones */
    letter-spacing: -1.5px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-v3 h1 span {
    background: linear-gradient(90deg, #fff, var(--text-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-v3-tagline {
    font-size: clamp(0.9rem, 1.2vw, 1.05rem); /* Even subtiler as requested */
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.6;
    text-align: center; /* Perfect centering */
    margin: 0 auto;
}

.hero-v3-exp {
    font-weight: 500;
    color: var(--text-primary);
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.05) 45%, rgba(255, 255, 255, 0.15) 55%, rgba(255, 255, 255, 0.05) 65%);
    background-size: 200% 100%;
    padding: 10px 20px;
    border-radius: 100px; /* Sophisticated Pill */
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.02);
    animation: badgeShimmer 4s infinite linear;
    position: relative;
    overflow: hidden;
}

@keyframes badgeShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.badge-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    filter: drop-shadow(0 0 8px rgba(0, 180, 255, 0.4));
}

.hero-v3-exp strong {
    color: var(--accent-primary); /* Already blue, but ensuring consistency */
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.hero-v3-exp .exp-text {
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    opacity: 0.9;
}

/* PC Version Size Optimization */
@media (min-width: 1024px) {
    .hero-v3-exp {
        padding: 12px 24px;
        gap: 16px;
    }
    .hero-v3-exp .exp-text {
        font-size: 1.1rem; /* Slightly bigger for PC */
    }
    .hero-v3-exp strong {
        font-size: 1.4rem;
    }
}

.hero-v3-ctas {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-top: var(--spacing-sm);
}

@media (max-width: 1024px) {
    .hero-v3-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    .brand-logo-hero { 
        width: 220px; 
        margin-bottom: 35px; /* Added more space for mobile readability */
    }
    .hero-v3 {
        min-height: auto !important; /* Let's keep it tight to the content */
        padding-top: 110px;
        padding-bottom: 60px; 
        /* ZOOM IN & PUSH UP: Forcing the width to 150% zooms the picture in significantly. Anchoring it to the bottom then leverages this zoom to shove the main subject much higher up the screen. */
        background: linear-gradient(rgba(2, 3, 4, 0.85), rgba(2, 3, 4, 0.92)), url('../img/hero_mobile.jpg') no-repeat center bottom !important; 
        background-size: 150% auto !important; /* Forces physical magnification */
        background-attachment: scroll !important;
    }
}

/* Buttons Component Upgrade */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-lg); /* Refined corner */
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
    color: #fff;
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(56, 182, 255, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(56, 182, 255, 0.05); /* Subtle blue tint */
    border-color: var(--accent-primary);
    color: var(--text-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--accent-glow), 0 0 15px var(--accent-glow);
    text-shadow: 0 0 8px var(--accent-glow);
}
