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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    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;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn-primary, .btn-buy {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 50px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 25px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover, .btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 255, 136, 0.5);
    background: linear-gradient(135deg, #00ff99 0%, #00dd77 100%);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 25px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 0 4px 40px rgba(0, 255, 136, 0.6);
    }
    100% {
        box-shadow: 0 4px 25px rgba(0, 255, 136, 0.3);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(0, 255, 136, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.hero-subtitle {
    color: #00ff88;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.hero-title .highlight {
    color: #00ff88;
    display: block;
}

.hero-headline {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 25px;
    font-weight: 400;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.benefit-item {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
    color: #00ff88;
    font-weight: 500;
}

.btn-cta-hero {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000;
    font-size: 1.3rem;
    font-weight: 800;
    padding: 20px 60px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 30px rgba(0, 255, 136, 0.4);
    margin-bottom: 15px;
}

.btn-cta-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(0, 255, 136, 0.6);
}

.hero-price-hint {
    color: #888;
    font-size: 1rem;
    margin-bottom: 30px;
}

.hero-price-hint strong {
    color: #00ff88;
}

.hero-price-hint .price-from {
    text-decoration: line-through;
    color: #ff6b6b;
    font-weight: 400;
    margin-right: 5px;
}

/* Countdown Timer */
.countdown-timer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 68, 68, 0.15) 100%);
    border: 2px solid #ff6b6b;
    padding: 12px 25px;
    border-radius: 10px;
    margin-top: 20px;
    animation: pulse-red 1.5s ease-in-out infinite;
}

@keyframes pulse-red {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 107, 107, 0.6);
    }
}

.countdown-timer .countdown-icon {
    font-size: 1.3rem;
}

.countdown-timer p {
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}

.countdown-timer #countdown,
.countdown-timer .countdown-display {
    color: #ff6b6b;
    font-weight: 800;
    font-size: 1.2rem;
}

.countdown-pricing {
    margin-bottom: 30px;
}

/* Sales Counter */
.sales-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.1) 100%);
    border: 2px solid #ffd700;
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.sales-counter .sales-icon {
    font-size: 1.3rem;
}

.sales-counter p {
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
}

.sales-counter p strong {
    color: #ffd700;
    font-weight: 800;
}

/* Hero Highlight Box */
.hero-highlight-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 204, 106, 0.1) 100%);
    border: 2px solid #00ff88;
    padding: 15px 25px;
    border-radius: 12px;
    margin: 0 auto 25px;
    max-width: 600px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }
    to {
        box-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
    }
}

.hero-highlight-box .highlight-icon {
    font-size: 1.5rem;
}

.hero-highlight-box p {
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
}

.hero-highlight-box p strong {
    color: #00ff88;
}

.hero-image {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto 40px;
}

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

/* Social Proof */
.social-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.proof-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
}

.proof-icon {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.proof-text {
    font-size: 0.95rem;
    color: #cccccc;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.5;
}

.proof-author {
    font-size: 0.85rem;
    color: #00ff88;
    font-weight: 600;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

/* Description Section */
.description {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

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

.description-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 40px;
}

.quick-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.quick-benefit-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.quick-benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.benefit-text strong {
    display: block;
    font-size: 1.1rem;
    color: #00ff88;
    margin-bottom: 8px;
}

.benefit-text p {
    font-size: 0.95rem;
    color: #cccccc;
    margin: 0;
}

.description .btn-primary {
    margin-top: 30px;
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
    background: #0a0a0a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #00ff88 0%, #00cc6a 100%);
    margin: 0 auto;
}

.section-divider.long {
    width: 100%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #00ff88 50%, transparent 100%);
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
    text-align: center;
}

.modules-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.module-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    padding: 18px 20px;
    text-align: left;
    transition: all 0.3s ease;
}

.module-item:hover {
    transform: translateX(5px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.15);
}

.module-item.highlight-module {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, #16213e 100%);
}

.module-item.highlight-module .module-number {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
}

.module-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000;
    font-size: 0.9rem;
    font-weight: 800;
    border-radius: 10px;
    flex-shrink: 0;
}

.module-content h4 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.module-content p {
    color: #888;
    font-size: 0.8rem;
    margin: 0;
}

.content-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.content-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 30px;
}

.content-list {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.content-list li {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.05rem;
    color: #cccccc;
}

.check-icon {
    color: #00ff88;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.content-highlight {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 204, 106, 0.1) 100%);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
}

.content-highlight p {
    color: #ffffff;
    font-size: 1.1rem;
}

.content-highlight strong {
    color: #00ff88;
}

.urgency-banner {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    padding: 18px 35px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: inline-block;
    animation: urgencyPulse 2s infinite;
}

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

.urgency-banner p {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.btn-cta-large {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000;
    font-size: 1.25rem;
    font-weight: 800;
    padding: 22px 50px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 30px rgba(0, 255, 136, 0.4);
    margin-bottom: 15px;
}

.btn-cta-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(0, 255, 136, 0.6);
}

.cta-subtext {
    color: #888;
    font-size: 0.95rem;
    margin-top: 10px;
}

/* Author Section */
.author-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

.author-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.author-image {
    flex-shrink: 0;
}

.author-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #00ff88;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.author-content {
    text-align: left;
}

.author-name {
    font-size: 1.8rem;
    color: #00ff88;
    margin-bottom: 20px;
}

.author-bio {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.8;
}

.author-bio strong {
    color: #00ff88;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
    text-align: center;
}

.guarantee-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.guarantee-badge {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

.guarantee-days {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
}

.guarantee-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #000;
}

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

.guarantee-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.guarantee-description {
    font-size: 1.1rem;
    color: #cccccc;
}

.devices-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.devices-icon {
    font-size: 2rem;
}

.devices-info p {
    color: #cccccc;
    font-size: 1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    text-align: center;
}

.pricing-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 25px;
    padding: 50px;
    max-width: 450px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.pricing-label {
    font-size: 1rem;
    color: #888888;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.pricing-label .price-old {
    text-decoration: line-through;
    color: #ff6b6b;
    font-weight: 600;
}

.pricing-installment {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.installment-text {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 5px;
}

.pricing-value {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.pricing-full {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 25px;
}

.pricing-full strong {
    color: #00ff88;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00ff88;
    margin-top: 15px;
}

.price {
    font-size: 5rem;
    font-weight: 900;
    color: #00ff88;
    line-height: 1;
}

.cents {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00ff88;
    margin-top: 15px;
}

.btn-buy {
    width: 100%;
    padding: 20px;
    font-size: 1.2rem;
}

.payment-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    color: #888888;
}

.lock-icon {
    font-size: 1.2rem;
}

.payment-security p {
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

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

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

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

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

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: #cccccc;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.faq-answer ul {
    list-style: none;
    margin-top: 15px;
}

.faq-answer ul li {
    color: #cccccc;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.faq-answer ul li::before {
    content: '•';
    color: #00ff88;
    position: absolute;
    left: 0;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #000000;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Engagement Section */
.engagement-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    text-align: center;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 50px;
}

.engagement-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.engagement-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.engagement-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 50px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.engagement-card h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.engagement-card p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.final-cta > .container > p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.guarantee-reminder {
    color: #00ff88;
    font-size: 1rem;
    margin-top: 20px;
}

.copyright {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.hotmart-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hotmart-badge p {
    color: #666666;
    font-size: 0.85rem;
}

.hotmart-logo {
    color: #ff5722;
    font-weight: 700;
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-proof {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .quick-benefits {
        grid-template-columns: 1fr;
    }

    .engagement-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-headline {
        font-size: 1.1rem;
    }

    .hero-benefits {
        gap: 10px;
    }

    .benefit-item {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .btn-cta-hero {
        padding: 18px 40px;
        font-size: 1.1rem;
    }

    .btn-cta-large {
        padding: 18px 35px;
        font-size: 1.1rem;
    }

    .hero-badge {
        font-size: 0.9rem;
        padding: 10px 25px;
    }

    .btn-primary, .btn-buy {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .author-wrapper {
        flex-direction: column;
        text-align: center;
    }

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

    .author-image img {
        width: 200px;
        height: 200px;
    }

    .guarantee-wrapper {
        flex-direction: column;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 250px;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .module-item {
        padding: 15px;
    }

    .module-content h4 {
        font-size: 0.9rem;
    }

    .pricing-card {
        padding: 35px 25px;
    }

    .price {
        font-size: 4rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .trust-badges {
        gap: 15px;
    }

    .trust-item {
        font-size: 0.8rem;
    }

    .engagement-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .final-cta h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-headline {
        font-size: 1rem;
    }

    .btn-cta-hero {
        padding: 16px 30px;
        font-size: 1rem;
    }

    .btn-cta-large {
        padding: 16px 25px;
        font-size: 0.95rem;
    }

    .description-text {
        font-size: 1rem;
    }

    .content-list li {
        font-size: 0.95rem;
    }

    .description-title {
        font-size: 1.4rem;
    }
}

/* Exit Intent Modal */
.exit-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.exit-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.exit-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.exit-modal-content {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #00ff88;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
    animation: slideUp 0.4s ease;
    z-index: 10000;
}

.exit-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10001;
}

.exit-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.exit-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.exit-modal-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 15px;
    animation: bounce 1s infinite;
}

.exit-modal-header h2 {
    font-size: 1.8rem;
    color: #00ff88;
    margin-bottom: 10px;
    line-height: 1.3;
}

.exit-modal-body {
    text-align: center;
}

.exit-modal-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.exit-modal-discount {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    padding: 20px 40px;
    border-radius: 15px;
    margin: 20px 0;
    display: inline-block;
}

.discount-value {
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.exit-modal-text {
    font-size: 1.1rem;
    margin: 20px 0;
    color: #cccccc;
}

.exit-modal-price {
    margin: 25px 0;
}

.price-before {
    display: block;
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.price-after {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #00ff88;
}

.exit-modal-coupon {
    background: rgba(0, 255, 136, 0.1);
    border: 2px dashed #00ff88;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
}

.coupon-label {
    display: block;
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 10px;
}

.coupon-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

#coupon-text {
    font-size: 2rem;
    font-weight: 900;
    color: #00ff88;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
}

.coupon-copy {
    background: #00ff88;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coupon-copy:hover {
    background: #00cc6a;
    transform: scale(1.05);
}

.exit-modal-warning {
    font-size: 1rem;
    color: #ff6b6b;
    margin: 20px 0;
    animation: pulse 2s infinite;
}

.btn-exit-modal {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 20px 60px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.btn-exit-modal:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.6);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Exit Modal */
@media (max-width: 768px) {
    .exit-modal-content {
        padding: 25px 15px;
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
        border: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .exit-modal-header h2 {
        font-size: 1.3rem;
    }

    .exit-modal-icon {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .exit-modal-header {
        margin-bottom: 20px;
    }

    .exit-modal-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .exit-modal-discount {
        padding: 15px 30px;
        margin: 15px 0;
    }

    .discount-value {
        font-size: 2.2rem;
    }

    .exit-modal-text {
        font-size: 1rem;
        margin: 15px 0;
    }

    .exit-modal-price {
        margin: 20px 0;
    }

    .price-before {
        font-size: 1rem;
    }

    .price-after {
        font-size: 1.6rem;
    }

    .exit-modal-coupon {
        padding: 15px;
        margin: 20px 0;
    }

    #coupon-text {
        font-size: 1.4rem;
    }

    .coupon-copy {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .exit-modal-warning {
        font-size: 0.9rem;
        margin: 15px 0;
    }

    .btn-exit-modal {
        font-size: 1.1rem;
        padding: 16px 35px;
        width: 100%;
        margin-top: 15px;
    }

    .exit-modal-close {
        top: 10px;
        right: 10px;
    }
}
