:root {
    /* Color Palette */
    --primary-pink: #F8E1E7;
    /* Soft Pink */
    --secondary-sand: #F3EFE9;
    /* Warm Sand Background */
    --accent-lavender: #E4D8EB;
    /* Gentle Lavender */
    --text-dark: #4A403A;
    /* Warm Dark Grey */
    --text-light: #7D7069;
    /* Softer brownish grey */
    --btn-color: #D67EA6;
    /* Stronger Pink/Rose for Buttons */
    --btn-hover: #C56B92;
    --white: #FFFFFF;

    /* Fonts */
    --font-heading: 'Dancing Script', cursive;
    --font-subheading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--secondary-sand);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography Utilities */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--text-dark);
}

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

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--btn-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 126, 166, 0.4);
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: var(--btn-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(214, 126, 166, 0.6);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(214, 126, 166, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(214, 126, 166, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(214, 126, 166, 0);
    }
}

/* HERO SECTION REFINED */
.hero-refine {
    position: relative;
    min-height: 85vh;
    /* Taller to fit the composition */
    background-image: url('assets/new_hero_bg.png');
    background-size: cover;
    background-position: center;
    /* Adjust if needed based on the image */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 4rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-container-refine {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text-center {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 900px;
}

.hero-refine h1 {
    font-family: 'Montserrat', sans-serif;
    /* More modern/clean as requested */
    font-size: 3.5rem;
    line-height: 1.1;
    color: #4A3B4E;
    /* Dark purple/grey from image */
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.hero-refine .subheadline {
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: #6D5E6F;
    font-weight: 400;
}

.hero-visuals {
    display: flex;
    justify-content: flex-end;
    /* Book to the right */
    width: 100%;
    flex: 1;
    position: relative;
    align-items: center;
}

.spacer {
    flex: 1;
    /* Pushes book to right, leaving space for the woman on the left in bg */
}

.book-container {
    flex: 0 0 45%;
    /* Adjust width of book container */
    text-align: right;
    margin-right: 5%;
}

.hero-book-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.3));
    transform: rotate(-3deg);
}

.hero-cta-container {
    margin-top: -2rem;
    /* Pull it up a bit */
    z-index: 5;
    text-align: center;
    width: 100%;
}

.cta-button-refine {
    display: inline-block;
    background-color: #C27ba0;
    /* Soft dark pink from image reference button */
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(194, 123, 160, 0.5);
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-button-refine:hover {
    transform: scale(1.05);
    background-color: #a65d83;
}

/* Responsive adjustments for the new hero */
@media (max-width: 768px) {
    .hero-refine {
        background-position: 20% center;
        /* Focus more on woman */
        padding-top: 2rem;
    }

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

    .book-container {
        margin-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    .hero-refine h1 {
        font-size: 2.2rem;
    }
}

/* IDENTITY SECTION */
.identity-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--btn-color);
}

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

.pain-points {
    list-style: none;
    margin: 2rem 0;
}

.pain-points li {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
}

.pain-points i {
    font-size: 1.5rem;
    color: var(--btn-color);
    width: 30px;
    text-align: center;
}

.reflection {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-top: 1rem;
}

.rounded-shadow {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* PRODUCT SECTION */
.product-section {
    padding: 80px 0;
    background-color: var(--primary-pink);
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 20px 20px;
}

.product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(214, 126, 166, 0.15);
}

.main-product-img {
    width: 100%;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.main-product-img:hover {
    transform: scale(1.02) rotate(1deg);
}

.product-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--btn-color);
}

.extra-detail {
    font-style: italic;
    color: var(--text-light);
}

/* BONUS SECTION */
.bonus-section {
    padding: 60px 0;
    background: var(--white);
}

.bonus-card {
    background: linear-gradient(135deg, #fff 0%, #fff5f8 100%);
    border: 2px dashed var(--btn-color);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.bonus-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--btn-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.bonus-content h3 {
    font-size: 2.2rem;
    color: var(--btn-color);
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.bonus-content h4 {
    font-family: var(--font-subheading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bonus-img img {
    max-width: 250px;
    transform: rotate(-5deg);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* TESTIMONIALS */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--secondary-sand);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testim-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.testim-author {
    font-weight: bold;
    color: var(--text-dark);
}

/* GUARANTEE */
.guarantee-section {
    padding: 60px 0;
    text-align: center;
}

.guarantee-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.guarantee-icon {
    font-size: 4rem;
    color: var(--btn-color);
}

.guarantee-text {
    text-align: left;
}

.guarantee-text h3 {
    font-family: var(--font-subheading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* OFFER SECTION */
.offer-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--primary-pink), white);
}

.offer-title {
    font-size: 3.5rem;
    margin-bottom: 3rem;
}

.bundle-mockup {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 3rem;
    height: 350px;
}

.bundle-item {
    max-height: 100%;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.bundle-item.main {
    z-index: 2;
    transform: scale(1.1);
}

.bundle-item.bonus {
    z-index: 1;
    transform: translateX(-30px) rotate(-10deg) scale(0.9);
}

.price-box {
    margin-bottom: 2rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
    display: block;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--btn-color);
    font-family: var(--font-subheading);
}

.big-cta {
    font-size: 1.5rem;
    padding: 20px 60px;
}

.payment-methods {
    margin-top: 2rem;
    color: var(--text-light);
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.payment-methods span {
    font-size: 1rem;
    margin-left: 10px;
}

/* FAQ SECTION */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-subheading);
}

.faq-question:hover {
    color: var(--btn-color);
}

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

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Approximate max height */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

footer {
    padding: 2rem;
    background: var(--text-dark);
    color: var(--secondary-sand);
    font-size: 0.9rem;
}

/* Footer Links */
.social-links {
    margin-bottom: 1.5rem;
}

.social-links a {
    color: var(--primary-pink);
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
}

.social-links a:hover {
    color: var(--white);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
}

.footer-link:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .identity-grid,
    .product-wrapper,
    .guarantee-content {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .guarantee-text {
        text-align: center;
    }

    .bonus-card {
        justify-content: center;
        text-align: center;
    }

    .bonus-img {
        margin-top: 2rem;
    }

    .bundle-item.bonus {
        transform: translateX(-10px) rotate(-10deg) scale(0.8);
    }
}