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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

.page-wrapper {
    min-height: 100vh;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
    padding: 60px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    color: #475569;
}

.title-highlight {
    display: block;
    color: #000000;
    font-weight: 900;
    font-size: 1.1em;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #475569;
    opacity: 0.9;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #64748b;
    line-height: 1.6;
}

/* Price Banner Image */
.price-banner-section {
    margin: 50px 0 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-banner-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.price-banner-img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.2));
}

/* Price Section */
.price-section {
    margin-bottom: 30px;
}

.price-old {
    margin-bottom: 10px;
}

.old-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: #64748b;
    display: block;
    margin-bottom: 5px;
}

.price-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #16a34a;
    text-transform: uppercase;
}

.price-current {
    font-size: 3rem;
    font-weight: 900;
    color: #16a34a;
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 10px 0;
}

.btn-primary {
    background: linear-gradient(45deg, #16a34a, #22c55e);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.6);
    background: linear-gradient(45deg, #15803d, #16a34a);
}

.btn-secondary {
    background: linear-gradient(45deg, #16a34a, #22c55e);
    font-size: 1.2rem;
    padding: 20px 40px;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.6);
    background: linear-gradient(45deg, #15803d, #16a34a);
}

.payment-info {
    margin-top: 25px;
}

.payment-info p {
    font-size: 0.9rem;
    margin: 5px 0;
    color: #64748b;
}

/* Video Section */
.video-section {
    background: #090E1B;
    padding: 80px 0;
    margin: 0;
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
                rgba(30, 58, 138, 0.1) 0%, 
                rgba(30, 64, 175, 0.05) 50%, 
                rgba(29, 78, 216, 0.1) 100%);
    pointer-events: none;
}

.video-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    text-transform: lowercase;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.video-wrapper {
    margin: 40px auto;
    max-width: 450px;
    width: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Wistia Video Styles */
.wistia_responsive_padding {
    padding: 56.25% 0 0 0;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background-color: #000;
}

.wistia_responsive_wrapper {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.wistia_embed {
    height: 100%;
    position: relative;
    width: 100%;
}

.wistia_swatch {
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    transition: opacity 200ms;
    width: 100%;
}

.wistia-swatch-img {
    filter: blur(5px);
    height: 100%;
    object-fit: contain;
    width: 100%;
}

/* Sections */
.features-section,
.cta-section,
.benefits-dark-section,
.testimonials-section,
.guarantee-section,
.bonus-section,
.final-cta-section,
.faq-section {
    padding: 80px 0;
}

.features-section {
    background-color: #f8fafc;
}

.testimonials-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.guarantee-section {
    background-color: white;
}

.bonus-section {
    background: linear-gradient(135deg, #f0f8ff, #f0fdf4);
}

.final-cta-section {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #475569;
    font-weight: 500;
}

/* Features Section */
.features-main {
    max-width: 800px;
    margin: 0 auto;
}

.feature-hero {
    text-align: center;
    margin-bottom: 50px;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-hero-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(34, 197, 94, 0.3));
}

.feature-hero-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.6;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border-color: #22c55e;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    flex-shrink: 0;
}

.feature-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 50px 0;
}

.cta-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border: 2px solid #22c55e;
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(34, 197, 94, 0.3));
}

.cta-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
    margin-bottom: 25px;
}

.btn-cta {
    background: linear-gradient(45deg, #16a34a, #22c55e);
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
    border: 3px solid transparent;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.6);
    background: linear-gradient(45deg, #15803d, #16a34a);
    border-color: #22c55e;
}

/* Bonus Section - Original Style */
.bonus-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    z-index: 10;
}

.bonus-image {
    margin-bottom: 20px;
    text-align: center;
}

.bonus-img {
    width: 120px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.bonus-content {
    text-align: center;
}

.bonus-value {
    margin: 15px 0;
}

.value-crossed {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.9rem;
}

.bonus-btn {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.bonus-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
    background: linear-gradient(45deg, #16a34a, #15803d);
}

/* Final CTA Updates */
.final-cta-image {
    margin: 30px 0;
    text-align: center;
}

.cta-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.final-price-section {
    text-align: center;
    margin: 30px 0;
}

.final-price-old {
    margin-bottom: 10px;
}

.final-old-price {
    font-size: 1.2rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.final-price-current {
    font-size: 3rem;
    font-weight: 900;
    color: #22c55e;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.final-payment-info {
    margin-top: 30px;
    text-align: center;
}

.final-payment-info p {
    margin: 8px 0;
    color: #64748b;
    font-size: 0.95rem;
}

/* FAQ Updates */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #22c55e;
}

.faq-icon {
    font-size: 1.5rem;
    color: #22c55e;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-answer p {
    padding: 15px 0;
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    font-weight: 700;
    overflow: hidden;
}

.testimonial-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-info h4 {
    font-weight: 700;
    margin-bottom: 3px;
    color: #1e293b;
}

.testimonial-role {
    font-size: 0.85rem;
    color: #64748b;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-rating {
    font-size: 1.2rem;
}

/* Guarantee Section */
.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-image {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guarantee-img {
    width: 150px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.guarantee-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 20px;
}

.guarantee-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 32px;
}

/* Bonus Section */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.bonus-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.bonus-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

.bonus-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.bonus-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 15px;
}

.bonus-value {
    font-size: 1rem;
    font-weight: 700;
    color: #16a34a;
}

.bonus-total {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.bonus-total p {
    font-size: 1.1rem;
    margin: 10px 0;
}

.bonus-price {
    color: #16a34a;
    font-weight: 800;
    font-size: 1.3em;
}

/* Final CTA Section */
.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.final-cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.final-price-comparison {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.final-price-item,
.final-price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.final-price-total {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.1em;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px solid rgba(255,255,255,0.3);
}

.final-price-offer {
    margin: 40px 0;
}

.final-price-text {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.final-price-current {
    font-size: 4rem;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.final-price-economy {
    font-size: 1.1rem;
    color: #fbbf24;
    font-weight: 600;
}

.final-cta-urgency {
    margin-top: 30px;
}

.final-cta-urgency p {
    margin: 8px 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    padding: 25px;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #16a34a;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    color: #475569;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #22c55e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-highlight {
        font-size: 1em;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .price-current {
        font-size: 2.5rem;
    }
    
    .final-price-current {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
    
    .video-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-content {
        padding: 25px 20px;
    }
    
    .cta-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .cta-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .btn-cta {
        font-size: 1.1rem;
        padding: 16px 30px;
    }
    
    .bonus-img {
        width: 100px;
    }
    
    .final-price-current {
        font-size: 2.5rem;
    }
    
    .cta-img {
        max-width: 250px;
    }
    
    .feature-hero {
        padding: 30px 20px;
    }
    
    .feature-hero-text {
        font-size: 1.1rem;
    }
    
    .final-price-comparison {
        padding: 20px;
    }
    
    .final-price-item,
    .final-price-total {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .price-current {
        font-size: 2rem;
    }
    
    .final-price-current {
        font-size: 2.5rem;
    }
    
    .btn {
        font-size: 1rem;
        padding: 15px 25px;
    }
    
    .btn-secondary {
        font-size: 1.1rem;
        padding: 18px 30px;
    }
    
    .book-image {
        width: 60px;
        height: 85px;
    }
    
    .books-grid {
        grid-template-columns: 1fr;
    }
    
    .video-wrapper {
        padding: 0 10px;
    }
    
    .guarantee-title,
    .section-title {
        font-size: 1.6rem;
    }
    
    .final-cta-title {
        font-size: 1.8rem;
    }
}
