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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.6)),
                radial-gradient(circle at 30% 20%, rgba(255,107,107,0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(78,205,196,0.15) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 2rem;
}

.hero-content {
    max-width: 1000px;
    animation: fadeInUp 1s ease-out;
}

.attention-grabber {
    background: linear-gradient(45deg, #ff0844, #ffb199);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    display: inline-block;
    animation: pulse 2s infinite;
    border: 2px solid #ff0844;
}

.mega-headline {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff;
}

.highlight-text {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheadline {
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    margin-bottom: 3rem;
    color: #e0e0e0;
    font-weight: 400;
    line-height: 1.4;
}

.cta-button {
    display: inline-block;
    padding: 1.8rem 3.5rem;
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff0844, #ff6b6b);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    margin: 2rem 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(255,8,68,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border: none;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover:before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(255,8,68,0.6);
}

.cta-button.secondary {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    box-shadow: 0 15px 35px rgba(78,205,196,0.4);
}

.cta-button.secondary:hover {
    box-shadow: 0 20px 45px rgba(78,205,196,0.6);
}

.section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
    color: #ffffff;
}

.video-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.video-card {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border-color: #4ecdc4;
}

.video-card:focus {
    outline: 3px solid #4ecdc4;
    outline-offset: 2px;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.play-button {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.video-card:hover .play-button {
    transform: scale(1.1);
    background: white;
}

.proof-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #ff0844, #ffb199);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    animation: bounce 2s infinite;
    z-index: 10;
}

.video-responsive-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
}

.video-responsive-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    padding: 1rem;
}

.modal-content {
    background-color: #222;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    position: relative;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.close {
    color: #ff6b6b;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
}

.close:hover,
.close:focus {
    color: white;
    outline: 2px solid #ff6b6b;
    outline-offset: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.product-card {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border-color: #4ecdc4;
}

.product-card.live {
    border-color: #4ecdc4;
    background: rgba(78,205,196,0.05);
}

.product-card.coming-soon {
    border-color: #ffd700;
    background: rgba(255,215,0,0.05);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.product-description {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    height: 60px;
    overflow: hidden;
}

.product-stats {
    background: rgba(0,0,0,0.3);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #aaa;
}

.product-price {
    font-size: 2rem;
    font-weight: 900;
    color: #ff6b6b;
    margin: 1rem 0;
}

.product-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}

.product-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(78,205,196,0.4);
}

.product-button.live {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
}

.product-button.coming-soon {
    background: linear-gradient(45deg, #ffd700, #ffb347);
    color: #333;
    cursor: default;
}

.status-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    animation: bounce 2s infinite;
}

.status-badge.live {
    background: #4ecdc4;
    color: white;
}

.status-badge.coming-soon {
    background: #ffd700;
    color: #333;
}

.featured-section {
    background: linear-gradient(135deg, rgba(255,8,68,0.1) 0%, rgba(78,205,196,0.1) 100%);
    border-radius: 25px;
    padding: 3rem;
    margin: 3rem 0;
    border: 2px solid rgba(255,8,68,0.3);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #cccccc;
    font-weight: 600;
    margin-top: 0.5rem;
}

.footer {
    background: #0a0a0a;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 5rem;
}

/* Skip to content link for accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #4ecdc4;
    color: #000;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    font-weight: bold;
}

.skip-to-content:focus {
    top: 0;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Lead Magnet Popup Styles */
.lead-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.lead-popup.active {
    display: block;
}

.lead-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.lead-popup-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    max-width: 550px;
    margin: 5% auto;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(78, 205, 196, 0.3);
    animation: slideInDown 0.4s ease-out;
    text-align: center;
    border: 2px solid rgba(78, 205, 196, 0.2);
}

.lead-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2.5rem;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
}

.lead-popup-close:hover {
    color: #ff6b6b;
    transform: rotate(90deg);
}

.lead-popup-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.lead-popup-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead-popup-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.lead-popup-benefits {
    list-style: none;
    text-align: left;
    margin: 2rem auto;
    max-width: 400px;
}

.lead-popup-benefits li {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 0.8rem;
    padding-left: 0;
}

.lead-popup-form {
    margin: 2rem 0;
}

.lead-popup-input {
    width: 100%;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(78, 205, 196, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.lead-popup-input:focus {
    outline: none;
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.2);
}

.lead-popup-input::placeholder {
    color: #888;
}

.lead-popup-button {
    width: 100%;
    padding: 1.5rem 2rem;
    background: linear-gradient(45deg, #ff0844, #ff6b6b);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 8, 68, 0.4);
}

.lead-popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 8, 68, 0.6);
}

.lead-popup-button:active {
    transform: translateY(0);
}

.lead-popup-privacy {
    font-size: 0.85rem;
    color: #888;
    margin-top: 1rem;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section { padding: 1rem; }
    .section { padding: 2rem 1rem; }
    .products-grid { grid-template-columns: 1fr; }
    .video-preview-grid { grid-template-columns: 1fr; }
    .cta-button {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        margin: 1rem 0.5rem;
    }
    .modal-content {
        margin: 20% auto;
    }
    .product-description {
        height: auto;
    }
    .lead-popup-content {
        margin: 10% 1rem;
        padding: 2rem 1.5rem;
    }
    .lead-popup-title {
        font-size: 1.8rem;
    }
    .lead-popup-button {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
    }
}
