/* Global Variables & Reset */
:root {
    --primary-color: #84A98C;
    /* Sage Green */
    --primary-dark: #52796F;
    /* Darker Sage */
    --secondary-color: #CAD2C5;
    /* Light Greyish Green */
    --accent-color: #E29578;
    /* Muted Terracotta */
    --text-color: #353535;
    /* Soft Black */
    --light-bg: #F4F1DE;
    /* Cream/Eggshell */
    --white: #FFFFFF;
    --dark-bg: #353535;
    --success-color: #52796F;
    --shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    --radius: 16px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --gradient-hero: linear-gradient(135deg, #F4F1DE 0%, #E9EDC9 100%);
    /* Cream to Soft Green */
    --gradient-gold: linear-gradient(135deg, #E29578 0%, #F4A261 100%);
    /* Warm Muted Gradient */
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-accent {
    background: var(--gradient-gold);
    color: var(--dark-bg);
}

section {
    padding: 80px 0;
}

/* Header */
header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    padding: 100px 0 150px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

.hero-img-container {
    margin-top: 40px;
    transform: translateY(20px);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Benefits Section */
.benefits {
    background: var(--white);
    margin-top: -80px;
    border-radius: 40px 40px 0 0;
    position: relative;
    z-index: 3;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: 0.3s;
    border: 2px solid transparent;
}

.benefit-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h3 {
    margin-bottom: 10px;
    color: var(--dark-bg);
}

/* Social Proof */
.social-proof {
    background: #FFF8F0;
    text-align: center;
}

.stars {
    color: #FFC107;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: left;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: #FF5E86;
    opacity: 0.1;
}

/* Carousel Section */
.carousel-section {
    background: var(--dark-bg);
    color: var(--white);
    overflow: hidden;
}

.carousel-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.carousel-item {
    flex: 0 0 300px;
    scroll-snap-align: center;
    transition: transform 0.3s;
}

.carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* Pricing Plans */
.pricing {
    background: var(--light-bg);
}

.pricing-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
    /* Align top */
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #FFFCF5 0%, #FFF 100%);
    transform: scale(1.08);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.badge-featured {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(226, 149, 120, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(226, 149, 120, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(226, 149, 120, 0);
    }
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
    color: var(--dark-bg);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
}

.features-list {
    text-align: left;
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    color: var(--success-color);
    font-weight: bold;
}


/* Bonus Section */
.bonus-container {
    background: linear-gradient(to bottom, #FFF8F0, #FFF);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    padding: 25px 20px 20px;
    margin: 30px 0 20px;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 15px rgba(226, 149, 120, 0.2);
}

.bonus-header {
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: inline-block;
    white-space: nowrap;
    width: auto;
}

.bonus-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.bonus-list li strong {
    color: var(--primary-dark);
}

.check-icon {
    color: var(--success-color);
    font-weight: bold;
}

/* Guarantee */
.guarantee {
    background: var(--white);
    text-align: center;
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
}

/* FAQ */
.faq {
    background: #F0F4F8;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--dark-bg);
    transition: background 0.2s;
}

.accordion-header:hover {
    background: #f9f9f9;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.accordion-content p {
    padding-bottom: 20px;
    color: #666;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.toggle-icon {
    transition: transform 0.3s;
}

.accordion-item.active .toggle-icon {
    transform: rotate(180deg);
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 20px;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-links {
    margin-bottom: 40px;
}

.footer-links a {
    color: #ccc;
    margin: 0 15px;
}

.footer-links a:hover {
    color: var(--white);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 100px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .benefits {
        margin-top: -40px;
        border-radius: 30px 30px 0 0;
    }
}