/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.hero-right {
    position: relative;
    height: 100%;
}

.hero-left {
    padding-top: 40px;
}

.fake-badge {
    background: #e74c3c;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: #fff3cd;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.5rem;
    color: #ffeb3b;
    margin-bottom: 30px;
    font-weight: 600;
}

.big-text {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.benefits ul {
    list-style: none;
    margin-bottom: 40px;
}

.benefits li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.cta-section {
    margin-top: 40px;
}

/* Countdown Timer */
.countdown-container {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
    border: 3px dashed #fff;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
    animation: urgentPulse 2s infinite;
}

@keyframes urgentPulse {
    0%, 100% { 
        box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 15px 40px rgba(231, 76, 60, 0.5);
        transform: scale(1.02);
    }
}

.countdown-title {
    color: #fff;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.countdown-unit {
    background: rgba(255,255,255,0.2);
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 80px;
    backdrop-filter: blur(10px);
}

.countdown-number {
    display: block;
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: #fff;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.countdown-label {
    display: block;
    font-size: 0.8rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 5px;
}

.countdown-separator {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.countdown-warning {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: shake 0.5s infinite alternate;
}

@keyframes shake {
    0% { transform: translateX(-2px); }
    100% { transform: translateX(2px); }
}

.price-container {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.new-price {
    font-size: 3rem;
    font-weight: 700;
    color: #ffeb3b;
}

.discount-badge {
    background: #e74c3c;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
    animation: shake 1s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

.cta-button {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(40, 167, 69, 0.4);
}

.guarantee {
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.9;
}

.fine-print {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 10px;
}

/* Book Cover */
.book-cover-container {
    position: absolute;
    top: 20px;
    right: 0;
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.3s ease, top 0.1s ease;
    z-index: 10;
    will-change: top;
}

.book-cover-container:hover {
    transform: perspective(1000px) rotateY(-10deg) scale(1.05);
}

.book-cover {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.fake-stickers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.sticker {
    position: absolute;
    background: #ff6b35;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(-15deg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.sticker-1 {
    top: -10px;
    right: -20px;
    background: #17a2b8;
}

.sticker-2 {
    bottom: 20px;
    left: -30px;
    background: #ffc107;
    color: #333;
    transform: rotate(10deg);
}

.sticker-3 {
    top: 50%;
    right: -40px;
    background: #e74c3c;
    transform: rotate(-20deg);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #ff6b35;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial.featured {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #333;
}

.attribution {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

/* About Author Section */
.about-author {
    padding: 80px 0;
    background: white;
}

.author-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.author-photo {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: grayscale(20%) contrast(1.1);
}

.author-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.author-text h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.author-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.author-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.author-text li {
    margin-bottom: 10px;
    font-size: 1rem;
}

/* What You Get Section */
.what-you-get {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.what-you-get .section-title {
    color: white;
}

.package-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.package-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.package-item:hover {
    transform: translateY(-10px);
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.package-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.package-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.cta-content > p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.outcomes {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.outcome {
    background: rgba(255,255,255,0.2);
    padding: 20px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.urgency {
    margin: 40px 0;
    padding: 30px;
    background: rgba(231, 76, 60, 0.9);
    border-radius: 15px;
    border: 2px dashed white;
}

.urgency p {
    margin-bottom: 10px;
}

.cta-button-large {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 25px 60px;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.3);
    margin-bottom: 40px;
}

.cta-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(40, 167, 69, 0.4);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #333;
    color: #ccc;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
    }
    
    .hero-left {
        padding-top: 20px;
    }
    
    .book-cover-container {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        align-self: center;
        margin: 40px auto;
        max-width: 300px;
        transform: perspective(1000px) rotateY(0deg) !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .author-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .author-photo {
        margin: 0 auto;
    }
    
    .outcomes {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-unit {
        min-width: 70px;
        padding: 12px 15px;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .countdown-separator {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .package-content {
        grid-template-columns: 1fr;
    }
    
    .countdown-container {
        padding: 20px;
    }
    
    .countdown-title {
        font-size: 1.4rem;
    }
    
    .countdown-timer {
        gap: 8px;
    }
    
    .countdown-unit {
        min-width: 60px;
        padding: 10px 12px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-separator {
        font-size: 2rem;
    }
    
    .countdown-warning {
        font-size: 1rem;
    }
    
    .author-photo {
        width: 250px;
        height: 250px;
    }
}