/* MDP Security Hero Styles */
.mdp-hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #0A0A23;
}

.mdp-hero-full {
    min-height: 100vh;
}

.mdp-hero-large {
    min-height: 80vh;
}

.mdp-hero-medium {
    min-height: 60vh;
}

/* Background Styles */
.mdp-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mdp-hero-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0A0A23 0%, #1a1a3e 100%);
}

.mdp-hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mdp-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mdp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 35, 0.7);
    backdrop-filter: blur(2px);
}

/* Particles */
.mdp-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mdp-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FFD700;
    opacity: 0.5;
    border-radius: 50%;
    animation: mdp-float-up 20s linear infinite;
}

@keyframes mdp-float-up {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-10vh) translateX(100px);
        opacity: 0;
    }
}

/* Content */
.mdp-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

.mdp-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mdp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    color: #FFD700;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
}

.mdp-badge-icon {
    font-size: 16px;
}

.mdp-hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: bold;
    line-height: 1.1;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mdp-hero-animated .mdp-hero-title {
    animation: mdp-fade-in-up 1s ease-out;
}

.mdp-hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #B8B8C8;
    margin-bottom: 40px;
    max-width: 600px;
}

.mdp-hero-animated .mdp-hero-description {
    animation: mdp-fade-in-up 1s ease-out 0.2s both;
}

/* Buttons */
.mdp-hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.mdp-hero-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mdp-button-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0A0A23;
}

.mdp-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.mdp-button-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.mdp-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFD700;
    color: #FFD700;
}

.mdp-hero-button svg {
    width: 20px;
    height: 20px;
}

.mdp-hero-animated .mdp-hero-buttons {
    animation: mdp-fade-in-up 1s ease-out 0.4s both;
}

/* Features */
.mdp-hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.mdp-hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #B8B8C8;
}

.mdp-hero-feature svg {
    width: 20px;
    height: 20px;
    color: #FFD700;
}

.mdp-hero-animated .mdp-hero-features {
    animation: mdp-fade-in-up 1s ease-out 0.6s both;
}

/* Visual Shield */
.mdp-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mdp-hero-shield {
    position: relative;
    width: 400px;
    height: 400px;
    animation: mdp-float 6s ease-in-out infinite;
}

.mdp-hero-shield svg {
    width: 100%;
    height: 100%;
}

.mdp-shield-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(40px);
    animation: mdp-pulse-glow 3s ease-in-out infinite;
}

/* Scroll Indicator */
.mdp-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #B8B8C8;
    font-size: 14px;
    z-index: 2;
}

.mdp-scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    position: relative;
}

.mdp-scroll-wheel {
    width: 4px;
    height: 10px;
    background: #FFD700;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: mdp-scroll-down 2s ease-in-out infinite;
}

/* Animations */
@keyframes mdp-fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mdp-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes mdp-pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes mdp-scroll-down {
    0% {
        opacity: 0;
        top: 10px;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .mdp-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mdp-hero-text {
        order: 2;
    }
    
    .mdp-hero-visual {
        order: 1;
    }
    
    .mdp-hero-shield {
        width: 300px;
        height: 300px;
    }
    
    .mdp-hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .mdp-hero-buttons {
        justify-content: center;
    }
    
    .mdp-hero-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mdp-hero-content {
        padding: 60px 0;
    }
    
    .mdp-hero-title {
        font-size: clamp(28px, 8vw, 48px);
    }
    
    .mdp-hero-description {
        font-size: 16px;
    }
    
    .mdp-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mdp-hero-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .mdp-hero-shield {
        width: 250px;
        height: 250px;
    }
    
    .mdp-hero-features {
        flex-direction: column;
        align-items: center;
    }
}