/* 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: #fff;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #333;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    z-index: 1000;
    transition: background 0.3s ease;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.nav-brand i {
    font-size: 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-text .highlight {
    color: #ffd700;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #ffffff;
    opacity: 0.98;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
    font-weight: 400;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-proof span {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: #ffd700;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pdf-mockup {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.pdf-mockup:hover {
    transform: rotate(0deg);
}

.pdf-cover {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.pdf-cover h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.pdf-cover p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.step-preview {
    text-align: left;
    font-size: 0.9rem;
}

.step {
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.step:last-child {
    border-bottom: none;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: #f8f9fa;
}

.problem h2 {
    margin-bottom: 3rem;
    color: #dc3545;
}

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

.problem-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.problem-item i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.problem-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.problem-item p {
    color: #444;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: white;
}

.solution h2 {
    color: #333;
}

.solution-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

/* Content Preview */
.content-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.step-benefits span {
    font-size: 0.9rem;
    color: #1e7e34;
    font-weight: 500;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

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

.benefit-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.benefit-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Offer Section */
.offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

.offer h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.offer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
}

.offer-item i {
    font-size: 1.5rem;
    color: #ffd700;
}

.pricing {
    margin: 3rem 0;
}

.price-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.6;
}

.old-price span {
    display: block;
    margin-bottom: 0.5rem;
}

.old-price span:last-child {
    margin-bottom: 0;
}

.new-price {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    font-size: 3rem;
    font-weight: 700;
}

.new-price:not(.discount-price) {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.currency {
    font-size: 2rem;
}

.period {
    font-size: 1rem;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

/* Discount Pricing Styles */
.discount-price {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    border: 2px solid #ffd700 !important;
    position: relative;
    display: block !important;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.discount-price::before {
    content: '🔥 FLASH SALE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.original-price {
    font-size: 1.1rem;
    text-decoration: line-through;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.discount-price .currency,
.discount-price .amount {
    font-size: 3rem;
    font-weight: 700;
    display: inline;
}

.discount-price .currency + .amount {
    margin-left: 0.25rem;
}

.savings {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.secure-purchase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.secure-purchase i {
    color: #28a745;
}

.payment-methods {
    margin-top: 2rem;
    opacity: 0.8;
}

.gumroad-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    border-radius: 25px;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.gumroad-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

.gumroad-badge i {
    font-size: 1.2rem;
    color: white;
}

.gumroad-text {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

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

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial .stars {
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.7;
}

.author strong {
    color: #667eea;
}

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

/* FAQ */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.faq-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand i {
    font-size: 2rem;
    color: #667eea;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #e6e6e6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-disclaimer {
    background: #2a2a2a;
    padding: 1.5rem;
    margin: 2rem -3rem 0 -3rem;
    border-top: 1px solid #555;
}

.footer-disclaimer p {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer strong {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
    position: relative;
}

/* Secret Hover Reveal */
.secret-reveal {
    position: absolute;
    bottom: 10px;
    right: 20px;
    z-index: 1000;
}

.secret-trigger {
    width: 30px;
    height: 30px;
    background: rgba(102, 126, 234, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    animation: gentle-pulse 3s infinite;
}

.secret-trigger:hover {
    background: #667eea;
    transform: scale(1.1);
    animation: none;
}

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

.secret-message {
    position: absolute;
    bottom: 40px;
    right: -150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    width: 400px;
    text-align: left;
    border: 2px solid rgba(255, 255, 255, 0.3);
    line-height: 1.5;
}

.secret-message::before {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #667eea;
}

.secret-trigger:hover + .secret-message,
.secret-message:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.secret-message strong {
    color: #ffd700;
}

/* Mobile adjustments for secret reveal */
@media (max-width: 768px) {
    .secret-reveal {
        position: static;
        margin-top: 1rem;
        text-align: center;
    }
    
    .secret-message {
        position: static;
        opacity: 0;
        visibility: hidden;
        margin-top: 0.5rem;
        width: 100%;
        font-size: 0.9rem;
        right: 0;
    }
    
    .secret-message::before {
        display: none;
    }
    
    .secret-trigger:hover + .secret-message,
    .secret-message:hover {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

@media (max-width: 480px) {
    .secret-message {
        font-size: 0.85rem;
        padding: 1rem;
        width: 100%;
    }
}

/* Urgent Offer Banner */
.urgent-offer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 0;
    margin-top: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-banner {
    text-align: center;
}

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

.offer-banner h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.offer-banner p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.strike-price {
    text-decoration: line-through;
    opacity: 0.7;
    margin: 0 0.5rem;
}

.countdown-timer {
    margin: 1rem 0 0.5rem 0;
}

.countdown-label {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.time-unit {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    min-width: 60px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.time-unit span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.time-unit label {
    display: block;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    opacity: 0.8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-urgent {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    border: none !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    padding: 1rem 2rem !important;
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3) !important;
    position: relative;
    overflow: hidden;
}

.btn-urgent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-urgent:hover::before {
    left: 100%;
}

.btn-urgent:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 28px rgba(40, 167, 69, 0.4) !important;
}

/* Scarcity and urgency indicators */
.scarcity-indicator {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    text-align: center;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.easter-egg-hint {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.easter-egg-hint i {
    margin-right: 0.5rem;
    color: #ffd700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.limited-spots {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    color: #667eea;
    padding: 1rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
    font-size: 0.95rem;
}

.limited-spots i {
    color: #667eea;
    margin-right: 0.5rem;
}

.social-proof-banner {
    background: rgba(102, 126, 234, 0.08);
    border-left: 3px solid #667eea;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.social-proof-banner i {
    color: #667eea;
    margin-right: 0.5rem;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    }
    
    .social-proof span {
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .problem-grid,
    .solution-features,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 1rem;
    }
    
    .original-price {
        font-size: 1rem;
    }
    
    .savings {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .discount-price::before {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .discount-price .currency,
    .discount-price .amount {
        font-size: 2.5rem;
    }
    
    .easter-egg-hint {
        margin: 1rem 0;
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .offer-details {
        grid-template-columns: 1fr;
    }

    .urgent-offer {
        padding: 1rem 0;
    }
    
    .offer-banner h2 {
        font-size: 1.5rem;
    }
    
    .offer-banner p {
        font-size: 1rem;
    }
    
    .countdown-display {
        gap: 0.5rem;
    }
    
    .time-unit {
        padding: 0.5rem 0.25rem;
        min-width: 50px;
    }
    
    .time-unit span {
        font-size: 1.25rem;
    }
    
    .time-unit label {
        font-size: 0.7rem;
    }
    
    .btn-urgent {
        font-size: 0.95rem !important;
        padding: 0.9rem 1.5rem !important;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .scarcity-indicator,
    .limited-spots {
        font-size: 0.9rem;
        margin: 1rem 0;
    }
    
    .social-proof-banner {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    }
    
    .social-proof span {
        font-size: 0.85rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .pdf-mockup {
        padding: 1rem;
    }
    
    .step-card,
    .problem-item,
    .testimonial {
        padding: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .discount-price .currency,
    .discount-price .amount {
        font-size: 2rem;
    }
    
    .original-price {
        font-size: 0.9rem;
    }
    
    .savings {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .discount-price::before {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
    }
}

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

.hero-text,
.hero-visual {
    animation: fadeInUp 0.8s ease-out;
}

.hero-visual {
    animation-delay: 0.2s;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a6fd8;
} 