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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #2b6cb0;
}

h2 {
    font-size: 2rem;
    color: #2b6cb0;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: #2d3748;
}

p {
    margin-bottom: 1rem;
    color: #4a5568;
}

/* Purchase Notifications */
#purchase-notifications {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.notification {
    background: linear-gradient(135deg, #68d391, #48bb78);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: slideInLeft 0.5s ease-out;
    max-width: 300px;
    font-size: 0.9rem;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Countdown Banner */
.countdown-banner {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 100;
    animation: pulse 2s infinite;
}

.countdown-banner i {
    margin-right: 10px;
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, #68d391, #48bb78);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 10px auto;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.6);
}

.cta-button.pulse {
    animation: buttonPulse 2s infinite;
}

.cta-button.large {
    padding: 22px 45px;
    font-size: 1.2rem;
}

.cta-button.extra-large {
    padding: 25px 50px;
    font-size: 1.3rem;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(72, 187, 120, 0.8);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ebf8ff, #bee3f8);
    padding: 80px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

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

.hero-image-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    color: #2b6cb0;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-weight: 500;
    color: #2d3748;
}

.hero-features .feature i {
    color: #ed8936;
    font-size: 1.2rem;
}

.floating-features {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 60px;
    pointer-events: none;
}

.floating-feature {
    position: absolute;
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-weight: 500;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: float 3s ease-in-out infinite;
    pointer-events: auto;
    font-size: 0.9rem;
    white-space: nowrap;
}

.floating-feature i {
    color: #ed8936;
    font-size: 1rem;
}

.feature-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.feature-2 {
    top: 35%;
    right: 8%;
    animation-delay: 1s;
}

.feature-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

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

.hero-cta {
    margin-top: 30px;
}

.saint-card-preview {
    margin-top: 20px;
    text-align: center;
}

.saint-card-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Promise Section */
.promise {
    padding: 80px 0;
    background: #f7fafc;
    text-align: center;
}

.promise-content h2 {
    color: #2b6cb0;
    margin-bottom: 30px;
}

.promise-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #4a5568;
}

/* What You Get Section */
.what-you-get {
    padding: 80px 0;
    background: white;
}

.main-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.product-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #fef5e7;
    border-radius: 10px;
    border-left: 4px solid #ed8936;
}

.feature-item i {
    color: #ed8936;
    font-size: 1.3rem;
    min-width: 20px;
}

.feature-item span {
    font-size: 1.1rem;
    color: #2d3748;
    font-weight: 500;
}

/* Bonus Section */
.bonus-section {
    background: linear-gradient(135deg, #fef5e7, #fed7aa);
    padding: 50px;
    border-radius: 20px;
    margin-top: 40px;
}

.bonus-section h3 {
    text-align: center;
    color: #c05621;
    font-size: 2rem;
    margin-bottom: 10px;
}

.bonus-subtitle {
    text-align: center;
    font-style: italic;
    color: #9c4221;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.bonus-grid {
    display: grid;
    gap: 40px;
}

.bonus-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.bonus-image img {
    width: 100%;
    border-radius: 10px;
}

.bonus-content h4 {
    color: #c05621;
    margin-bottom: 10px;
}

.bonus-content h5 {
    color: #2d3748;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.bonus-content p {
    color: #4a5568;
    line-height: 1.7;
}

/* Before After Section */
.before-after {
    padding: 80px 0;
    background: #f7fafc;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.before, .after {
    text-align: center;
}

.before img, .after img {
    width: 100%;
    max-width: 250px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    margin-bottom: 20px;
}

.arrow {
    font-size: 2rem;
    color: #ed8936;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: white;
}

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

.step {
    text-align: center;
    padding: 30px;
    background: #fef5e7;
    border-radius: 15px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f6ad55, #ed8936);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px auto;
}

.usage-note {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    background: #ebf8ff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

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

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

.benefit {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.benefit i {
    font-size: 2rem;
    color: #ed8936;
    min-width: 40px;
}

.benefit span {
    font-size: 1.1rem;
    color: #2d3748;
    font-weight: 500;
}

/* Differentials Section */
.differentials {
    padding: 80px 0;
    background: white;
}

.differentials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.differential {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #fef5e7;
    border-radius: 10px;
}

.differential i {
    font-size: 1.5rem;
    color: #d69e2e;
    min-width: 30px;
}

.differential span {
    font-size: 1.1rem;
    color: #2d3748;
    font-weight: 500;
}

.differential-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #ebf8ff, #bee3f8);
}

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

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: #2d3748;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

.stars {
    margin-top: 20px;
}

.stars i {
    color: #f6e05e;
    margin: 0 2px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fef5e7, #ebf8ff);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    position: relative;
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
}

.price-container {
    margin: 30px 0;
}

.old-price {
    font-size: 1.2rem;
    color: #718096;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.current-price {
    font-size: 2.5rem;
    color: #2b6cb0;
    font-weight: bold;
    margin-bottom: 10px;
}

.current-price span {
    color: #e53e3e;
}

.savings {
    font-size: 1.2rem;
    color: #38a169;
    font-weight: bold;
}

.pricing-features {
    text-align: left;
    margin: 40px 0;
}

.pricing-features .feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px;
}

.pricing-features .feature i {
    color: #38a169;
    font-size: 1.2rem;
    min-width: 20px;
}

.secure-payment {
    margin-top: 30px;
    color: #4a5568;
    font-size: 0.9rem;
}

.secure-payment i {
    color: #38a169;
    margin-right: 8px;
}

/* Guarantee Section */
.guarantee {
    padding: 60px 0;
    background: #fef5e7;
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.guarantee-icon i {
    font-size: 4rem;
    color: #38a169;
}

.guarantee-text h2 {
    color: #2b6cb0;
    margin-bottom: 15px;
    text-align: left;
}

.guarantee-text p {
    font-size: 1.2rem;
    color: #4a5568;
    text-align: left;
}

/* Urgency Section */
.urgency {
    padding: 60px 0;
    background: linear-gradient(135deg, #fed7d7, #f6ad55);
    text-align: center;
}

.urgency h2 {
    color: #c53030;
    margin-bottom: 20px;
}

.urgency p {
    font-size: 1.2rem;
    color: #742a2a;
    margin-bottom: 30px;
}

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

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

.faq-item {
    background: #f7fafc;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    cursor: pointer;
    background: #f7fafc;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #edf2f7;
}

.faq-question h3 {
    color: #2d3748;
    margin: 0;
    font-size: 1.2rem;
}

.faq-question i {
    color: #ed8936;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* About Creator Section */
.about-creator {
    padding: 80px 0;
    background: #2d3748;
    color: white;
}

.creator-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: center;
}

.creator-logo img {
    max-width: 200px;
    height: auto;
}

.creator-text h2 {
    color: white;
    text-align: left;
    margin-bottom: 20px;
}

.creator-text p {
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2b6cb0, #1a365d);
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.final-cta p {
    color: #e2e8f0;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.technical-info {
    margin-top: 50px;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
}

.technical-info h3 {
    color: white;
    margin-bottom: 20px;
}

.technical-info ul {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.technical-info li {
    color: #e2e8f0;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.technical-info li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: bold;
}

/* Support Section */
.support {
    padding: 60px 0;
    background: #f7fafc;
    text-align: center;
}

.support h2 {
    color: #2b6cb0;
    margin-bottom: 20px;
}

.support p {
    font-size: 1.1rem;
    color: #4a5568;
}

/* Footer */
footer {
    padding: 40px 0;
    background: #2d3748;
    color: #e2e8f0;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Hero adjustments */
    .hero {
        padding: 60px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .floating-features {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 60px;
        pointer-events: none;
    }
    
    .floating-feature {
        position: absolute;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .floating-feature i {
        font-size: 0.9rem;
    }
    
    .feature-1 {
        top: 8%;
        left: 3%;
    }
    
    .feature-2 {
        top: 30%;
        right: 5%;
    }
    
    .feature-3 {
        bottom: 12%;
        left: 8%;
    }

    .hero-features .feature {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    /* General mobile adjustments */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .main-product {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bonus-item {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .arrow {
        transform: rotate(90deg);
        margin: 20px auto;
        display: block;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .differentials-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .guarantee-content {
        flex-direction: column;
        gap: 20px;
    }

    .guarantee-text h2,
    .guarantee-text p {
        text-align: center;
    }

    .creator-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .creator-text h2 {
        text-align: center;
    }

    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 400px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pricing-card {
        padding: 30px 20px;
        margin: 0 15px;
        text-align: center;
    }
    
    .pricing .container {
        padding: 0 10px;
    }
    
    .urgency .container {
        padding: 0 20px;
        text-align: center;
    }
    
    .offer-badge {
        position: relative;
        top: 0;
        left: auto;
        transform: none;
        margin-bottom: 20px;
        display: inline-block;
    }
    
    .pricing-card {
        padding-top: 40px;
    }

    .bonus-section {
        padding: 30px 20px;
    }

    /* FAQ mobile */
    .faq-question {
        padding: 20px 15px;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .faq-item.active .faq-answer {
        padding: 20px 15px;
    }

    /* Notification mobile */
    #purchase-notifications {
        left: 10px;
        bottom: 10px;
    }

    .notification {
        max-width: 250px;
        font-size: 0.8rem;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .current-price {
        font-size: 2rem;
    }

    .cta-button.large {
        padding: 18px 30px;
        font-size: 1.1rem;
    }

    .cta-button.extra-large {
        padding: 20px 35px;
        font-size: 1.2rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
