/* 
    EASYBOOST SUCCESS HERO v3.1 - MOBILE OPTIMIZED
    Prefix: .st-
*/

@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;800&family=Outfit:wght@200;400;700;900&display=swap');

.st-hero-wrapper {
    background-color: #020205 !important;
    padding: 140px 0 80px 0 !important;
    position: relative !important;
    overflow: hidden !important;
    font-family: 'Outfit', sans-serif !important;
    display: flex !important;
    align-items: center !important;
    min-height: 80vh !important;
}

/* 1. BACKGROUND BEAMS */
.st-bg-beams {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 50% -20%, rgba(0, 194, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 46, 99, 0.05) 0%, transparent 40%);
    z-index: 0;
}

.st-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 25px !important;
    display: grid !important;
    grid-template-columns: 1.2fr 0.8fr !important;
    align-items: center !important;
    gap: 40px !important;
    position: relative !important;
    z-index: 10 !important;
}

/* --- 2. TEXT SIDE --- */
.st-text-side { text-align: left !important; }

.st-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #FF9933;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.st-title {
    font-family: 'Syncopate', sans-serif !important;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.st-title span {
    font-weight: 400;
    color: transparent !important;
    -webkit-text-stroke: 1px rgba(255,255,255,0.4);
}

.st-gradient-txt {
    background: linear-gradient(90deg, #FF2E63, #FF9933, #00C2FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.st-description {
    font-size: 17px;
    color: #94a3b8;
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 40px;
    border-left: 2px solid #00C2FF;
    padding-left: 20px;
}

/* --- 3. TROPHY CARD --- */
.st-visual-side {
    position: relative;
    perspective: 1500px;
}

.st-trophy-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 45px 35px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    transform: rotateY(-15deg) rotateX(8deg);
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.st-trophy-card:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
    border-color: #00C2FF;
}

.st-graph-box {
    width: 100%; height: 100px;
    background: rgba(0, 194, 255, 0.05);
    border-radius: 15px; margin-top: 25px;
    position: relative; overflow: hidden;
}

.st-graph-line {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 0%;
    background: linear-gradient(0deg, #00C2FF, transparent);
    animation: growGraph 3s infinite alternate ease-in-out;
}

@keyframes growGraph { from { height: 20%; } to { height: 75%; } }

/* --- 4. MOBILE SPECIFIC OVERRIDES --- */
@media (max-width: 1024px) {
    .st-container {
        grid-template-columns: 1fr !important; /* Stack vertically */
        text-align: center !important;
        gap: 60px !important;
    }

    .st-text-side { text-align: center !important; }
    
    .st-description {
        margin: 0 auto 35px auto !important;
        border-left: none !important;
        border-top: 2px solid #00C2FF !important; /* Change border to top on mobile */
        padding-top: 20px !important;
        padding-left: 0 !important;
        font-size: 15px !important;
    }

    .st-text-side div {
        justify-content: center !important; /* Center buttons */
    }

    .st-visual-side {
        margin-top: 20px !important;
    }

    /* Important: Disable 3D tilt on mobile to avoid overflow */
    .st-trophy-card {
        transform: none !important; 
        max-width: 380px !important;
        margin: 0 auto !important;
        padding: 35px 25px !important;
    }
    
    .st-title {
        font-size: 2.8rem !important; /* Controlled size for phones */
        letter-spacing: -1px !important;
    }
}

@media (max-width: 480px) {
    .st-hero-wrapper { padding-top: 120px !important; }
    .st-title { font-size: 2.2rem !important; }
    .st-trophy-card { padding: 30px 20px !important; }
}