/* 
   ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== 
*/

:root {
    --primary: #4CAF50; /* Green */
    --primary-dark: #2E7D32;
    --secondary: #FF9800; /* Orange */
    --secondary-dark: #F57C00;
    --accent: #03A9F4; /* Blue */
    --light-yellow: #FFFDE7;
    --white: #FFFFFF;
    --dark: #333333;
    --gray-light: #F9F9F9;
    --gray-medium: #E0E0E0;
    --text: #444444;
    --text-light: #777777;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* 
   ==========================================================================
   BASE STYLES
   ========================================================================== 
*/

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

html {
    scroll-behavior: smooth;
}

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

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

h1, h2, h3 {
    line-height: 1.2;
    color: var(--dark);
    font-weight: 700;
}

p {
    margin-bottom: 15px;
}

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

ul {
    list-style: none;
}

.section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* 
   ==========================================================================
   BUTTONS
   ========================================================================== 
*/

.btn {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* 
   ==========================================================================
   SCARCITY BAR
   ========================================================================== 
*/

.top-bar {
    background-color: #d32f2f; /* Red for urgency */
    color: var(--white);
    text-align: center;
    padding: 6px 0; /* Reduced padding */
    font-size: 0.85rem; /* Slightly smaller */
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-bar p {
    margin: 0;
    letter-spacing: 0.5px;
}

/* 
   ==========================================================================
   NAVBAR
   ========================================================================== 
*/

.navbar {
    display: none; /* Removed as title is gone */
}

@media (max-width: 768px) {
    .navbar {
        top: 38px; /* Slightly different for mobile text wrapping */
    }
}

.navbar .container {
    display: flex;
    justify-content: center; /* Center the logo */
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-text span {
    color: var(--secondary);
}

/* Remove nav-btn styles as it's no longer used */
.nav-btn {
    display: none;
}

/* 
   ==========================================================================
   HERO SECTION
   ========================================================================== 
*/

.hero {
    background: linear-gradient(135deg, var(--light-yellow) 0%, #fff 100%);
    padding: 30px 0 50px; /* Greatly reduced padding */
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 40px); /* Fill screen but allow for top-bar */
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(76, 175, 80, 0.05);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column for better centering */
    gap: 40px;
    align-items: center;
    text-align: center;
}

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

.badge {
    display: inline-block;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 2.8rem; /* Reduced size */
    margin-bottom: 15px;
    line-height: 1.1;
    color: var(--dark);
}

.highlight-num {
    color: var(--secondary);
    font-size: 4rem; /* Prominent but balanced */
    line-height: 1;
    display: inline-block;
}

.highlight-word {
    color: var(--primary);
    position: relative;
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--light-yellow);
    z-index: -1;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center; /* Center buttons and image */
    width: 100%;
}

.cta-image-wrapper {
    width: 100%;
    max-width: 500px; /* Increased as requested */
    margin: 0 auto;
}

.cta-top-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.main-cta {
    width: 100%;
    max-width: 380px;
}

.seals {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    font-size: 0.8rem; /* Smaller seals */
}

.seal {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.seal i {
    color: var(--primary);
}

.mockup-img {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    animation: float 6s ease-in-out infinite;
    max-width: 680px; /* Increased for more prominence */
    margin: 0 auto;
}

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

/* 
   ==========================================================================
   PROBLEM SECTION
   ========================================================================== 
*/

.problem-section {
    background-color: var(--white);
    text-align: center;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text);
}

/* 
   ==========================================================================
   SOLUTION SECTION
   ========================================================================== 
*/

.solution-section {
    background-color: var(--gray-light);
}

.solution-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.solution-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-text {
    padding: 60px;
}

.solution-text h2 {
    margin-bottom: 25px;
}

.solution-list {
    margin-top: 30px;
}

.solution-list li {
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.solution-list i {
    color: var(--primary);
    width: 25px;
}

/* 
   ==========================================================================
   BENEFITS SECTION
   ========================================================================== 
*/

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

.benefit-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-medium);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
}

/* 
   ==========================================================================
   INCLUDE SECTION
   ========================================================================== 
*/

.include-section {
    background: linear-gradient(rgba(76, 175, 80, 0.9), rgba(76, 175, 80, 0.9)), url('assets/banner-bg.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

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

.include-content h2 {
    color: var(--white);
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.include-list {
    text-align: left;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.include-list li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
}

.include-list i {
    color: var(--light-yellow);
}

/* 
   ==========================================================================
   DIFFERENTIAL SECTION
   ========================================================================== 
*/

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.diff-card {
    padding: 30px;
    background-color: var(--light-yellow);
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary);
}

.diff-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* 
   ==========================================================================
   BONUS SECTION
   ========================================================================== 
*/

.bonus-section {
    background-color: var(--white);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.bonus-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    border: 2px dashed var(--primary);
}

.bonus-tag {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.8rem;
}

.bonus-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* 
   ==========================================================================
   PRICING SECTION
   ========================================================================== 
*/

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

.pricing-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 2px solid var(--gray-medium);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.basic {
    border-color: var(--gray-medium);
    background: linear-gradient(to bottom, #ffffff, #fafafa);
}

.pricing-card.basic:hover {
    border-color: var(--secondary);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.15);
    z-index: 2;
}

.popular-tag {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    background-color: var(--gray-light);
    border-bottom: 1px solid var(--gray-medium);
}

.pricing-header h3 {
    margin-bottom: 10px;
    color: var(--text-light);
}

.pricing-card.featured .pricing-header h3 {
    color: var(--primary-dark);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
}

.price span {
    font-size: 1.2rem;
    color: var(--text-light);
}

.pricing-body {
    padding: 40px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-list {
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-list i {
    color: var(--primary);
}

.pricing-list i.inactive {
    color: var(--gray-medium);
}

.buy-basic-btn {
    background-color: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.1);
}

.buy-basic-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* 
   ==========================================================================
   MODAL / UPSELL
   ========================================================================== 
*/

.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    overflow: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    animation: modalIn 0.4s ease-out;
    overflow: hidden;
}

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

.modal-header {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    padding: 25px;
    text-align: center;
    position: relative;
    color: var(--white);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: var(--white);
    cursor: pointer;
}

.modal-badge {
    background: rgba(255,255,255,0.2);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.modal-body {
    padding: 40px;
    text-align: center;
}

.modal-body h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.discount-price {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 800;
}

.modal-grid {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    text-align: left;
}

.modal-img {
    flex: 1;
}

.modal-list {
    flex: 1.5;
}

.modal-list li {
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.upsell-btn {
    font-size: 1.3rem;
    padding: 20px;
}

.no-thanks {
    color: var(--text-light);
    text-decoration: underline;
    font-size: 0.9rem;
    cursor: pointer;
}

/* 
   ==========================================================================
   TESTIMONIALS MINI
   ========================================================================== 
*/

.testimonials-mini {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--gray-medium);
    text-align: left;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.stars {
    color: #FFC107;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.testimonial-item p {
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text);
}

.author {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-dark);
}

/* 
   ==========================================================================
   GUARANTEE SECTION
   ========================================================================== 
*/

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 5rem;
    color: var(--accent);
}

.guarantee-badge {
    margin-top: 15px;
    font-weight: 700;
    color: var(--accent);
}

/* 
   ==========================================================================
   FAQ SECTION
   ========================================================================== 
*/

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

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--gray-medium);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--light-yellow);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background-color: var(--white);
}

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

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

/* 
   ==========================================================================
   FINAL CTA
   ========================================================================== 
*/

.final-cta-section {
    padding-bottom: 120px;
}

.cta-card {
    background-color: var(--primary);
    padding: 80px 40px;
    border-radius: 30px;
    text-align: center;
    color: var(--white);
}

.cta-card h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

/* 
   ==========================================================================
   FOOTER
   ========================================================================== 
*/

.footer {
    padding: 60px 0;
    background-color: var(--dark);
    color: #999;
    text-align: center;
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 20px;
    font-size: 0.8rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 
   ==========================================================================
   RESPONSIVE
   ========================================================================== 
*/

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .highlight-num {
        font-size: 3.5rem;
    }
    
    .hero-description {
        margin: 0 auto 35px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 20px 0 30px;
        min-height: auto; /* Let content dictate on very small screens */
    }

    .section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .highlight-num {
        font-size: 3.2rem;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .cta-image-wrapper {
        max-width: 350px; /* Increased for mobile */
    }

    .main-cta {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .mockup-img {
        max-width: 340px; /* Increased for mobile */
        margin: 10px auto 0;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
    
    .offer-body {
        padding: 30px 20px;
    }
    
    .cta-card h2 {
        font-size: 1.6rem;
    }

    .seals {
        flex-wrap: wrap;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        padding: 0 10px;
    }
    
    .seals {
        flex-direction: column;
        gap: 10px;
    }
    
    .current-price {
        font-size: 2.2rem;
    }
}
