/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    /* Feminine Color Palette */
    --primary: #D86A80;        /* Rose */
    --primary-light: #FDF6F7;  /* Very Light Pink */
    --accent: #B83B55;         /* Deep Pink / CTA */
    --accent-hover: #962E44;
    --dark: #4A1521;           /* Burgundy for headings */
    --text: #444444;           /* Dark gray for body text */
    --light: #FFFFFF;
    --gold: #D4AF37;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 30px rgba(216, 106, 128, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.3;
}

strong {
    color: var(--primary);
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

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

/* ==========================================================================
   Top Bar (Scarcity)
   ========================================================================== */
.top-bar {
    background-color: var(--dark);
    color: var(--light);
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.top-bar strong {
    color: var(--gold);
}

#countdown {
    color: var(--gold);
    font-size: 1.1rem;
    background: rgba(255,255,255,0.1);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 5px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--light);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 2px solid var(--accent);
}

.cta-button i {
    margin-left: 8px;
}

.cta-button:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-3px);
}

.cta-button.outline {
    background-color: transparent;
    color: var(--accent);
    box-shadow: none;
}

.cta-button.outline:hover {
    background-color: var(--primary-light);
}

/* Pulse Animation */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(184, 59, 85, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(184, 59, 85, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(184, 59, 85, 0); }
}

.pulse {
    animation: pulse 2s infinite;
}

.pulse:hover {
    animation: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, var(--light) 0%, var(--primary-light) 100%);
    padding: 40px 0 60px;
}

.logo {
    max-width: 250px;
    margin: 0 auto 40px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-text {
    text-align: center;
}

.hero-text h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.hero-subheadline {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text);
    opacity: 0.9;
}

.trust-badge {
    display: inline-block;
    background: rgba(216, 106, 128, 0.1);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(216, 106, 128, 0.2);
}

.trust-badge i {
    color: var(--gold);
    margin-right: 5px;
}

.hero-text h1 strong {
    color: var(--accent);
}

.hero-benefits {
    list-style: none;
    margin: 0 auto 30px;
    text-align: left;
    display: inline-block;
}

.hero-benefits li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-benefits i {
    color: var(--primary);
    font-size: 1.2rem;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Social Proof
   ========================================================================== */
.social-proof {
    padding: 60px 0;
    background-color: var(--light);
}

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

.section-icon {
    width: 60px;
    margin: 0 auto 15px;
}

.social-proof h2 {
    font-size: 1.5rem;
}

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

.testimonial-card img {
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    width: 100%;
}

/* (Problem Section removed) */

/* (Problem solution transition removed) */

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
    padding: 60px 0;
    background-color: var(--light);
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-header h2 {
    font-size: 1.6rem;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    position: relative;
    padding-bottom: 20px;
}

.carousel-track {
    display: inline-flex;
    animation: scroll 20s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-track img {
    height: 250px;
    width: auto;
    margin-right: 15px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-track img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Steps Section
   ========================================================================== */
.steps-section {
    padding: 80px 0;
    background-color: var(--light);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: var(--primary-light);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.step-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* ==========================================================================
   What You Get & Bonuses
   ========================================================================== */
.what-you-get {
    padding: 80px 0;
    background-color: var(--primary-light);
}

.what-you-get > .container > h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.6rem;
}

.deliverables-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.deliverable-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--light);
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.deliverable-img img {
    border-radius: 10px;
}

.deliverable-text h3 {
    margin-bottom: 15px;
    color: var(--accent);
}

/* Bonuses */
.bonuses-section {
    margin-top: 80px;
}

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

.bonus-card {
    background: var(--light);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px dashed var(--primary);
}

.bonus-card img {
    max-width: 150px;
    margin: 0 auto 15px;
    border-radius: 10px;
}

.bonus-card h4 {
    margin-bottom: 10px;
    color: var(--dark);
}

/* ==========================================================================
   Dual Pricing Offer
   ========================================================================== */
.offer-section {
    padding: 80px 0;
    background: var(--dark);
    color: var(--light);
}

.offer-header {
    text-align: center;
    margin-bottom: 50px;
}

.offer-header h2 {
    color: var(--light);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.pricing-card {
    background: var(--light);
    color: var(--text);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.basic {
    border: 1px solid #ddd;
}

.pricing-card.complete {
    border: 4px solid var(--primary);
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--light);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.ideal-for {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: var(--dark);
    margin-bottom: 10px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 10px;
    margin-right: 5px;
}

.pricing-price .value {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-price .cents {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 10px;
}

.payment-terms {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: #27ae60;
}

.pricing-features li.disabled {
    color: #999;
    text-decoration: line-through;
}

.pricing-features li.disabled i {
    color: #e74c3c;
}

.pricing-card .cta-button {
    width: 100%;
    margin-bottom: 10px;
}

.safe-checkout {
    font-size: 0.8rem;
    color: #27ae60;
    font-weight: 600;
}

/* Guarantee */
.guarantee-box {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.guarantee-icon {
    font-size: 3rem;
    color: var(--gold);
}

.guarantee-text h3 {
    color: var(--gold);
    margin-bottom: 10px;
}

/* ==========================================================================
   Author Section
   ========================================================================== */
.author-section {
    padding: 80px 0;
    background: var(--light);
}

.author-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.author-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    max-width: 300px;
}

.author-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.author-text p {
    margin-bottom: 15px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
    padding: 80px 0;
    background: var(--primary-light);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.faq-item {
    background: var(--light);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
}

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

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px; /* Arbitrary large number */
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: #222;
    color: #aaa;
    text-align: center;
    padding: 60px 0 40px;
    font-size: 0.9rem;
}

.footer-logo {
    max-width: 200px;
    margin: 0 auto 20px;
    filter: grayscale(100%) brightness(200%);
    opacity: 0.7;
}

footer p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.8rem;
    margin-top: 30px;
    opacity: 0.6;
}

/* ==========================================================================
   Sales Notification (Pop-up)
   ========================================================================== */
.sales-notification {
    position: fixed;
    bottom: -100px; /* Hidden initially */
    left: 20px;
    background: var(--light);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 320px;
    z-index: 1000;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--primary);
}

.sales-notification.show {
    bottom: 20px;
}

.notification-img img {
    width: 40px;
    height: 40px;
}

.notification-text {
    font-size: 0.85rem;
    line-height: 1.3;
}

.notification-text .action {
    color: var(--text);
}

.notification-text .time {
    font-size: 0.75rem;
    color: #888;
    margin-top: 3px;
}

/* ==========================================================================
   Media Queries (Tablet & Desktop)
   ========================================================================== */
@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        text-align: left;
    }
    
    .hero-text {
        flex: 1;
        text-align: left;
    }
    
    .hero-image {
        flex: 1;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
/* Problem section CSS removed */
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .deliverable-item {
        flex-direction: row;
        align-items: center;
    }
    
    .deliverable-item.reverse {
        flex-direction: row-reverse;
    }
    
    .deliverable-img, .deliverable-text {
        flex: 1;
    }
    
    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        max-width: 900px;
        margin: 0 auto 50px;
    }
    
    .author-content {
        flex-direction: row;
    }
    
    .author-image, .author-text {
        flex: 1;
    }
    
    .guarantee-box {
        flex-direction: row;
        text-align: left;
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .bonuses-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
