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

:root {
    --black: #000000;
    --gold: #FFD700;
    --white: #FFFFFF;
    --gold-dark: #B8860B;
    --gray-light: #f8f9fa;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Fixed Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--black);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px var(--shadow);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
}

.btn-buy-fixed {
    background: var(--gold);
    color: var(--black);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-buy-fixed:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-visual {
    margin: 3rem 0;
}

.ebook-mockup {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(255, 215, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--black);
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3rem;
}

.btn-primary-large:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-primary-large i {
    font-size: 1.5rem;
}

/* Countdown Timer */
.countdown-container {
    margin-top: 3rem;
}

.countdown-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-weight: 600;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.countdown-item {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--gold);
    border-radius: 10px;
    padding: 15px 20px;
    text-align: center;
    min-width: 80px;
}

.countdown-item span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.countdown-item label {
    font-size: 0.8rem;
    color: var(--white);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    display: block;
}

/* Pain Section */
.pain-section {
    padding: 100px 0;
    background: var(--gray-light);
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
    color: var(--black);
}

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

.pain-item {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.pain-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pain-icon {
    width: 80px;
    height: 80px;
    background: var(--black);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
}

.pain-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

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

.impact-quote {
    text-align: center;
    margin-top: 4rem;
}

.impact-quote blockquote {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--black);
    font-style: italic;
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    border-left: 5px solid var(--gold);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: var(--white);
}

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

.benefit-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--gray-light);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-10px);
    background: var(--black);
    color: var(--white);
    border-color: var(--gold);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Bonuses Section */
.bonuses-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    color: var(--white);
}

.bonuses-section .section-title {
    color: var(--white);
}

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

.bonus-item {
    background: var(--white);
    color: var(--black);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--gold);
    transition: all 0.3s ease;
}

.bonus-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold);
}

.bonus-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.bonus-header {
    margin-bottom: 2rem;
}

.bonus-header i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.bonus-header h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin: 0;
}

.bonus-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #666;
}

.bonus-value {
    background: var(--gold);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
}

.total-value {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    border: 2px solid var(--gold);
}

.value-text {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
}

.free-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--gray-light);
}

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

.testimonial-item {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border-left: 5px solid var(--gold);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    color: #333;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--black);
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: var(--gold);
    color: var(--black);
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.price-box {
    background: var(--black);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 400px;
    border: 3px solid var(--gold);
}

.price-original {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #999;
    margin-bottom: 1rem;
}

.price-current {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1rem;
}

.price-guarantee {
    color: var(--gold);
    font-weight: 600;
}

.btn-final-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--black);
    color: var(--gold);
    padding: 25px 50px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 3rem 0;
    border: 3px solid var(--black);
}

.btn-final-cta:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.btn-final-cta i {
    font-size: 1.6rem;
}

.final-countdown {
    margin: 3rem 0;
}

.countdown-urgent {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown.final .countdown-item {
    background: var(--black);
    border: 2px solid var(--black);
}

.countdown.final .countdown-item span {
    color: var(--gold);
}

.countdown.final .countdown-item label {
    color: var(--white);
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--black);
    color: var(--gold);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 2rem;
}

.guarantee-badge i {
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gray-light);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.1);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gray-light);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-question h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
}

.faq-question h3 i {
    color: var(--gold);
    font-size: 1.1rem;
}

.faq-toggle {
    color: var(--gold);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 2rem;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item {
        padding: 10px 15px;
        min-width: 60px;
    }
    
    .countdown-item span {
        font-size: 1.5rem;
    }
    
    .pain-grid,
    .benefits-grid,
    .bonuses-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .btn-primary-large {
        padding: 18px 35px;
        font-size: 1.1rem;
    }
    
    .btn-final-cta {
        padding: 20px 40px;
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .countdown-item {
        padding: 8px 12px;
        min-width: 50px;
    }
    
    .countdown-item span {
        font-size: 1.2rem;
    }
    
    .pain-item,
    .benefit-item,
    .bonus-item,
    .testimonial-item {
        padding: 2rem 1.5rem;
    }
    
    .btn-buy-fixed {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}
