* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0a0a1a, #1a0a2e);
    color: #ffffff;
    overflow: hidden;
    position: relative;
    width: 100vw;
    height: 100vh;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.50);
    z-index: 1;
}

.page-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: 18px;
    padding: 20px;
}

header {
    text-align: center;
}

.logo {
    max-height: 160px;
    height: auto;
    width: auto;
}

.title-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-line-1 {
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 6px;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    text-shadow: 0 0 20px rgba(255, 106, 0, 0.8), 0 0 40px rgba(255, 106, 0, 0.4);
}

.title-line-2 {
    color: #ff6a00;
    font-weight: 600;
    letter-spacing: 8px;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    text-shadow: 0 0 20px rgba(255, 106, 0, 0.8), 0 0 40px rgba(255, 106, 0, 0.4);
}

.hero-container {
    text-align: center;
    max-width: 90vw;
}

.hero-image {
    max-height: 42vh;
    max-width: 90vw;
    object-fit: contain;
    height: auto;
    width: auto;
}

.benefits-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-icon {
    color: #00ffff;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.benefit-text {
    color: #ffffff;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.cta-button {
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    border: none;
    border-radius: 50px;
    padding: 18px 60px;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 106, 0, 0.4);
}

.cta-button::before,
.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: transparent;
    border: 2px solid rgba(255, 106, 0, 0.6);
    animation: pulseRing 1.8s infinite;
    pointer-events: none;
}

.cta-button::after {
    animation-delay: 0.6s;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.cta-button:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 40px rgba(255, 106, 0, 0.6);
}

.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.92);
    padding: 14px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sticky-bar.visible {
    transform: translateY(0);
}

.cta-small {
    padding: 12px 40px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    body {
        overflow-y: auto;
    }

    .hero-image {
        max-height: 32vh;
    }

    .benefits-row {
        flex-direction: column;
        gap: 12px;
    }

    .cta-button {
        font-size: 1rem;
        padding: 14px 36px;
    }

    .sticky-bar {
        transform: translateY(0);
    }
}
