/**
 * ============================================================
 * BITFORCE HERO V3 - PREMIUM ENTERPRISE HERO
 * ============================================================
 * @package     Bitforce_Theme
 * @since       3.0.0
 * @version     3.2.0
 */

/* ============================================================
   HERO CONTAINER
============================================================ */

.hero-v3 {
    position: relative;
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(118deg, #04101f 0%, #051426 51%, #071b33 100%);
    color: #ffffff;
    isolation: isolate;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;

    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* ============================================================
   LEFT COLUMN
============================================================ */

.hero-left{
    width:100%;
    align-self:center;
}

.hero-right{
    width:100%;
    position:relative;
    min-height:600px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    align-self:center;
}

/* ============================================================
   BADGE
============================================================ */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px 8px 12px;
    color: #d6f7ff;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(139, 221, 255, 0.22);
    border-radius: 999px;
    background: rgba(12, 51, 82, 0.37);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-bottom: 24px;
}

.hero-badge i {
    color: #5de0ff;
}

/* ============================================================
   EYEBROW
============================================================ */

.hero-eyebrow {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #5de0ff;
    margin-bottom: 12px;
}

/* ============================================================
   TITLE
============================================================ */

.hero-title {
    margin: 0;
    font-size: clamp(3rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.hero-title span {
    color: #00d4ff;
    background: linear-gradient(100deg, #00bde9 2%, #74e9ff 45%, #00c8f4 72%, #b1f4ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glowPulse 13s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.72;
        background-position: 0% 50%;
    }
    50% {
        opacity: 1;
        background-position: 100% 50%;
    }
}

/* ============================================================
   DESCRIPTION
============================================================ */

.hero-description {
    max-width: 560px;
    margin-top: 25px;
    color: #b8c4d8;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
}

/* ============================================================
   BUTTON CONTAINER
============================================================ */

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-top:36px;
}

/* ============================================================
   FEATURES GRID
============================================================ */

.hero-features{
    display:grid;
    grid-template-columns:repeat(3,minmax(170px,1fr));
    gap:18px;
    margin-top:48px;
}

/* ============================================================
   FEATURE CARDS
============================================================ */

.feature-card {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 14px;
    border: 1px solid rgba(184, 220, 255, 0.16);
    border-radius: 14px;
    background: rgba(12, 37, 65, 0.42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-icon {
    display: grid;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    place-items: center;
    color: #5de0ff;
    border: 1px solid rgba(93, 224, 255, 0.20);
    border-radius: 10px;
    background: rgba(0, 212, 255, 0.09);
}

.feature-card h4 {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #effaff;
}

.feature-card p {
    margin: 2px 0 0;
    font-size: 0.6875rem;
    color: #9dafc5;
}

/* ============================================================
   GLOW EFFECT - LARGE
============================================================ */

.hero-glow {
    position: absolute;
    z-index: -1;
    width: 90%;
    max-width: 650px;
    height: 90%;
    max-height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 197, 255, 0.15), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

/* ============================================================
   HERO IMAGE - FORCED LARGE SIZE
============================================================ */

.hero-products {
    display: block;
    width:min(100%,850px);
    height:auto;
    object-fit: contain;
    filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.34));
    animation: floatImage 7s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(-0.15deg);
    }
    50% {
        transform: translate3d(0, -12px, 0) rotate(0.15deg);
    }
}

.hero-right:hover .hero-products {
    filter: drop-shadow(0 34px 48px rgba(0, 0, 0, 0.40));
    transform: scale(1.018);
}

/* ============================================================
   RESPONSIVE - TABLETS
============================================================ */

@media (max-width: 992px) {
    .hero-v3 {
        padding: 104px 0 88px;
    }

    .hero-container{
    grid-template-columns:1fr;
    gap:40px;
    padding:0 30px;
    }

    .hero-left,
    .hero-right{
    width:100%;
    }

    .hero-badge {
        margin: 0 auto 24px;
    }

    .hero-description {
        margin: 25px auto 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features{
    grid-template-columns:repeat(2,1fr);
    }

    .hero-right {
        min-height: 400px;
    }

    .hero-products {
        max-width: 550px;
        margin:0 auto;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE
============================================================ */

@media (max-width: 576px) {
    .hero-v3 {
        padding: 72px 0 60px;
    }

    .hero-container {
        padding: 0 20px;
        gap: 20px;
    }

    .hero-title {
        font-size: 2.375rem;
    }

    .hero-description {
        font-size: 1.0625rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-right {
        min-height: 280px;
    }

    .hero-products{
        width:100%;
        max-width:420px;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .hero-title span,
    .hero-glow,
    .hero-products {
        animation: none;
    }

}