:root {
    --primary-green: #4a7c59;
    --primary-dark: #2d5a3d;
    --accent-gold: #d4a574;
    --light-cream: #faf8f5;
    --text-dark: #2c3e50;
    --text-gray: #5a6c7d;
    --border-light: #e8e5e0;
    --success-green: #52a675;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--light-cream);
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
    color: var(--white);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
        border-radius: 50%;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(82, 166, 117, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.trial-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 32px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.price-highlight {
    font-size: 72px;
    font-weight: 700;
    margin: 20px 0;
    animation: scaleIn 0.6s ease-out 0.6s both;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.price-highlight sup {
    font-size: 36px;
    vertical-align: super;
}

.price-detail {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.cta-button {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 20px 48px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
    animation: fadeInUp 0.8s ease-out 1s both;
    border: none;
    cursor: pointer;
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(212, 165, 116, 0.4);
        background: #e0b685;
    }

.trust-line {
    margin-top: 24px;
    font-size: 14px;
    opacity: 0.85;
    animation: fadeIn 1s ease-out 1.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Value Stack Section */
.value-stack {
    background: var(--white);
    padding: 80px 20px;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.value-item {
    background: var(--light-cream);
    padding: 32px;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .value-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--primary-green);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .value-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 28px rgba(74, 124, 89, 0.15);
        border-color: var(--primary-green);
    }

        .value-item:hover::before {
            transform: scaleY(1);
        }

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.value-description {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

.total-value-box {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(74, 124, 89, 0.3);
}

.value-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.value-amount {
    text-align: center;
}

.value-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.value-number {
    font-size: 48px;
    font-weight: 700;
}

    .value-number.strike {
        text-decoration: line-through;
        opacity: 0.7;
    }

.value-note {
    font-size: 14px;
    opacity: 0.85;
    margin-top: 16px;
}

.arrow {
    font-size: 32px;
    opacity: 0.7;
}

/* Timeline Section */
.timeline-section {
    background: var(--light-cream);
    padding: 80px 20px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 30px;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, var(--primary-green) 0%, var(--accent-gold) 100%);
    }

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}

.timeline-dot {
    position: absolute;
    left: 18px;
    top: 8px;
    width: 28px;
    height: 28px;
    background: var(--primary-green);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

.timeline-day {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.timeline-description {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--white);
    padding: 80px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--light-cream);
    padding: 36px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
    transition: all 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    }

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--primary-green);
}

    .author-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: var(--text-gray);
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.guarantee-content {
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-badge {
    width: 120px;
    height: 120px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 48px;
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.4);
}

.guarantee-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 16px;
}

.guarantee-text {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    background: var(--light-cream);
    padding: 80px 20px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

    .faq-item:hover {
        border-color: var(--primary-green);
    }

.faq-question {
    padding: 24px 28px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .faq-question::after {
        content: '+';
        font-size: 28px;
        color: var(--primary-green);
        transition: transform 0.3s ease;
    }

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 28px 24px 28px;
    max-height: 300px;
}

/* Final CTA Section */
.final-cta {
    background: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.urgency-text {
    background: var(--light-cream);
    padding: 16px 24px;
    border-radius: 8px;
    margin: 32px 0;
    color: var(--text-gray);
    border-left: 4px solid var(--accent-gold);
}

    .urgency-text strong {
        color: var(--primary-dark);
    }

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin: 48px 0;
}

.trust-badge-item {
    text-align: center;
}

.trust-badge-icon {
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.trust-badge-text {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .price-highlight {
        font-size: 56px;
    }

    .section-title {
        font-size: 32px;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .value-comparison {
        gap: 16px;
    }

    .arrow {
        transform: rotate(90deg);
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-dot {
        left: 3px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        gap: 32px;
    }
}

/* Animations on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Page Navigation */
.page-nav {
    background: #fff;
    border-bottom: 1px solid #e8e5e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

    .page-nav .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .page-nav a {
        text-decoration: none;
    }

    .page-nav img {
        height: 50px;
    }

    .page-nav nav {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .page-nav .back-link {
        color: #5a6c7d;
        font-size: 14px;
        font-weight: 500;
    }

    .page-nav .login-btn {
        color: #4a7c59;
        font-size: 14px;
        font-weight: 600;
        padding: 8px 20px;
        border: 2px solid #4a7c59;
        border-radius: 25px;
    }

        .page-nav .login-btn:hover {
            background: #4a7c59;
            color: #fff;
        }

/* Disclaimers */
.disc-section {
    background: #fff3cd;
    padding: 60px 20px;
    border-top: 3px solid #ffc107;
    margin-top: 80px;
}

    .disc-section .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .disc-section h2 {
        color: #856404;
        font-size: 28px;
        margin-bottom: 30px;
        text-align: center;
        font-weight: 700;
    }

.disc-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.disc-item {
    margin-bottom: 25px;
}

    .disc-item:last-child {
        margin-bottom: 0;
    }

    .disc-item strong {
        display: block;
        margin-bottom: 10px;
        font-size: 17px;
        color: #4a7c59;
        font-weight: 600;
    }

    .disc-item p {
        font-size: 15px;
        line-height: 1.8;
        color: #333;
        margin: 0;
    }

    .disc-item a {
        color: #4a7c59;
        text-decoration: underline;
        font-weight: 600;
    }

/* Footer */
.page-footer {
    background: #0b2e40;
    color: #fff;
    padding: 40px 0 20px;
}

    .page-footer .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

    .footer-grid h4 {
        color: #d4a574;
        margin-bottom: 15px;
        font-size: 16px;
    }

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-links a {
        color: #ccc;
        text-decoration: none;
        font-size: 14px;
    }

        .footer-links a:hover {
            color: #d4a574;
        }

.footer-bottom {
    border-top: 1px solid #4a7c59;
    padding-top: 20px;
    text-align: center;
}

    .footer-bottom p {
        color: #ccc;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-bottom .fda {
        color: #999;
        font-size: 12px;
        font-style: italic;
    }

    .footer-bottom a {
        color: #d4a574;
        text-decoration: none;
        font-weight: 600;
    }
