body {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', Arial, sans-serif;
    background: #fff;
    color: #2d1e3a;
}

header {
    background: #482f66;
    color: #fff;
    padding-top: 20px;
    padding-bottom: 12px;
    text-align: center;
}

#title_header {
    display: inline-block;
    letter-spacing: 2px;
    font-size: 36px;
}

#logo_part2 {
    letter-spacing: 2px;
    padding-left: 8px;
    padding-right: 8px;
    background-color: #fff;
    color: #482f66;
    border-radius: 20px;
    border-bottom-left-radius: 12px;
    border-top-right-radius: 12px;
    margin-left: 8px;
}

.subtitle {
    margin-top: 8px;
    color: #d1c4e9;
}

/* ------------------------------------------------- */

#section1 {
    padding-top: 80px;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: row;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
}

#section1_left, #section1_right {
    width: 50%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding-right: 80px;
    padding-left: 80px;
}

#section1_left {
    justify-content: flex-end;
}

#section1_right {
    justify-content: flex-start;
}

#section1_image {
    border-radius: 12px;
    width: 300px;
    height: 300px;
    float: right;
    box-shadow: 0 16px 48px rgba(72, 47, 102, 0.15);
    transition: transform 0.3s ease;
}

#section1_image:hover {
    transform: translateY(-6px);
}

#section1_right_text_wrapper {
    max-width: 440px;
}

/* Hero Badge */
.hero-badge {
    background: linear-gradient(135deg, #482f66, #583f76);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(72, 47, 102, 0.2);
}

#section1_right_text_wrapper h1 {
    color: #482f66;
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #482f66, #583f76);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #482f66, #583f76);
    border-radius: 2px;
}

#section1_right_text_wrapper #section1_right_text {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
}

/* Hero Benefits */
.hero-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    font-size: 16px;
    font-weight: 600;
    color: #482f66;
    margin-bottom: 8px;
    padding: 8px 0;
}

/* CTA Container */
.cta-container {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cta-button {
    font-size: 16px;
    background-color: #381f56;
    border: 1px solid #fff1;
    outline: 0px;
    color: #fff;
    border-radius: 32px;
    padding: 12px 24px;
    font-weight: bold;
    box-shadow: 2px 2px 5px #0008;
    -webkit-transition: color 0.4s, transform 0.2s;
    transition: color 0.4s, transform 0.2s;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, #482f66, #583f76);
    padding: 16px 32px;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(72, 47, 102, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #482f66;
    border: 2px solid #482f66;
    box-shadow: none;
}

.cta-button:hover {
    transform: scale(1.04);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #381f56, #482f66);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(72, 47, 102, 0.4);
}

/* Trust Signals */
.trust-signals {
    color: #666;
    font-size: 14px;
    margin: 0;
    text-align: center;
}

#section1_right_text_wrapper a {
    font-weight: 600;
    color: #482f66;
}

/* ------------------------------------------------- */

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Features Section */
#section2 {
    padding-top: 80px;
    padding-bottom: 100px;
    background: #fff;
}

#section2 h2 {
    text-align: center;
    color: #482f66;
    font-size: 32px;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(72, 47, 102, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(72, 47, 102, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 8px rgba(72, 47, 102, 0.2));
}

.feature-card h3 {
    color: #482f66;
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 700;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Social Proof Section */
#section3 {
    padding-top: 80px;
    padding-bottom: 100px;
    background: #482f66;
    color: #fff;
}

#section3 h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 16px;
    color: #d1c4e9;
    font-weight: 600;
}

.testimonial {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #d1c4e9;
}

/* How It Works Section */
#section4 {
    padding-top: 80px;
    padding-bottom: 100px;
    background: #fff;
}

#section4 h2 {
    text-align: center;
    color: #482f66;
    font-size: 32px;
    margin-bottom: 60px;
    font-weight: 700;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #482f66;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 4px 16px rgba(72, 47, 102, 0.3);
    transition: transform 0.3s ease;
}

.step-card:hover .step-number {
    transform: translateY(-3px);
}

.step-card h3 {
    color: #482f66;
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
}

.step-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Pricing Section */
#section5 {
    padding-top: 80px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
}

#section5 h2 {
    text-align: center;
    color: #482f66;
    font-size: 32px;
    margin-bottom: 60px;
    font-weight: 700;
}

.pricing-card {
    background: #fff;
    max-width: 400px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(72, 47, 102, 0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(72, 47, 102, 0.2);
}

.pricing-header h3 {
    color: #482f66;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 24px;
    color: #482f66;
    font-weight: 600;
}

.amount {
    font-size: 48px;
    color: #482f66;
    font-weight: 700;
}

.period {
    font-size: 16px;
    color: #666;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    color: #482f66;
    font-weight: 600;
}

.pricing-cta {
    width: 100%;
    padding: 16px 24px;
    font-size: 18px;
    margin-bottom: 16px;
}

.trial-text {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* FAQ Section */
#section6 {
    padding-top: 80px;
    padding-bottom: 100px;
    background: #fff;
}

#section6 h2 {
    text-align: center;
    color: #482f66;
    font-size: 32px;
    margin-bottom: 60px;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9ff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #482f66;
}

.faq-item h3 {
    color: #482f66;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA Section */
#section7 {
    padding-top: 80px;
    padding-bottom: 100px;
    background: #482f66;
    color: #fff;
    text-align: center;
}

#section7 h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    color: #d1c4e9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta {
    font-size: 20px;
    padding: 16px 32px;
    margin-bottom: 20px;
    background: #fff;
    color: #482f66;
    border: none;
}

.final-cta:hover {
    background: #f0f0f0;
}

.guarantee {
    color: #d1c4e9;
    font-size: 16px;
    margin: 0;
}

/* ------------------------------------------------- */

footer {
    text-align: center;
    padding-top: 24px;
    padding-bottom: 24px;
    color: #a89cc2;
    background: #fff;
}

/* Responsive Design */
@media (max-width: 800px) {
    #section1 {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    #section1_left, #section1_right {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    #section1_left, #section1_right {
        justify-content: center;
    }

    #section1_image {
        width: 280px;
        height: 280px;
        margin-bottom: 12px;
        margin-top: 48px;
    }

    #section1_right_text_wrapper h1 {
        font-size: 32px;
    }

    .cta-container {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        margin: 0 20px;
    }

    #section2 h2, #section3 h2, #section4 h2, #section5 h2, #section6 h2, #section7 h2 {
        font-size: 28px;
    }

    .section-container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .feature-card, .step-card {
        padding: 30px 20px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .faq-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .amount {
        font-size: 36px;
    }

    #section1_right_text_wrapper h1 {
        font-size: 28px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}