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

:root {
    --purple: #7B5A8E;
    --purple-light: #9D7CBF;
    --gold: #E6C27A;
    --green: #9DBE9C;
    --cream: #FAF4F7;
    --cream-light: #F5F0F3;
    --white: #FFFFFF;
    --text-dark: #2D2D2D;
    --text-gray: #6B6B6B;
    --text-light: #8B8B8B;
    --border: #E5E5E5;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Navbar */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--purple);
}

.nav-cta {
    background: var(--green);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #88AB87;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 4rem 0 5rem;
    background: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    padding-right: 1rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--purple);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item-clean {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.check-icon {
    flex-shrink: 0;
}

.benefit-item-clean span {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.cta-button-hero {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    padding: 1.1rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(157, 190, 156, 0.3);
}

.cta-button-hero:hover {
    background: #88AB87;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(157, 190, 156, 0.4);
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
}

.image-card {
    background: var(--cream-light);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.ritual-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 1.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.ritual-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--purple);
    margin-bottom: 0.8rem;
}

.ritual-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.price-tag {
    border-top: 1px solid var(--border);
    padding-top: 1.2rem;
}

.offer-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--purple);
}

/* Trust Section */
.trust-section {
    background: var(--cream);
    padding: 3rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.trust-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 0.5rem;
}

.trust-label {
    color: var(--text-gray);
    font-size: 0.95rem;
}

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

.section-title-clean {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--purple);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle-clean {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--cream-light);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--purple-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--purple);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Content Section */
.content-section-clean {
    padding: 5rem 0;
    background: var(--cream);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.content-card-clean {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.content-card-clean:hover {
    border-color: var(--purple-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.content-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.content-card-clean h3 {
    font-size: 1.2rem;
    color: var(--purple);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.content-card-clean p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Bonus Section */
.bonus-section {
    padding: 5rem 0;
    background: var(--white);
}

.bonus-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.bonus-card {
    background: var(--cream-light);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(123, 90, 142, 0.15);
}

.bonus-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-icon {
    margin: 1.5rem auto 1rem;
    display: flex;
    justify-content: center;
}

.bonus-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--purple);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.bonus-subtitle {
    font-size: 0.9rem;
    color: var(--purple-light);
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.bonus-description {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bonus-value {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.value-old {
    font-size: 0.95rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.value-free {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-total {
    text-align: center;
    padding: 2rem;
    background: var(--cream);
    border-radius: 12px;
    border-left: 4px solid var(--purple);
}

.bonus-total p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.bonus-total strong {
    color: var(--purple);
    font-size: 1.3rem;
}

/* Testimonials */
.testimonials-clean {
    padding: 5rem 0;
    background: var(--white);
}

.testimonials-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card-clean {
    background: var(--cream-light);
    border-radius: 12px;
    padding: 2rem;
}

.stars-clean {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-card-clean p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author-clean {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--purple-light);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.author-clean strong,
.author-info strong {
    color: var(--purple);
    font-weight: 600;
}

.author-clean span,
.author-info span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Guarantee Section */
.guarantee-section {
    padding: 4rem 0;
    background: var(--cream);
}

.guarantee-box {
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-seal {
    flex-shrink: 0;
}

.guarantee-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--purple);
    margin-bottom: 1rem;
}

.guarantee-content p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section-clean {
    padding: 5rem 0;
    background: var(--white);
}

.cta-box-clean {
    background: var(--cream-light);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box-clean h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--purple);
    margin-bottom: 1rem;
}

.cta-box-clean > p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.price-box-clean {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.price-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.price-label-clean {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.price-value-clean {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--purple);
}

.price-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
}

.price-benefits-list span {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.cta-button-large {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    padding: 1.3rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(157, 190, 156, 0.3);
}

.cta-button-large:hover {
    background: #88AB87;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(157, 190, 156, 0.4);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* FAQ */
.faq-clean {
    padding: 5rem 0;
    background: var(--cream);
}

.faq-list-clean {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item-clean {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.faq-item-clean h3 {
    color: var(--purple);
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.faq-item-clean p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Footer */
.footer-clean {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
}

.footer-content-clean {
    text-align: center;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 1rem;
}

.footer-content-clean p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

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

.footer-links-clean a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links-clean a:hover {
    color: var(--purple);
}

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

    .hero-text {
        padding-right: 0;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps-grid,
    .content-grid,
    .testimonials-grid-clean {
        grid-template-columns: 1fr;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

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

    .hero {
        padding: 3rem 0;
    }

    .section-title-clean {
        font-size: 1.8rem;
    }

    .cta-box-clean {
        padding: 2.5rem 2rem;
    }

    .price-detail {
        flex-direction: column;
        gap: 1rem;
    }

    .security-badges {
        flex-direction: column;
        gap: 0.8rem;
    }
}
