:root {
    /* Mandated Palette */
    --primary: #970290;
    --bg-dark-purple: #2B0029;
    --bg-black: #0E0E0E;
    --text-white: #F7F4F7;
    --text-grey: #CFC6CF;
    --accent: #C04BCF;

    /* Spacing & Layout */
    --container-width: 1140px;
    --section-padding: 80px 0;
    --radius-pill: 9999px;
    --radius-card: 24px;

    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-grey);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.spacer-sm {
    height: 24px;
}

.spacer-md {
    height: 48px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1.25rem 3rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(151, 2, 144, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    background-color: #A824A1;
    /* Slightly lighter purple */
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(151, 2, 144, 0.5);
}

.cta-button.pulse {
    animation: pulse-purple 2s infinite;
}

.cta-button.big-pulse {
    font-size: 1.35rem;
    padding: 1.5rem 4rem;
    animation: pulse-purple 2s infinite;
}

@keyframes pulse-purple {
    0% {
        box-shadow: 0 0 0 0 rgba(151, 2, 144, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(151, 2, 144, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(151, 2, 144, 0);
    }
}

/* Sections */
section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 3rem;
}

/* 1. Hero Section - Impactful Gradient */
.hero {
    background: radial-gradient(circle at center, #6e0069 0%, #2B0029 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Add a subtle overlay texture effect if desired, but sticking to solid gradients for cleanness */

.headline {
    font-size: 3rem;
    /* 48px+ */
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.subheadline {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-white);
    /* Brighter than grey for hero */
    opacity: 0.9;
}

/* 2. Identification - Dark Purple Bg */
.identification {
    background-color: var(--bg-dark-purple);
    text-align: center;
}

.pain-points-wrapper {
    background: rgba(14, 14, 14, 0.4);
    border: 1px solid rgba(192, 75, 207, 0.2);
    /* Accent border */
    border-radius: var(--radius-card);
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.text-block {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.highlight-phrase {
    font-size: 1.8rem;
    color: var(--accent);
    margin-top: 2rem;
    line-height: 1.3;
}

/* 3. Mechanism - Black Bg */
.mechanism {
    background-color: var(--bg-black);
}

.benefits-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: var(--bg-dark-purple);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-card);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.icon-circle {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.benefit-card p {
    font-size: 1.1rem;
    color: var(--text-white);
    margin: 0;
}

.text-flow {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.text-flow p {
    font-size: 1.25rem;
    color: var(--text-grey);
}

.text-flow strong {
    color: var(--accent);
    font-weight: 600;
}

/* 4. Guide - Dark Purple Bg */
.guide {
    background: linear-gradient(180deg, var(--bg-dark-purple) 0%, #1a0019 100%);
}

.guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.guide-title {
    color: var(--accent);
    text-align: left;
    margin-bottom: 2rem;
}

.guide-desc {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--accent);
    max-width: 400px;
    margin: 0 auto;
}

.image-frame img {
    width: 100%;
    display: block;
}

.expert-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(43, 0, 41, 0.9) 0%, transparent 100%);
    color: var(--text-white);
    padding: 2rem 1rem 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* 5. Purchase Plan - Standout */
.purchase-plan {
    background-color: var(--bg-black);
    padding-top: 40px;
}

.plan-card {
    background: linear-gradient(145deg, #380036 0%, #2B0029 100%);
    border: 1px solid var(--primary);
    border-radius: var(--radius-card);
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(151, 2, 144, 0.15);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-title {
    font-size: 2rem;
    margin-top: 1rem;
    color: var(--text-white);
}

.price-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 1.5rem 0;
    color: var(--accent);
}

.currency {
    font-size: 1.5rem;
    margin-top: 10px;
    font-weight: 600;
}

.value {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
}

.payment-type {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.plan-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    display: inline-block;
}

.plan-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.plan-list li::before {
    content: "✓";
    color: var(--accent);
    margin-right: 10px;
    font-weight: bold;
}

/* 6. Deliverables - Dark Purple */
.deliverables {
    background-color: var(--bg-dark-purple);
}

.checklist-box {
    background: rgba(14, 14, 14, 0.6);
    padding: 3rem;
    border-radius: var(--radius-card);
    max-width: 800px;
    margin: 0 auto;
}

.check-list-modern {
    list-style: none;
    display: grid;
    gap: 1.5rem;
}

.check-list-modern li {
    font-size: 1.1rem;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

/* 7. Social Proof - Black with Dark Cards */
.social-proof {
    background-color: var(--bg-black);
    position: relative;
}

.carousel-wrapper {
    position: relative;
    max-width: 600px;
    /* Video aspect ratio driven */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-card);
    aspect-ratio: 9/16;
    background: #000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.testimonial-card img,
.testimonial-card iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-arrow {
    background: rgba(151, 2, 144, 0.2);
    border: 1px solid var(--primary);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    transition: all 0.2s;
}

.carousel-arrow:hover {
    background: var(--primary);
}

.carousel-arrow.prev {
    left: -70px;
}

.carousel-arrow.next {
    right: -70px;
}

.proof-anchor-text {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
    color: var(--text-grey);
}

.arrow-down {
    text-align: center;
    font-size: 2rem;
    color: var(--accent);
    margin-top: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* 8. Benefits - Dark Purple */
.benefits-list-section {
    background: var(--bg-dark-purple);
}

.benefits-vertical {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.benefit-row {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid transparent;
}

.benefit-row:hover {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

.check-circle {
    background: var(--primary);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-row p {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-white);
}

/* 9. FAQ - Black */
.faq {
    background-color: var(--bg-black);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-card {
    background: var(--bg-dark-purple);
    padding: 2rem;
    border-radius: var(--radius-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-card h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.faq-card p {
    margin: 0;
    font-size: 1rem;
}

/* 10. Offer - Hero Gradient reuse */
.offer-section {
    background: radial-gradient(circle at center, #6e0069 0%, #2B0029 100%);
    text-align: center;
}

.price-display {
    color: #fff;
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    line-height: 1;
}

.price-display .currency {
    font-size: 1.5rem;
    margin-top: 10px;
    font-weight: 600;
}

.price-display .amount {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -2px;
}

.offer-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--text-white);
}

.cta-sub {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-grey);
}

/* 11. Guarantee - Solid Black */
.guarantee {
    background-color: var(--bg-black);
}

.guarantee-badge-wrapper {
    background: linear-gradient(145deg, #1a1a1a 0%, #0E0E0E 100%);
    border: 1px solid rgba(192, 75, 207, 0.3);
    padding: 3rem;
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(151, 2, 144, 0.1);
    position: relative;
    overflow: hidden;
}

.guarantee-badge-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.guarantee-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(192, 75, 207, 0.6));
}

.guarantee-content h3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.guarantee-content h3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.simple {
    color: var(--accent);
    font-weight: 600;
}

/* 12. Footer - Dark Purple */
.closing {
    background-color: var(--bg-dark-purple);
    text-align: center;
    padding-bottom: 120px;
    /* Space for bottom interaction */
}

.final-message {
    font-size: 2rem;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    :root {
        --container-width: 100%;
        --section-padding: 60px 0;
    }

    .headline {
        font-size: 2.25rem;
    }

    .subheadline {
        font-size: 1.1rem;
    }

    .benefits-cards-row {
        grid-template-columns: 1fr;
    }

    .guide-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .guide-title {
        text-align: center;
    }

    /* Fix image order if needed, but text first is good for "Who will guide you" context on mobile? 
       Actually user usually wants visual of expert first or inline. 
       Let's stick to normal flow (Content then Image, or we can swap).
       Default HTML is Content -> Visual.
    */
    .guide-grid {
        display: flex;
        flex-direction: column-reverse;
        /* Visual on top? */
    }

    .guide-grid .guide-content {
        order: 2;
    }

    .guide-grid .guide-visual {
        order: 1;
        margin-bottom: 20px;
    }

    .carousel-arrow {
        display: none;
        /* Hide arrows on mobile as requested previously */
    }

    .carousel-wrapper {
        max-width: 100%;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-badge-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .cta-button {
        width: 100%;
        padding: 1.25rem 1rem;
    }

    .carousel-container {
        /* ensure good aspect ratio on mobile */
        aspect-ratio: 9/16;
    }
}