/* Hero Module - Force Styles for HubSpot */

.hero-container,
section.hero-container,
[class*="hero-container"] {
    position: relative !important;
    min-height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    /* Hardcoded Padding for Debugging - Removing Variables */
    padding-top: 180px !important;
    padding-bottom: 100px !important;

    overflow: hidden !important;
    background: #0B0F19 !important;
    /* Reverting to original Deep Blue */
    font-family: 'Inter',
        -apple-system,
        BlinkMacSystemFont,
        sans-serif !important;
}

@media (min-width: 768px) {

    .hero-container,
    section.hero-container,
    [class*="hero-container"] {
        module.spacing.desktop_padding_bottom|default(0)
    }
}

px) !important;
}
}
}

/* Background Elements */
.hero-container .hero-bg {
    position: absolute !important;
    inset: 0 !important;
    /* Glow moved further up (off-screen source) */
    background: radial-gradient(circle at 50% -30%, rgba(56, 189, 248, 0.25) 0%, rgba(0, 0, 0, 0) 70%) !important;
    animation: pulseSlow 6s ease-in-out infinite !important;
}

@keyframes pulseSlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

.hero-container .hero-glow-1 {
    position: absolute !important;
    top: 25% !important;
    left: 25% !important;
    width: 24rem !important;
    height: 24rem !important;
    background: rgba(56, 189, 248, 0.1) !important;
    border-radius: 9999px !important;
    filter: blur(100px) !important;
}

.hero-container .hero-glow-2 {
    position: absolute !important;
    bottom: 25% !important;
    right: 25% !important;
    width: 24rem !important;
    height: 24rem !important;
    background: rgba(249, 115, 22, 0.1) !important;
    border-radius: 9999px !important;
    filter: blur(100px) !important;
}

/* Content */
.hero-container .hero-content {
    position: relative !important;
    z-index: 10 !important;
    max-width: 80rem !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
    text-align: center !important;
}

/* Heading */
.hero-container .hero-heading {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-weight: 800 !important;
    font-size: 3rem !important;
    line-height: 1.2 !important;
    margin-bottom: 2rem !important;
}

@media (min-width: 768px) {
    .hero-container .hero-heading {
        font-size: 4.5rem !important;
    }
}

.hero-container .hero-heading-line {
    display: block !important;
}

.hero-container .hero-heading-line-1 {
    background: linear-gradient(to right, #ffffff, #9ca3af) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.hero-container .hero-heading-line-2 {
    background: linear-gradient(to right, #9ca3af, #ffffff) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Subheadline */
.hero-container .hero-subheadline {
    font-size: 1.125rem !important;
    color: #868686 !important;
    max-width: 42rem !important;
    margin: 0 auto 3rem !important;
    line-height: 1.6 !important;
}

@media (min-width: 768px) {
    .hero-container .hero-subheadline {
        font-size: 1.25rem !important;
    }
}

/* Buttons Container */
.hero-container .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    justify-content: center !important;
    align-items: center !important;
}

@media (min-width: 768px) {
    .hero-container .hero-buttons {
        flex-direction: row !important;
    }
}

/* Hero Cards */
.hero-container .hero-card {
    position: relative !important;
    padding: 2rem !important;
    background: #121826 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 1rem !important;
    width: 16rem !important;
    text-align: left !important;
    overflow: hidden !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: block !important;
}

.hero-container .hero-card:hover {
    border-color: rgba(56, 189, 248, 0.5) !important;
}

.hero-container .hero-card.security:hover {
    border-color: rgba(249, 115, 22, 0.5) !important;
}

.hero-container .hero-card-bg {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to right, rgba(56, 189, 248, 0), rgba(56, 189, 248, 0.05)) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.hero-container .hero-card:hover .hero-card-bg {
    opacity: 1 !important;
}

.hero-container .hero-card.security .hero-card-bg {
    background: linear-gradient(to right, rgba(249, 115, 22, 0), rgba(249, 115, 22, 0.05)) !important;
}

.hero-container .hero-card-content {
    position: relative !important;
    z-index: 10 !important;
}

.hero-container .hero-card-subtitle {
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #38bdf8 !important;
    font-weight: 600 !important;
}

.hero-container .hero-card.security .hero-card-subtitle {
    color: #F97316 !important;
}

.hero-container .hero-card-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-top: 0.25rem !important;
}

.hero-container .hero-card-desc {
    margin-top: 0.5rem !important;
    font-size: 0.875rem !important;
    color: #6b7280 !important;
    transition: color 0.3s ease !important;
}

.hero-container .hero-card:hover .hero-card-desc {
    color: #9ca3af !important;
}