:root {
    --primary-color: #00A650;
    /* Strong Vivid Green */
    --secondary-color: #FF6D00;
    /* Vivid Orange */
    --accent-color: #FFD600;
    /* Sunny Yellow */
    --text-dark: #121212;
    /* Deep Black for max contrast */
    --text-gray: #333333;
    /* Dark Gray */
    --light-bg: #FFFFFF;
    /* White background for clean text visibility */
    --white: #FFFFFF;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--light-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Navbar */
.navbar {
    background-color: transparent;
    /* Removed white background */
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: none;
    /* Removed shadow */
    backdrop-filter: none;
    /* Removed blur */
}

.navbar-container {
    display: flex;
    justify-content: center;
    /* Center the countdown */
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 109, 0, 0.3);
    animation: pulse 1s infinite;
    /* Faster pulse on all buttons */
}

.btn-sm {
    font-size: 0.9rem;
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-lg,
.btn-xl {
    background: linear-gradient(135deg, #00A650, #008f45);
    /* Green Gradient */
    color: var(--white);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 109, 0, 0.4);
}

/* Hero */
.hero {
    padding-top: 120px;
    padding-bottom: 60px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--light-bg));
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--text-dark);
}

.hero-text h1 span {
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin: 20px 0;
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-badges span {
    background: #e8f5e9;
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: rotate(2deg);
}

/* Features */
.features {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    /* Prepare for hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    /* Subtle shadow default */
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.feature-card i {
    font-size: 2.2rem;
    color: white;
    background: var(--primary-color);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 166, 80, 0.3);
    transition: var(--transition);
}

.feature-card:hover i {
    background: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(255, 109, 0, 0.3);
    transform: rotateY(180deg);
}

.feature-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 500;
}

/* Showcase */
.showcase {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
}

.gallery-overlay h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

/* Pain Points */
.pain-points {
    padding: 80px 0;
    background-color: #FB8C00;
    /* Natural Fruit Orange */
}

.pain-points .section-title {
    color: var(--text-dark);
}

.pain-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.pain-item {
    background: white;
    padding: 30px 25px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 6px solid #FF3D00;
    /* Red/Orange Warning accent */
    transition: transform 0.3s ease;
}

.pain-item:hover {
    transform: translateX(10px);
}

.pain-item i {
    color: #FF3D00;
    font-size: 2rem;
    min-width: 40px;
    text-align: center;
}

.pain-item p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

.solution-text {
    text-align: center;
    margin-top: 50px;
}

.solution-text h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.solution-text i {
    font-size: 2rem;
    color: var(--text-dark);
    margin-top: 10px;
    animation: bounce 2s infinite;
}

/* Bonuses */
.bonuses {
    padding: 80px 0;
    background-color: #B2FF59;
    /* Vivid Lime Green */
}

.bonuses .section-title {
    color: var(--text-dark);
    /* Black title for bonuses */
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--secondary-color);
    /* Orange Border */
    transform: scale(1);
    transition: var(--transition);
}

.bonus-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 109, 0, 0.3);
}

.bonus-img img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    border-bottom: 4px solid var(--secondary-color);
}

.bonus-content {
    padding: 25px;
    text-align: center;
}

.bonus-content h4 {
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.bonus-content p {
    font-size: 1.3rem;
    /* Increased size */
    font-weight: 700;
    /* Bold */
    color: var(--text-dark);
    margin-bottom: 15px;
}

.price-strike {
    text-decoration: line-through;
    color: #888;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.price-free {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: 2px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
}

/* Offer */
.offer-section {
    padding: 60px 0 80px;
    background-color: #FB8C00;
    /* Natural Fruit Orange */
}

.offer-box {
    background: white;
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(46, 125, 50, 0.15);
    text-align: center;
    border: 2px solid var(--secondary-color);
}

.offer-includes ul {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin: 20px 0;
}

.offer-includes li {
    margin-bottom: 10px;
    font-size: 1.2rem;
    /* Slightly larger */
    font-weight: 700;
    /* Bold */
    color: var(--text-dark);
}

.offer-includes i {
    color: var(--primary-color);
    margin-right: 10px;
}

.price-tag {
    margin: 30px 0;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1.1rem;
}

.final-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.cash-price {
    font-weight: 700;
    color: var(--text-dark);
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #FB8C00;
    /* Natural Fruit Orange */
}

.faq .section-title {
    color: var(--text-dark);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: none;
    border-radius: var(--radius);
    background: white;
    /* White cards for legibility */
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease;
}

.faq-content p {
    padding-bottom: 20px;
    color: var(--text-gray);
}

.active .faq-content {
    max-height: 200px;
}

.active .faq-btn i {
    transform: rotate(180deg);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Freshness Section */
.freshness-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.freshness-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.freshness-item img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.freshness-item:hover img {
    transform: translateY(-10px);
}

.opportunity-text {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    background-color: var(--primary-color);
    padding: 20px;
    border-radius: var(--radius);
    text-transform: uppercase;
    text-decoration: underline;
    margin: 30px auto 20px;
    max-width: 900px;
    line-height: 1.5;
    animation: pulse 2s infinite;
    box-shadow: var(--shadow);
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* About Nutri */
.about-nutri {
    padding: 80px 0;
    background: var(--light-bg);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 span {
    color: var(--secondary-color);
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-height: 500px;
    object-fit: cover;
    margin: 0 auto;
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: #FB8C00;
    /* Natural Fruit Orange */
    overflow: hidden;
}

.social-proof .section-title {
    color: var(--text-dark);
}

.testimonials-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.testimonials-scroll::-webkit-scrollbar {
    height: 8px;
}

.testimonials-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.testimonials-scroll img {
    height: 400px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {

    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .navbar-container {
        flex-direction: column;
        gap: 15px;
    }

    .freshness-grid,
    .pain-list,
    .features-grid,
    .gallery-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        text-align: center !important;
    }

    .opportunity-text {
        font-size: 1.2rem;
        padding: 15px;
        margin: 20px 10px;
    }
}

/* Countdown Timer */
/* Countdown Timer */
.countdown-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    /* Reduced gap */
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
    background: linear-gradient(135deg, #D32F2F, #B71C1C);
    padding: 8px 15px;
    /* Significantly reduced padding */
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(183, 28, 28, 0.3);
    /* Softer shadow */
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    opacity: 0.9;
}

.countdown-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.countdown-header-text {
    font-size: 0.8rem;
    /* Smaller text */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.countdown-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Reduced gap */
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 3px 10px;
    /* Smaller padding */
    border-radius: 3px;
    min-width: 50px;
    /* Reduced min-width */
}

.countdown-time {
    font-size: 1.5rem;
    /* Much smaller timer */
    font-weight: 800;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.countdown-label {
    font-size: 0.5rem;
    /* Tiny label */
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.countdown-separator {
    font-size: 1.5rem;
    /* Match timer size */
    font-weight: 800;
    margin-top: -8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}



/* Red Button */
.btn-red {
    background: linear-gradient(135deg, #D50000, #B71C1C);
    color: white !important;
    box-shadow: 0 4px 15px rgba(213, 0, 0, 0.4);
}

.btn-red:hover {
    box-shadow: 0 8px 20px rgba(213, 0, 0, 0.5);
    transform: translateY(-3px);
}

/* Sales Notification */
.notification-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(33, 150, 243, 0.9);
    /* Blue with opacity */
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 9999;
    display: none;
    /* Hidden by default */
    align-items: center;
    gap: 10px;
    animation: slideIn 0.5s ease-out;
}

.notification-box i {
    font-size: 1.2rem;
    color: #FFD600;
    /* Yellow accent icon */
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}