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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #000;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    padding: 2rem 0;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-left: 5%;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.warning {
    color: #ff4444;
    font-size: 0.8em;
    display: block;
    margin-bottom: 0.5rem;
}

.highlight {
    color: #ff6b35;
    position: relative;
}

.pain-point {
    background: rgba(255, 68, 68, 0.1);
    border-left: 4px solid #ff4444;
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    animation: fadeInLeft 1.2s ease-out;
}

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

.stat {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out forwards;
}

.stat:nth-child(2) { animation-delay: 0.2s; }
.stat:nth-child(3) { animation-delay: 0.4s; }

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.cta-hero {
    background: linear-gradient(135deg, #ff6b35, #ff4444);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.hero-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

/* Problem Section */
.problem-section {
    background: #fff;
    padding: 5rem 0;
}

.problem-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #333;
}

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

.problem-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: #ff6b35;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.problem-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.problem-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.reality-check {
    background: linear-gradient(135deg, #ff4444, #cc3333);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 4rem;
}

.reality-check h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.reality-check p {
    font-size: 1.3rem;
    line-height: 1.6;
}

/* Solution Preview */
.solution-preview {
    background: #000;
    color: white;
    padding: 5rem 0;
}

.solution-preview h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.before, .after {
    padding: 3rem;
    border-radius: 15px;
}

.before {
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid #3b82f6;
}

.after {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
}

.before h3, .after h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.before h3 {
    color: #3b82f6;
}

.after h3 {
    color: #22c55e;
}

.before ul, .after ul {
    list-style: none;
    font-size: 1.1rem;
    line-height: 2;
}

.before li::before {
    content: "✅ ";
    margin-right: 0.5rem;
}

.after li::before {
    content: "✅ ";
    margin-right: 0.5rem;
}

/* Course Content */
.course-content {
    background: #f8f9fa;
    padding: 5rem 0;
}

.course-content h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: #333;
}

.modules {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.module {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.module-number {
    background: linear-gradient(135deg, #ff6b35, #ff4444);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.module h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.module p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Section CTA Buttons */
.cta-section {
    background: linear-gradient(135deg, #ff6b35, #ff4444);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    margin-top: 2rem;
    display: inline-block;
}

.cta-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.course-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.course-cta h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.course-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.testimonials-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid #ff6b35;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-cta h3 {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.testimonials-cta p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

/* Testimonials */
.testimonials {
    background: #000;
    color: white;
    padding: 5rem 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.testimonial p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial cite {
    color: #ff6b35;
    font-weight: 600;
    font-style: normal;
}

/* Urgency Section */
.urgency {
    background: linear-gradient(135deg, #1a1a1a, #000);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.urgency h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: white;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.urgency-content p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #f0f0f0;
}

.countdown-container {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ff6b35;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-container p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ff6b35;
    font-weight: 600;
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.normal-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1.2rem;
}

.special-price {
    color: #22c55e;
    font-size: 2rem;
    font-weight: 800;
}

.countdown-bar-container {
    background: rgba(255, 255, 255, 0.2);
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin: 1.5rem 0;
    position: relative;
}

.countdown-bar {
    background: linear-gradient(90deg, #ff4444, #ff6b35);
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
}

.time-remaining {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

#countdown {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #ff4444);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
}

/* Offer Section */
.offer {
    background: #000;
    color: white;
    padding: 5rem 0;
}

.offer h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
}

.offer-box {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid #ff6b35;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.offer-header {
    text-align: center;
    margin-bottom: 3rem;
}

.offer-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ff6b35;
}

.price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #999;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: #22c55e;
}

.savings {
    background: #22c55e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.offer-includes {
    margin: 3rem 0;
}

.offer-includes h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.offer-includes ul {
    list-style: none;
    font-size: 1.1rem;
    line-height: 2;
}

.offer-includes li {
    margin-bottom: 0.5rem;
}

.guarantee {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.guarantee h4 {
    color: #22c55e;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.cta-offer {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #ff4444);
    color: white;
    border: none;
    padding: 2rem;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 15px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin: 2rem 0;
    animation: pulse 2s infinite;
}

.cta-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.payment-options {
    text-align: center;
    font-size: 1rem;
    opacity: 0.8;
}

.final-push {
    text-align: center;
    margin-top: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-push p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Bonus Section */
.bonus-section {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid #ff6b35;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.bonus-section h4 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.bonus-section ul {
    list-style: none;
    font-size: 1.1rem;
    line-height: 2;
}

.bonus-section li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #999;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
        min-height: auto;
    }
    
    .hero-content {
        margin-left: 0;
        max-width: 100%;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .pain-point {
        font-size: 1rem;
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .cta-hero {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-visual {
        padding: 1rem;
    }
    
    .problem-section {
        padding: 3rem 0;
    }
    
    .problem-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .before-after {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .before, .after {
        padding: 2rem 1.5rem;
    }
    
    .before h3, .after h3 {
        font-size: 1.4rem;
    }
    
    .before ul, .after ul {
        font-size: 1rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .problem-card {
        padding: 2rem 1.5rem;
    }
    
    .problem-card h3 {
        font-size: 1.3rem;
    }
    
    .problem-card p {
        font-size: 1rem;
    }
    
    .reality-check {
        padding: 2rem 1.5rem;
    }
    
    .reality-check h3 {
        font-size: 1.5rem;
    }
    
    .reality-check p {
        font-size: 1.1rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial {
        padding: 2rem 1.5rem;
    }
    
    .testimonial p {
        font-size: 1rem;
    }
    
    .solution-preview h2,
    .course-content h2,
    .testimonials h2,
    .urgency h2,
    .offer h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .module {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .module h3 {
        font-size: 1.3rem;
    }
    
    .module p {
        font-size: 1rem;
    }
    
    .course-cta {
        padding: 2rem 1.5rem;
    }
    
    .course-cta h3 {
        font-size: 1.5rem;
    }
    
    .course-cta p {
        font-size: 1rem;
    }
    
    .testimonials-cta {
        padding: 2rem 1.5rem;
    }
    
    .testimonials-cta h3 {
        font-size: 1.5rem;
    }
    
    .testimonials-cta p {
        font-size: 1rem;
    }
    
    .urgency-content p {
        font-size: 1.1rem;
    }
    
    .countdown-container {
        padding: 1.5rem;
        margin: 2rem 1rem;
    }
    
    .countdown-container p {
        font-size: 1rem;
    }
    
    .price-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .normal-price {
        font-size: 1rem;
    }
    
    .special-price {
        font-size: 1.5rem;
    }
    
    #countdown {
        font-size: 1.5rem;
        padding: 0.5rem 1rem;
    }
    
    .offer {
        padding: 3rem 0;
    }
    
    .offer-box {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }
    
    .offer-header h3 {
        font-size: 1.4rem;
    }
    
    .price {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .old-price {
        font-size: 1.2rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .offer-includes, .bonus-section, .guarantee {
        padding: 1.5rem;
    }
    
    .offer-includes h4, .bonus-section h4, .guarantee h4 {
        font-size: 1.2rem;
    }
    
    .offer-includes ul, .bonus-section ul {
        font-size: 1rem;
    }
    
    .guarantee p {
        font-size: 1rem;
    }
    
    .cta-offer {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
    
    .cta-section {
        padding: 1rem 2rem;
        font-size: 1rem;
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 2rem auto;
        text-align: center;
    }
    
    .final-push p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    /* Ensure all sections have proper mobile padding */
    .problem-section,
    .solution-preview,
    .course-content,
    .testimonials,
    .urgency,
    .offer {
        padding: 3rem 0;
    }
    
    /* Center all text content on mobile */
    .problem-section .container,
    .solution-preview .container,
    .course-content .container,
    .testimonials .container,
    .urgency .container,
    .offer .container {
        text-align: center;
    }
    
    .before ul, .after ul {
        text-align: left;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .offer-includes ul, .bonus-section ul {
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .problem-section h2,
    .solution-preview h2,
    .course-content h2,
    .testimonials h2,
    .urgency h2,
    .offer h2 {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .offer-box {
        margin: 0 0.5rem;
        padding: 1.5rem 1rem;
    }
    
    .countdown-container {
        margin: 2rem 0.5rem;
    }
}