/* Reset & Base Styles */
:root {
    --primary-color: #D4A5A5;
    /* Soft Rose/Blush */
    --secondary-color: #9E7F68;
    /* Elegant Bronze/Goldish */
    --text-color: #4A4A4A;
    /* Dark Grey for text */
    --heading-color: #2C2C2C;
    /* Almost Black for headings */
    --bg-color: #FAF9F6;
    /* Warm White / Off-White */
    --white: #FFFFFF;
    --accent-light: #F2E6E6;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --radius: 12px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    font-size: 18px;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.4);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #c08e8e;
    border-color: #c08e8e;
    transform: translateY(-2px);
}

.btn-large {
    font-size: 1.2rem;
    padding: 20px 50px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff0f0 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.tagline {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero .highlight {
    color: var(--primary-color);
    font-style: italic;
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 20px 20px 0px var(--primary-color);
    z-index: 1;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: #777;
}

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

.benefit-card {
    background: var(--bg-color);
    padding: 40px;
    border-radius: var(--radius);
    transition: transform 0.3s ease;
    border: 1px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.benefit-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Modules Section */
.modules {
    padding: 100px 0;
    background-color: var(--accent-light);
}

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

.module-item {
    display: flex;
    gap: 30px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    align-items: flex-start;
}

.module-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-weight: 700;
    line-height: 1;
}

.module-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.module-content ul {
    list-style: none;
    margin-top: 20px;
}

.module-content ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.module-content ul li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: var(--white);
}

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

.testimonial-card {
    text-align: center;
    padding: 40px;
    background: var(--bg-color);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.quote {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.author {
    font-weight: 700;
    color: var(--secondary-color);
}

/* Pricing / CTA */
.pricing {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('magnetic_woman_hero.webp') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.pricing-content .section-title,
.pricing-content p {
    color: var(--white);
}

.offer-box {
    background: var(--white);
    color: var(--text-color);
    max-width: 600px;
    margin: 50px auto 0;
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.offer-box h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.offer-features {
    list-style: none;
    text-align: left;
    margin: 0 auto 30px;
    display: inline-block;
}

.offer-features li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.pricing-details {
    margin-bottom: 30px;
}

.original-price {
    font-size: 1.2rem;
    color: #999 !important;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.promo-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color) !important;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.limited-offer {
    font-size: 0.9rem;
    color: #d9534f !important;
    /* Reddish for urgency */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    /* Vibrant Green */
    margin: 15px 0;
    padding: 10px;
    border: 2px solid #27ae60;
    border-radius: 8px;
    display: inline-block;
    background-color: #eafaf1;
    /* Light Green Background */
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.2);
}

.guarantee {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888 !important;
}

/* Footer */
footer {
    background-color: #2C2C2C;
    color: #aaa;
    padding: 40px 0;
    text-align: center;
}

.footer-disclaimer {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #888;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-img {
        box-shadow: 10px 10px 0px var(--primary-color);
    }

    .module-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .module-content ul {
        text-align: left;
    }
}