@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Montserrat:wght@700;900&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #D12E7B; /* Vibrant Pink (Main CTA) */
    --primary-hover: #b8236a;
    --secondary: #FF8DA1; /* Coral Pink (Header/Top Bar) */
    --secondary-hover: #ff758e;
    --accent: #e11d48; /* Pink/Red (Price/Urgency) */
    --bg-light: #FFF5F7; /* Very Soft Pink Background */
    --text-dark: #2d181e; /* Darker Pinkish Gray */
    --text-muted: #7c5a64;
    --white: #ffffff;
    --success: #D12E7B;
    --shadow: 0 4px 6px -1px rgba(209, 46, 123, 0.1), 0 2px 4px -1px rgba(209, 46, 123, 0.06);
}

.top-bar {
    background-color: var(--secondary); /* Using primary green */
    color: var(--white);
    text-align: center;
    padding: 10px 5px;
    font-weight: 700;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
}

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

/* New Hero Section Style - Based on Reference */
.hero-v2 {
    background-color: var(--white);
    background-image: 
        linear-gradient(to right, #f0f0f0 1px, transparent 1px),
        linear-gradient(to bottom, #f0f0f0 1px, transparent 1px);
    background-size: 30px 30px;
    padding: 60px 0 40px 0;
    text-align: center;
}

.hero-v2 h1.hero-title-v2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary); /* Pink like reference */
    max-width: 900px;
    margin: 0 auto 10px auto;
    text-transform: none; 
    line-height: 1.1;
}

.hero-v2 h1.hero-title-v2 span.highlight {
    color: var(--primary);
    border-bottom: 4px solid var(--primary);
}

.hero-subtitle-v2 {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
}

.mini-underlined {
    border-bottom: 3px solid var(--primary);
    padding-bottom: 2px;
}

.bonus-button-container {
    margin: 20px 0;
}

.orange-bonus-button {
    display: inline-block;
    background: #ff6b00; /* Vibrant Orange like reference */
    color: #fff;
    padding: 12px 35px;
    font-size: 1.4rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
    transition: all 0.3s;
}

.orange-bonus-button:hover {
    transform: scale(1.05);
    background: #e66000;
}

.hero-v2 .hero-image-container {
    max-width: 850px;
    margin: 40px auto;
    position: relative;
}

.hero-v2 .hero-image-container img {
    width: 100%;
    height: auto;
}

.hero-v2 .hero-description {
    font-size: 1.15rem;
    color: #555;
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.6;
}

.hero-v2 .hero-description strong {
    color: #333;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 22px 50px;
    font-size: 1.6rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(209, 46, 123, 0.4);
    text-transform: uppercase;
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: var(--primary-hover);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary); /* Use primary pink instead of yellow */
    border-radius: 2px;
}

/* Carousel */
.carousel-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 30px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow: var(--shadow);
    background-color: var(--white); /* Ensure container has background */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-image {
    min-width: 100%;
    height: 500px;
    object-fit: contain; /* Prevent cropping */
    background-color: #fcfcfc; /* Subtle background for better contrast */
}

/* Full Width Carousel Styles */
.carousel-container-full {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0;
}

.carousel-image-full {
    width: 100vw;
    height: auto;
    object-fit: cover; /* Use cover to ensure it fills the width, but we'll monitor for cropping */
    display: block;
}

.container-full {
    width: 100%;
    max-width: 100vw;
    padding: 0;
    overflow-x: hidden;
}

/* Problem Section */
.problem {
    background-color: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem ul li {
    padding: 15px;
    margin-bottom: 10px;
    background: #fff0f3;
    border-radius: 10px;
    border-left: 5px solid var(--primary);
}

/* Testimonials */
.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--primary);
}

/* Bonus Cards Redesign */
.checklist-card {
    background: #fff;
    border: 2px solid #ffdeeb; /* Very light pink border */
    border-radius: 30px;
    padding: 60px 40px;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(255, 141, 161, 0.1);
}

.checklist-items {
    list-style: none;
    text-align: left;
    max-width: 450px;
    margin: 0 auto;
}

.checklist-items li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #fff0f3;
}

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

/* Bonus Cards OLD (keep for compatibility if used elsewhere, but we updated the grid) */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.bonus-card {
    background: var(--white);
    padding: 0;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 5px solid var(--primary);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bonus-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    background-color: #f9f9f9;
}

.bonus-card h3 {
    font-size: 1.1rem;
    padding: 20px 10px;
    margin: 0;
    color: var(--secondary);
    background: #fff;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pricing Model Redesign */
.pricing-new {
    background: #fff;
    padding: 60px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.pricing-card {
    background: #fff;
    padding: 40px 30px;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-title {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

.stars {
    color: #ffc107;
}

.bundle-mockup {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 30px;
}

.feature-list {
    text-align: left;
    max-width: 450px;
    margin: 0 auto 30px;
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.check { color: #28a745; font-weight: bold; }
.gift { color: #4CAF50; }

.price-container {
    margin: 40px 0 20px;
}

.old-price-text {
    font-size: 1.1rem;
    color: #666;
}

.old-price-val {
    text-decoration: line-through;
    color: #ff4d4d;
    font-weight: bold;
}

.new-price-val {
    font-size: 4rem;
    color: #28a745;
    font-weight: 900;
    line-height: 1;
    margin: 5px 0;
}

.installment-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: -5px;
}

.total-price-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: -5px;
}

.economy-badge {
    display: inline-block;
    background: #d4f8d4;
    color: #155724;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.cta-button-green {
    display: block;
    width: 100%;
    background: #28a745;
    color: #fff;
    padding: 20px;
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    transition: transform 0.2s;
    text-transform: uppercase;
}

.cta-button-green:hover {
    transform: translateY(-3px);
    background: #218838;
}

.urgency-text {
    display: block;
    margin-top: 15px;
    color: #ff4d4d;
    font-weight: bold;
    font-size: 0.9rem;
}

/* FAQ Accordion Redesign */
.faq {
    background-color: #fff;
    background-image: 
        linear-gradient(#f0f0f0 1px, transparent 1px),
        linear-gradient(90deg, #f0f0f0 1px, transparent 1px);
    background-size: 40px 40px;
    padding: 100px 0;
}

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

.faq-item-new {
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-bottom: 0;
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.6;
}

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

.arrow-icon {
    width: 12px;
    height: 12px;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    transform: rotate(45deg);
    transition: transform 0.3s;
    margin-right: 10px;
}

.faq-item-new.active .arrow-icon {
    transform: rotate(-135deg);
}
/* Testimonials V2 (Dark Model) */
.testimonials-v2 {
    background: #1a1512;
    padding: 100px 0;
}

.testimonial-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.testimonial-card-v2 {
    background: #231d1a;
    border-radius: 12px;
    overflow: hidden;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    border: 1px solid #332b26;
    transition: transform 0.3s;
}

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

.testimonial-content-v2 {
    padding: 25px;
    flex-grow: 1;
}

.stars-v2 {
    color: #ffc107;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.testimonial-name-v2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-avatar-v2 {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.verified-badge {
    color: #4CAF50;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-text-v2 {
    font-style: italic;
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.9;
}

.testimonial-image-v2 {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background-color: #231d1a;
    border-top: 1px solid #332b26;
}

.order-reversed {
    flex-direction: column-reverse;
}

.order-reversed .testimonial-image-v2 {
    border-top: none;
    border-bottom: 1px solid #332b26;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

    .hero-v2 {
        padding: 40px 0;
    }

    .hero-v2 h1.hero-title-v2 {
        font-size: 1.8rem; /* Reduced for mobile */
    }

    .hero-subtitle-v2 {
        font-size: 1.1rem; /* Reduced for mobile */
        margin-bottom: 20px;
    }

    .orange-bonus-button {
        font-size: 1rem;
        padding: 10px 25px;
    }

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

    .section-title {
        font-size: 2.1rem;
        margin-bottom: 40px;
    }

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

    .carousel-image {
        height: 300px;
    }

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

    .pricing-card {
        padding: 30px 15px;
    }

    .new-price-val {
        font-size: 2.8rem;
    }

    .cta-button, .cta-button-green {
        font-size: 1.2rem;
        padding: 15px 20px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 20px 0;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }
}

/* Upsell Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.modal-content {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #bbb;
    font-size: 30px;
    cursor: pointer;
}

.modal-header h2 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1.2;
}

.upsell-offer {
    background: #fff0f3;
    padding: 25px;
    border-radius: 20px;
    margin: 25px 0;
    border: 2px dashed var(--primary);
}

.upsell-price {
    font-size: 2rem;
    font-weight: 900;
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.upsell-price .highlight {
    color: var(--accent);
}

.upsell-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.secondary-action {
    background: none;
    border: none;
    color: #888;
    text-decoration: underline;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

