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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2d5f3f;
    letter-spacing: -0.5px;
}

.logo sup {
    font-size: 0.6em;
    color: #5ca57a;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #5ca57a;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #5ca57a;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.btn-nav {
    background: linear-gradient(135deg, #4a9d6b 0%, #5ca57a 100%);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 157, 107, 0.2);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 157, 107, 0.3);
}

.btn-nav::after {
    display: none;
}

/* Hero Section - REDESIGNED */
.hero {
    background: linear-gradient(135deg, #f8fdf9 0%, #e8f5ed 50%, #f0f9f4 100%);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(92, 165, 122, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-block;
    background: rgba(92, 165, 122, 0.15);
    color: #2d5f3f;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(92, 165, 122, 0.3);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.highlight {
    color: #2d5f3f;
}

.gradient-text {
    background: linear-gradient(135deg, #4a9d6b 0%, #5ca57a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.price-box {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(92, 165, 122, 0.2);
}

.old-price {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.old-price span {
    text-decoration: line-through;
    font-weight: 600;
}

.new-price {
    font-size: 1.1rem;
    color: #2d5f3f;
    font-weight: 700;
}

.new-price span {
    font-size: 1.5rem;
    color: #4a9d6b;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #4a9d6b 0%, #5ca57a 100%);
    color: white;
    box-shadow: 0 6px 25px rgba(74, 157, 107, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 157, 107, 0.35);
}

.btn-secondary {
    background: white;
    color: #4a9d6b;
    border: 2px solid #4a9d6b;
}

.btn-secondary:hover {
    background: #4a9d6b;
    color: white;
    transform: translateY(-3px);
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.trust-icon {
    width: 24px;
    height: 24px;
    background: #4a9d6b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(92, 165, 122, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-image img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.15));
    animation: float 3s ease-in-out infinite;
}

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

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #f8fdf9;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(92, 165, 122, 0.3);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fdf9 0%, #ffffff 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: white;
}

.work-content {
    max-width: 900px;
    margin: 0 auto;
}

.work-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fdf9 0%, #e8f5ed 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid #4a9d6b;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4a9d6b;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(74, 157, 107, 0.3);
}

.pricing-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #f8fdf9;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    color: #2d5f3f;
    margin-bottom: 0.3rem;
}

.stars {
    color: #ffa500;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.verified {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.review-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.reviewer-name {
    font-weight: 600;
    color: #2d5f3f;
    font-size: 0.9rem;
}

/* Guarantee Section */
.guarantee-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fdf9 0%, #e8f5ed 100%);
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.guarantee-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.guarantee-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.highlight-text {
    font-size: 1.1rem;
    color: #4a9d6b;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guarantee-text p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.guarantee-badge {
    margin-top: 2rem;
}

.guarantee-badge img {
    max-width: 200px;
    height: auto;
}

.guarantee-details {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.guarantee-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 1rem;
}

.guarantee-details p {
    color: #555;
    line-height: 1.8;
}

/* Ingredients Section */
.ingredients-section {
    padding: 5rem 0;
    background: white;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.ingredients-list {
    max-width: 900px;
    margin: 0 auto;
}

.ingredient-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #f8fdf9;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.ingredient-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ingredient-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a9d6b 0%, #5ca57a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.ingredient-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 0.5rem;
}

.ingredient-content p {
    color: #555;
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fdf9 0%, #ffffff 100%);
}

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

.benefit-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    flex-shrink: 0;
    font-size: 2rem;
}

.benefit-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 2px solid #e8f5ed;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #5ca57a;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #f8fdf9;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e8f5ed;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d5f3f;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #5ca57a;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem 2rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fdf9 0%, #e8f5ed 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.cta-content img {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 2rem auto;
}

.cta-price {
    margin: 2rem 0;
}

.old-price-large {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.new-price-large {
    font-size: 2rem;
    font-weight: 800;
    color: #4a9d6b;
}

.btn-xl {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    box-shadow: 0 8px 30px rgba(74, 157, 107, 0.3);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #999;
    padding: 3rem 0 1rem;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #5ca57a;
}

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.footer-disclaimer h4 {
    color: #5ca57a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .guarantee-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}