/* --- Hero Tech Insights Styling --- */
.hero-tech-section {
    background: #020617 !important;
    padding-top: 150px !important;
    padding-bottom: 120px !important;
    color: #ffffff !important;
    overflow: hidden !important;
    position: relative !important;
    margin-top: -85px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    /* Offset for fixed header */
}

.hero-tech-section .wp-block-columns.alignwide {
    max-width: 1340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: var(--wp--preset--spacing--50) !important;
    padding-right: var(--wp--preset--spacing--50) !important;
    box-sizing: border-box !important;
}

.hero-tech-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 900' fill='none'%3E%3Cpath d='M-100,450 C300,150 500,750 900,450 C1100,300 1300,600 1600,450' stroke='rgba(96, 165, 250, 0.04)' stroke-width='2' fill='none'/%3E%3Cpath d='M-100,500 C300,200 500,800 900,500 C1100,350 1300,650 1600,500' stroke='rgba(124, 58, 237, 0.03)' stroke-width='1.5' fill='none'/%3E%3Cpath d='M-100,400 C300,100 500,700 900,400 C1100,250 1300,550 1600,400' stroke='rgba(96, 165, 250, 0.02)' stroke-width='1' fill='none'/%3E%3C/svg%3E") no-repeat center/cover !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.hero-tech-section::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: radial-gradient(circle at 80% 40%, rgba(124, 58, 237, 0.08) 0%, transparent 50%) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.hero-tech-section>* {
    position: relative !important;
    z-index: 2 !important;
}

/* --- Premium Hero Glow --- */
.hero-glow {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 60vw !important;
    height: 60vh !important;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%) !important;
    transform: translate(-50%, -50%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
    filter: blur(80px) !important;
    animation: glow-pulse 10s ease-in-out infinite alternate !important;
}

@keyframes glow-pulse {
    from {
        transform: translate(-50%, -50%) scale(1) !important;
        opacity: 0.4 !important;
    }

    to {
        transform: translate(-50%, -50%) scale(1.3) !important;
        opacity: 0.7 !important;
    }
}

.hero-badge-trusted {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 18px !important;
    background: rgba(30, 41, 59, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50px !important;
    color: #e2e8f0 !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin-bottom: 28px !important;
    width: fit-content !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    animation: reveal-up 1s cubic-bezier(0.23, 1, 0.32, 1) both !important;
}

.hero-badge-icon-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-heading {
    font-size: clamp(2.2rem, 5.2vw, 4.8rem) !important;
    font-weight: 850 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.03em !important;
    color: #ffffff !important;
    background: linear-gradient(to bottom right, #ffffff 60%, #e2e8f0 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    margin-top: 0 !important;
    margin-bottom: 24px !important;
    animation: reveal-up 1s cubic-bezier(0.23, 1, 0.32, 1) both !important;
}

.gradient-text-hero {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block !important;
}

.hero-subheading {
    font-size: 1.25rem !important;
    line-height: 1.6 !important;
    color: #94a3b8 !important;
    max-width: 600px !important;
    margin-bottom: 40px !important;
    animation: reveal-up 1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s both !important;
}

.hero-buttons {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    animation: reveal-up 1s cubic-bezier(0.23, 1, 0.32, 1) 0.4s both !important;
}

@keyframes reveal-up {
    from {
        opacity: 0 !important;
        transform: translateY(40px) !important;
        filter: blur(10px) !important;
    }

    to {
        opacity: 1 !important;
        transform: translateY(0) !important;
        filter: blur(0) !important;
    }
}

.hero-btn-explore-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%) !important;
    color: #ffffff !important;
    padding: 14px 32px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    border: none !important;
    text-transform: capitalize !important;
    letter-spacing: normal !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35) !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.hero-btn-explore-gradient:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5) !important;
    opacity: 0.95 !important;
    color: #ffffff !important;
}

.hero-btn-learn-more-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.hero-btn-learn-more-link:hover {
    color: #3b82f6 !important;
}

.hero-btn-learn-more-link:hover .play-circle {
    border-color: #3b82f6 !important;
    background: rgba(59, 130, 246, 0.1) !important;
}

.hero-btn-learn-more-link:hover .play-circle svg {
    fill: #3b82f6 !important;
}

.play-circle {
    width: 28px !important;
    height: 28px !important;
    border: 2px solid #ffffff !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    background: transparent !important;
}

.play-circle svg {
    width: 10px !important;
    height: 10px !important;
    fill: #ffffff !important;
    transition: all 0.3s ease !important;
    transform: translateX(1px) !important;
}

.hero-image-element {
    animation: floating 6s ease-in-out infinite, scale-in 1.5s cubic-bezier(0.23, 1, 0.32, 1) both !important;
    filter: drop-shadow(0 0 50px rgba(37, 99, 235, 0.2)) !important;
    display: flex !important;
    justify-content: center !important;
}

.hero-image-element img {
    mix-blend-mode: screen !important;
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
}


@keyframes scale-in {
    from {
        opacity: 0 !important;
        transform: scale(0.7) rotate(-5deg) !important;
        filter: blur(20px) !important;
    }

    to {
        opacity: 1 !important;
        transform: scale(1) rotate(0deg) !important;
        filter: blur(0) !important;
    }
}

.hero-image-element img {
    max-height: 380px !important;
    width: auto !important;
    object-fit: contain !important;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) !important;
    }

    50% {
        transform: translateY(-20px) rotate(2deg) !important;
    }
}

@media (max-width: 782px) {
    .hero-tech-section {
        padding-top: 100px !important;
        padding-bottom: 80px !important;
        text-align: center !important;
    }

    .hero-badge-trusted {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-subheading {
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 20px !important;
    }

    .hero-buttons {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 16px !important;
    }

    .hero-image-element {
        margin-top: 20px !important;
    }

    .hero-btn-explore-gradient {
        padding: 12px 28px !important;
        font-size: 0.95rem !important;
    }

    .hero-btn-learn-more-link {
        font-size: 0.95rem !important;
    }
}

/* --- Hero Stats Section Styles --- */
.hero-stats-wrapper {
    max-width: 1340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: var(--wp--preset--spacing--50) !important;
    padding-right: var(--wp--preset--spacing--50) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-top: 80px !important;
}

.hero-stats-container {
    background: rgba(15, 23, 42, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    padding: 24px 30px !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.hero-stats-inner {
    display: flex !important;
    justify-content: space-around !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
}

.hero-stat-item {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
}

.hero-stat-icon-wrap {
    width: 48px !important;
    height: 48px !important;
    background: rgba(37, 99, 235, 0.1) !important;
    border: 1.5px solid rgba(37, 99, 235, 0.25) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #60a5fa !important;
    transition: all 0.3s ease !important;
}

.hero-stat-item:hover .hero-stat-icon-wrap {
    background: rgba(37, 99, 235, 0.2) !important;
    border-color: #3b82f6 !important;
    /* box-shadow: 0 0 15px rgba(37, 99, 235, 0.3) !important; */
    transform: translateY(-2px) !important;
}

.hero-stat-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

.hero-stat-value {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    font-family: inherit !important;
}

.hero-stat-label {
    font-size: 0.85rem !important;
    color: #94a3b8 !important;
    font-weight: 500 !important;
    font-family: inherit !important;
}

@media (max-width: 900px) {
    .hero-stats-inner {
        justify-content: center !important;
        gap: 24px !important;
    }

    .hero-stat-item {
        flex: 0 0 calc(50% - 12px) !important;
        justify-content: flex-start !important;
    }
}

@media (max-width: 520px) {
    .hero-stats-inner {
        gap: 16px !important;
    }

    .hero-stat-item {
        flex: 0 0 calc(50% - 8px) !important;
    }

    .hero-stat-icon-wrap {
        width: 38px !important;
        height: 38px !important;
    }

    .hero-stat-icon-wrap svg {
        width: 18px !important;
        height: 18px !important;
    }

    .hero-stat-value {
        font-size: 1.2rem !important;
        text-align: start;
    }

    .hero-stat-label {
        font-size: 0.58rem !important;
        text-align: start
    }

    .hero-stats-wrapper {
        margin-top: 20px !important;
    }
}