:root {
    /* Color Palette */
    --bg-light: #FDF7FC;
    --bg-gradient-start: #F9E8F3;
    --bg-gradient-end: #E8F0FE;

    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --accent-color: #2D2D2D;
    /* Dark elegant for buttons */
    --accent-hover: #000000;

    --purple-soft: #D8B4E2;
    --blue-soft: #AECCF2;
    --gold: #D4AF37;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;

    /* Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 40px rgba(216, 180, 226, 0.4);

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg) var(--spacing-sm);
    /* Changed to 180deg for seamless vertical flow */
    background: linear-gradient(180deg, var(--bg-gradient-start) 0%, #ffffff 50%, var(--bg-gradient-end) 100%);
    overflow: hidden;
}

/* Abstract Background Glows */
.hero-background-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(216, 180, 226, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
    animation: pulseGlow 8s infinite alternate;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* ... existing styles ... */
/* NOTE: Including all intermediate styles from Step 27 implicitly for brevity in this thought trace, 
   but the actual tool call needs the full content. */

/* Problem Section */
.problem-section {
    padding: var(--spacing-lg) var(--spacing-sm);
    /* Continues exactly where hero left off (bg-gradient-end) and fades to white */
    background: linear-gradient(180deg, var(--bg-gradient-end) 0%, #ffffff 100%);
    text-align: center;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    /* Reduced from md */
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Badge */
.badge-container {
    margin-bottom: var(--spacing-xs);
}

.badge {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Headline */
.hero-headline {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--text-primary);
    margin-bottom: 0;
    /* Removed margin, relying on gap */
}

.text-italic {
    font-style: italic;
    font-weight: 400;
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: rgba(216, 180, 226, 0.4);
    /* Soft purple underline */
    z-index: -1;
    transform: skewX(-10deg);
}

.hero-subheadline {
    font-size: 1.25rem;
    max-width: 600px;
    color: var(--text-secondary);
    margin-bottom: 0;
    /* Removed margin, relying on gap */
    font-weight: 400;
}

/* Visuals (GIF) */
.hero-visual {
    margin: 0;
    /* Removed all margins, relying on flex gap */
    position: relative;
    max-width: 900px;
    width: 100%;
    border-radius: 20px;
    perspective: 1000px;
}

.visual-wrapper {
    position: relative;
    border-radius: 20px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    background: #fff;
    padding: 10px;
    /* Frame border */
    transform: rotateX(2deg);
    transition: transform 0.3s ease;
}

.visual-wrapper:hover {
    transform: rotateX(0deg) scale(1.02);
}

.hero-gif {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    /* Inner radius */
}

/* Benefits */
.benefits-container {
    margin: var(--spacing-xs) 0;
    width: 100%;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    color: var(--gold);
    /* Or a nice green, but keeping with theme palette */
    font-weight: bold;
}

/* CTA */
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    /* Reduced from md to keep it tight */
}

.btn {
    display: inline-block;
    padding: 18px 48px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background-color: #4A0E4E;
    /* Dark Purple */
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Button Shine Effect */
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

.cta-subtext {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        opacity: 0.3;
        transform: translateX(-50%) scale(0.9);
    }

    100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1.1);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: clamp(3rem, 5vw, 4rem);
    }

    .container {
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: var(--spacing-md) var(--spacing-xs);
        min-height: auto;
        /* Allow content to dictate height on mobile */
    }

    .hero-background-glow {
        width: 100%;
        height: 400px;
        top: -50px;
        opacity: 0.4;
    }

    .hero-headline {
        font-size: 2.5rem;
        /* Approximately 40px */
        margin-bottom: 0;
    }

    .hero-subheadline {
        font-size: 1.1rem;
        padding: 0 var(--spacing-sm);
    }

    .btn {
        padding: 16px 32px;
        font-size: 1.1rem;
        width: auto;
        min-width: 250px;
        max-width: 90%;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
        /* 32px standard for mobile H1 */
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .visual-wrapper {
        padding: 6px;
        border-radius: 12px;
    }

    .hero-gif {
        border-radius: 8px;
    }

    .cta-container {
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 100%;
        font-size: 0.9rem;
        padding: 14px 12px;
        min-width: 0;
    }
}


/* Problem Section */
.problem-section {
    padding: var(--spacing-md) var(--spacing-sm) 0 var(--spacing-sm);
    /* Reduced top padding */
    /* Continues exactly where hero left off (bg-gradient-end) and fades to white */
    background: linear-gradient(180deg, var(--bg-gradient-end) 0%, #ffffff 100%);
    text-align: center;
    position: relative;
}

.section-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.section-subtext {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.problem-item {
    font-size: 1.1rem;
    color: var(--text-secondary);
    background: #FFFAFC;
    /* Very subtle pink tint for problem cards */
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    text-align: left;
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateX(5px);
    border-color: rgba(216, 180, 226, 0.4);
}

.cross-icon {
    color: #D64F4F;
    /* Soft Red for 'X' */
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(214, 79, 79, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.check-circle-icon {
    color: #10B981;
    /* Vibrant Green */
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(16, 185, 129, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Quote */
.quote-container {
    margin-top: var(--spacing-md);
    /* Reduced from lg */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: var(--spacing-sm);
    /* Removed box styling for free flow */
}

.problem-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.quote-author {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: normal;
    font-weight: 600;
}

/* Solution Block */
.solution-block {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-md);
    /* border-top removed */
    /* Subtle separator */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: var(--spacing-md);
    /* Reduced from lg */
    /* Added top margin */
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.solution-headline {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    /* Increased size */
    color: var(--text-primary);
    line-height: 1.3;
}

/* Slider / Slideshow */
.heres-how-text {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-top: var(--spacing-md);
    font-family: 'Playfair Display', serif;
    /* Matching headlines slightly */
}

.slider-instruction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: var(--spacing-xs);
    /* Reduced spacing between "Here's how" and swipe text */
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.7;
}

.arrow-anim {
    display: inline-block;
    animation: slideRight 1.5s infinite;
}

@keyframes slideRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.slider-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-sm) var(--spacing-md) var(--spacing-sm);
    margin: 0 auto;
    width: 100%;
    /* Hide scrollbar */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

.slider-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.slide-item {
    flex: 0 0 85%;
    /* Shows a bit of the next slide */
    max-width: 400px;
    scroll-snap-align: center;
    scroll-margin: 0 var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.slide-caption {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-align: center;
    font-weight: 600;
}

.slide-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.slide-item:hover .slide-image {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.slide-spacer {
    flex: 0 0 1px;
    /* End padding */
}

/* Responsive adjustments for slider */
@media (min-width: 768px) {
    .slide-item {
        flex: 0 0 45%;
        /* Show 2 at a time on desktop */
    }
}

.features-section {
    padding: 3rem var(--spacing-sm) var(--spacing-lg) var(--spacing-sm);
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 30%, var(--bg-gradient-start) 100%);
    text-align: center;
}

.features-section h2 {
    margin-top: 0;
}

/* Reviews Section */
.reviews-section {
    padding: var(--spacing-md) var(--spacing-sm) var(--spacing-lg) var(--spacing-sm);
    /* Soft white to pink gradient for reviews */
    background: linear-gradient(180deg, var(--bg-gradient-start) 0%, #ffffff 100%);
    text-align: center;
    position: relative;
}

.reviews-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-sm) var(--spacing-md) var(--spacing-sm);
    margin: 0 auto;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 100%;
    max-width: 600px;
    /* Increased max-width for better single card readability */
    scroll-snap-align: center;
    background: #ffffff;
    padding: 40px;
    /* Increased padding */
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    /* Center text for single card */
    height: auto;
    min-height: 200px;
    transition: transform 0.3s ease;
    margin: 0 auto;
    /* Center the card itself effectively */
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-content {
    font-size: 1.25rem;
    /* Slightly larger text */
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.review-spacer {
    flex: 0 0 1px;
}

/* Dots */
.review-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}


.dot.active {
    background-color: var(--text-primary);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 5px !important;
    /* Final tight adjustment */
    left: 0;
    width: 100%;
    background: transparent;
    /* Removed white background */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-top: none;
    padding: 20px;
    /* Standard padding */
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: none;
    pointer-events: none;
    /* Let clicks pass through empty space */
}

.sticky-cta .container {
    pointer-events: auto;
    /* Re-enable clicks on the button container */
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-btn {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    padding: 16px 32px;
    /* Adjusted padding for balance */
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
    /* Stronger shadow since no bar */
}

.sticky-main-text {
    font-size: 1.4rem;
    /* Increased size significantly */
    font-weight: 700;
    line-height: 1.1;
    /* Tighter line height for tight stacking */
}

.sticky-micro-text {
    font-size: 0.7rem;
    /* Slightly smaller for contrast */
    font-weight: 500;
    opacity: 0.9;
    margin-top: 2px;
    /* Closer to main text */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Final CTA Section */
.final-cta-section {
    padding: var(--spacing-sm) var(--spacing-sm);
    text-align: center;
    background: #ffffff;
}

.final-headline {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    /* Matching solution-headline */
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

.final-subheadline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.final-btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* Softer shadow for static btn */
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-lg) var(--spacing-sm) var(--spacing-md) var(--spacing-sm);
    /* Small bottom padding */
    background: #ffffff;
    /* Clean background */
    text-align: left;
    /* FAQs usually left aligned */
}

.faq-headline {
    text-align: center;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

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

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #4f46e5;
    /* Primary color hint */
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Arbitrary large height */
    opacity: 1;
}

/* Customer Support Section */
.support-section {
    padding: var(--spacing-md) var(--spacing-sm);
    /* Reduced top padding */
    text-align: center;
    background: #ffffff;
    /* Clean white background */
    padding-bottom: 50px;
    /* Ensure space for scrolling */
}

.support-headline {
    font-size: 2.5rem;
    /* Increased size */
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.support-subtext {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.support-subtext a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
}