:root {
    --primary-color: #FF4E50;
    --secondary-color: #3CDBC0;
    --accent-color: #FFCE00;
    --dark-color: #2A2A2A;
    --light-color: #FFFFFF;
    --light-bg: #F8F9FA;
    --gray-color: #6C757D;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    position: relative;
}

#countdown-banner {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #e53636;
    color: white;
    padding: 10px 5px;
    text-align: center;
    z-index: 2000;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.countdown-text {
    font-size: 1.2rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

#countdown-timer {
    font-size: 1.4rem;
    font-weight: 900;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 5px 15px;
    border-radius: 5px;
    letter-spacing: 2px;
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--light-color);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    text-align: center;
}

.logo img {
    max-height: 60px;
}

.text-logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 10px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section {
    padding: 80px 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--light-color);
    padding: 160px 0 80px;
    text-align: center;
}

h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.4;
}

.hero h2 {
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.image-gallery {
    max-width: 900px;
    margin: 30px auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: var(--light-bg);
    padding: 20px;
}

.image-gallery h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.gallery-instructions {
    color: #777;
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 15px;
    font-style: italic;
}

@media (max-width: 576px) {
    .gallery-instructions {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.gallery-item {
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: visible;
    background: transparent;
    width: auto;
    padding: 5px;
    display: inline-block;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 160px;
    height: auto;
    object-fit: none;
    display: inline-block;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .gallery-item {
        width: 140px;
    }
}

@media (min-width: 768px) {
    .gallery-container {
        gap: 20px;
    }
    
    .gallery-item {
        width: 180px;
    }
}

@media (min-width: 992px) {
    .gallery-item {
        width: 220px;
    }
}

.cta-button {
    display: inline-block;
    background-color: #ff6600;
    color: white;
    font-size: 1.6rem;
    font-weight: 800;
    padding: 22px 44px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 30px 0;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
    border: 3px solid #ffcc00;
    text-align: center;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 24px rgba(255, 102, 0, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
    }
}

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

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cta-button:hover {
    background-color: #ff3300;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 51, 0, 0.6);
}

.cta-button.large {
    font-size: 1.8rem;
    padding: 28px 55px;
}

.price-tag {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    display: inline-block;
    margin: 25px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 2px dashed #ffcc00;
    position: relative;
    animation: highlight 3s infinite;
}

@keyframes highlight {
    0% { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); }
    50% { box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3); }
    100% { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); }
}

.price-tag.large {
    padding: 30px;
    margin: 40px 0;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.8;
}

.old-price span {
    font-weight: bold;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--light-color);
    margin: 10px 0;
}

.price-tag.large .new-price {
    font-size: 3.5rem;
}

.discount {
    background-color: var(--accent-color);
    color: var(--dark-color);
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}

/* Pain Points Section */
.pain-points {
    background-color: var(--light-bg);
    text-align: center;
}

.pain-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.pain-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
}

/* How It Works Section */
.how-it-works {
    text-align: center;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
}

.step {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.explanation {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 15px;
}

.explanation h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Target Audience Section */
.target-audience {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.audience-list {
    list-style: none;
    max-width: 800px;
    margin: 30px auto;
}

.audience-list li {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

/* Course Content Section */
.course-content {
    text-align: center;
}

.modules {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.module {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    flex: 1;
    min-width: 250px;
    max-width: 500px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.module:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.module h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Bonus Section */
.bonus {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
    text-align: center;
}

.bonus-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.bonus-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.bonus-item h3 {
    margin-bottom: 15px;
}

/* Guarantee Section */
.guarantee {
    text-align: center;
    background-color: var(--light-bg);
}

.guarantee-content {
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 30px auto;
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.guarantee-icon {
    flex: 0 0 100px;
    margin-right: 30px;
}

.guarantee-icon img {
    max-width: 100%;
}

.guarantee-text {
    text-align: left;
}

.guarantee-text p {
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-bg);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 30px auto;
}

.testimonial {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-avatar {
    margin-bottom: 15px;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--gray-color);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--light-color);
    text-align: center;
}

.secure-payment {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    padding: 8px 15px;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #333;
    border: 1px solid #ddd;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 30px 0;
    text-align: center;
}

/* Media Queries */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .video-placeholder {
        height: 300px;
    }
    
    .steps, .modules, .bonus-items {
        flex-direction: column;
        align-items: center;
    }
    
    .step, .module, .bonus-item {
        width: 100%;
    }
    
    .guarantee-content {
        flex-direction: column;
    }
    
    .guarantee-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .cta-button {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    .cta-button.large {
        font-size: 1.4rem;
        padding: 20px 40px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 50px 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 130px 0 50px;
    }
}
