/* Massive Traffic System Upgrade Page Styles - Professional Design */

body {
    font-family: 'Poppins', sans-serif;
    background-image: 
        linear-gradient(rgba(10, 25, 47, 0.40), rgba(10, 25, 47, 0.40)),
        url('https://s3.amazonaws.com/wbm.websbest/MTSSiteBackground_Compressed.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding: 40px 0;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content Card - Creates separation from background */
.content-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 40px;
}

.main-headline {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

/* Video Section */
.video-section {
    margin: 40px 0;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: none;
}

/* Video Placeholder (remove when adding actual video) */
.video-placeholder {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.video-placeholder i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.video-placeholder p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin: 0;
}

/* CTA Buttons Top */
.cta-buttons-top {
    margin: 40px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* Section Divider */
.section-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 50px 0;
}

/* Benefits Header */
.benefits-header {
    text-align: center;
    margin-bottom: 40px;
}

.sub-headline {
    font-size: 2rem;
    font-weight: 600;
    color: #ffd700;
    line-height: 1.3;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

/* Benefits List */
.benefits-list {
    margin: 40px 0;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 15px;
}

.benefits-list li {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #28a745;
    padding: 20px 20px 20px 60px;
    position: relative;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.benefits-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.benefit-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #28a745;
}

.benefits-list h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* CTA Buttons */
.cta-buttons {
    margin: 50px 0 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.btn-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    padding: 25px 40px;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-cta i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.btn-monthly {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.btn-monthly:hover {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.4);
}

.btn-annual {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
}

.btn-annual:hover {
    background: linear-gradient(135deg, #1e7e34 0%, #155724 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(40, 167, 69, 0.4);
}

.btn-main {
    display: block;
    font-size: 1.4rem;
}

.btn-subtitle {
    font-size: 1rem;
    font-weight: 400;
    display: block;
    margin-top: 8px;
    opacity: 0.95;
}

/* Decline Link */
.decline-link {
    margin: 30px 0;
    text-align: center;
}

.decline-link p {
    font-size: 1rem;
    margin: 0;
}

.decline-link a {
    color: #ffd700;
    text-decoration: underline;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.decline-link a:hover {
    color: #ffed4e;
    text-decoration: none;
}

/* Copyright */
.copyright {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.9rem;
    color: #cccccc;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Scroll to Top */
#scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#scroll-top:hover {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

/* Responsive styles */
@media (max-width: 768px) {
    .content-card {
        padding: 40px 25px;
        border-radius: 15px;
    }
    
    .main-headline {
        font-size: 2rem;
    }
    
    .sub-headline {
        font-size: 1.5rem;
    }
    
    .video-container iframe {
        height: 300px;
    }
    
    .benefits-list h4 {
        font-size: 1rem;
    }
    
    .benefits-list li {
        padding: 15px 15px 15px 55px;
    }
    
    .benefit-icon {
        left: 15px;
        font-size: 1.3rem;
    }
    
    .btn-cta {
        font-size: 1.2rem;
        padding: 20px 30px;
    }
    
    .btn-main {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    body {
        padding: 20px 0;
    }
    
    .content-card {
        padding: 30px 20px;
    }
    
    .main-headline {
        font-size: 1.6rem;
    }
    
    .sub-headline {
        font-size: 1.3rem;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .btn-cta {
        font-size: 1.1rem;
        padding: 18px 25px;
    }
    
    .btn-main {
        font-size: 1.1rem;
    }
}