@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=DM+Sans:wght@400;500;700&family=Indie+Flower&display=swap');

:root {
    --color-bg: #FAFAFA;
    --color-surface: #FFFFFF;

    /* VIBRANT PALETTE */
    --color-primary: #00B4D8;
    /* Electric Blue */
    --color-primary-dark: #0077B6;
    --color-accent: #FFD60A;
    /* Sunshine Yellow */
    --color-accent-hover: #FFC300;
    --color-mint: #90E0EF;
    --color-pink: #FFC8DD;

    --color-text-main: #003049;
    /* Dark Blue Navy (Better than black) */
    --color-text-light: #4A5759;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-hand: 'Indie Flower', cursive;

    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 40px;

    --shadow-pop: 0 10px 25px rgba(0, 180, 216, 0.25);
    --shadow-card: 0 8px 20px rgba(0, 0, 0, 0.06);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.5;
    font-size: 18px;
    /* Great for mobile readability */
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-text-main);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.4rem;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-sm);
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* UTILS */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.text-center {
    text-align: center;
}

.highlight-bg {
    background: var(--color-accent);
    padding: 2px 8px;
    border-radius: 6px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* BUTTONS - MOBILE FINGER FRIENDLY */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-pop);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    /* Mobile full width */
    cursor: pointer;
}

.btn:active {
    transform: scale(0.96);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    border: none;
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-text-main);
    border: 3px solid #000;
    box-shadow: 4px 4px 0px #000;
}

/* SECTIONS - COLOR BLOCKS */
section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

/* HERO V3 COLOR */
.hero-v3 {
    padding: 2rem 0 1rem 0;
    background: radial-gradient(circle at top right, #CAF0F8 0%, white 50%);
}

.hero-grid {
    display: flex;
    flex-direction: column-reverse;
    /* Image on top in DOM but bottom visually on mobile if needed, or normal flex */
    gap: 2rem;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transform: rotate(2deg);
    border: 6px solid white;
    box-shadow: var(--shadow-card);
}

.hero-pill {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--color-primary-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* BENTO MISTAKES - COLOR */
.section-struggle {
    background-color: #FFF0F3;
    /* Soft pink tint */
}

.mistakes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.bento-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.bento-text ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* MECHANISM - COLORFUL STEPS */
.section-steps {
    background: linear-gradient(180deg, #FFFFFF 0%, #E0F7FA 100%);
}

.steps-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 10px 10px 30px 10px;
    /* Padding bottom for scrollbar/shadow */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.step-card-visual {
    min-width: 260px;
    /* Ensure good width on mobile */
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    text-align: center;
    scroll-snap-align: center;
    border: 2px solid transparent;
}

.step-card-visual:nth-child(1) {
    border-color: var(--color-mint);
}

.step-card-visual:nth-child(2) {
    border-color: var(--color-accent);
}

.step-card-visual:nth-child(3) {
    border-color: var(--color-pink);
}

.step-card-visual:nth-child(4) {
    border-color: var(--color-primary);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem auto;
}

/* OUTCOME - GRADIENT */
.outcome-section {
    background: #EAFDF8;
    /* Minty */
    position: relative;
}

.outcome-section::before {
    /* Blob */
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--color-accent);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.check-list li {
    background: white;
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list li::before {
    content: "✓";
    color: var(--color-primary);
    font-weight: 900;
    font-size: 1.2rem;
}

/* PRICING V3 - POP */
.price-card-v3 {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--color-accent);
    position: relative;
}

.price-big {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    line-height: 1;
    margin: 1rem 0;
    text-shadow: 2px 2px 0px var(--color-accent);
}

/* FAQ STYLING REQUESTED */
.faq-item {
    background: white;
    border: 1px solid #EEE;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
}

summary {
    padding: 1.2rem;
    font-weight: 700;
    background: #F9FAFB;
    cursor: pointer;
    list-style: none;
    position: relative;
}

summary::after {
    content: "+";
    position: absolute;
    right: 1.5rem;
    font-size: 1.2rem;
    color: var(--color-primary);
}

details[open] summary::after {
    content: "-";
}

details p {
    padding: 1.2rem;
    color: var(--color-text-light);
    border-top: 1px solid #EEE;
}

/* STICKY CTA MOBILE */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 16px;
    right: 16px;
    background: var(--color-text-main);
    padding: 12px 20px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;

    /* Animation State - Hidden by default */
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta span {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.sticky-cta a {
    background: var(--color-accent);
    color: var(--color-text-main);
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* DESKTOP TWEAKS */
@media (min-width: 768px) {
    body {
        font-size: 20px;
    }

    h1 {
        font-size: 3.5rem;
    }

    .hero-grid {
        flex-direction: row;
        align-items: center;
    }

    .hero-grid>* {
        flex: 1;
    }

    .mistakes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-scroll {
        justify-content: center;
        overflow: visible;
        flex-wrap: wrap;
    }

    .step-card-visual {
        flex: 1;
        max-width: 250px;
    }

    .btn {
        width: auto;
    }

    .sticky-cta {
        display: none;
    }

    /* Hide sticky on desktop if preferred */
}