:root {
    --primary: #FFCB05;
    /* Warm Yellow/Gold */
    --primary-dark: #FFA000;
    --secondary: #4FC3F7;
    /* Sky Blue */
    --secondary-dark: #039BE5;
    --accent: #FF7043;
    /* Soft Orange */
    --text-dark: #2c3e50;
    --text-light: #546e7a;
    --bg-light: #FFFBF0;
    /* Very light cream */
    --white: #ffffff;
    --font-heading: 'Fredoka', cursive;
    --font-body: 'Nunito', sans-serif;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
    --radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
.btn {
    font-family: var(--font-heading);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utils */
.text-center {
    text-align: center;
}

.highlight {
    color: var(--secondary-dark);
}

.color-text {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #F4511E 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 81, 30, 0.4);
}

.btn-large {
    font-size: 1.5rem;
    padding: 20px 40px;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.btn-large small {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 5px;
    font-family: var(--font-body);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.arrow-bounce {
    animation: bounce 2s infinite;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #FFF3E0 0%, #FFFFFF 100%);
    padding-top: 60px;
    padding-bottom: 150px;
    /* Space for wave */
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.tag {
    display: inline-block;
    background: #E1F5FE;
    color: var(--secondary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.feature-highlight {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
    background: var(--accent);
    display: inline-block;
    padding: 5px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(255, 112, 67, 0.3);
    transform: rotate(-1deg);
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.price-hero {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
}

.old-price {
    text-decoration: line-through;
    color: #90A4AE;
    font-size: 1.2rem;
}

.new-price {
    color: var(--accent);
    font-size: 2rem;
    font-weight: 700;
}

.guarantee-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Carousel */
.carousel-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    margin-top: 20px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: scroll 25s linear infinite;
    padding-left: 15px;
}

.carousel-slide {
    height: 250px;
    width: auto;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.carousel-slide:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .carousel-container {
        width: 100vw;
        margin-left: -20px;
        margin-right: -20px;
    }

    .carousel-slide {
        height: auto;
        width: 45vw;
    }
}

/* Carousel */


/* Mockup Images */
.main-book-mockup-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
    transform: scale(1.1) rotate(-3deg);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-book-mockup-img:hover {
    transform: scale(1.2) rotate(0deg);
}

.before-after-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.before-after-img:hover {
    transform: scale(1.02);
}


.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Pain Points */
.pain-points {
    padding: 80px 0;
    background: white;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.icon-box.danger {
    background: #FFEBEE;
    color: #D32F2F;
}

.badge {
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.transition-message {
    text-align: center;
    margin-top: 60px;
}

.transition-message p {
    font-size: 1.5rem;
    color: var(--secondary-dark);
    margin-bottom: 20px;
}

.transition-message i {
    font-size: 2rem;
    color: var(--secondary);
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background: #FDFDFD;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-list li i {
    color: #4CAF50;
    margin-right: 15px;
    font-size: 1.3rem;
}



/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: #E3F2FD;
    /* Light Blue BG */
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-dark);
}

.benefits-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-dark);
    font-weight: 700;
    gap: 15px;
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--accent);
    background: white;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

/* Audience */
.audience {
    padding: 100px 0;
    background: white;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.audience-box,
.learning-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius);
    border: 2px dashed #FFD54F;
}

.learning-box {
    background: #E8F5E9;
    border-color: #81C784;
}

.audience-box h3,
.learning-box h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary-dark);
    font-weight: bold;
}

.check-list.gold li::before {
    color: #43A047;
}

/* Bonuses */
.bonuses {
    padding: 80px 0;
    background: #FFF8E1;
}

.bonus-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.gift-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* Offer */
.offer {
    padding: 100px 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png'), linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.offer-card {
    background: white;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    color: var(--text-dark);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.offer-header {
    background: var(--primary);
    padding: 30px;
    text-align: center;
}

.offer-header h3 {
    margin: 0;
    font-size: 2rem;
    color: var(--text-dark);
}

.offer-header p {
    margin: 5px 0 0;
    opacity: 0.9;
}

.offer-body {
    padding: 40px;
    text-align: center;
}

.price-box {
    margin-bottom: 15px;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    font-weight: 700;
}

.val {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.period {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

.savings {
    color: #E53935;
    font-weight: 700;
    margin-bottom: 30px;
    background: #FFEBEE;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
}

.offer-includes {
    list-style: none;
    text-align: left;
    margin: 0 auto 30px;
    width: fit-content;
}

.offer-includes li {
    margin-bottom: 10px;
}

.offer-includes i {
    color: #43A047;
    margin-right: 10px;
}

.offer-footer {
    background: #F5F5F5;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: left;
}

.guarantee-icon {
    width: 50px;
    height: 50px;
}

.bible-verse {
    margin-top: 40px;
    font-size: 1.5rem;
    color: white;
    opacity: 0.9;
    font-family: var(--font-heading);
}

/* Footer */
.footer {
    background: #263238;
    color: #CFD8DC;
    padding: 60px 0;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.6;
    max-width: 600px;
    margin: 20px auto 0;
}

/* Notification Popup */
.notification-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 5px solid var(--accent);
    max-width: 320px;
}

.notification-popup.active {
    transform: translateX(0);
}

.notif-icon {
    width: 40px;
    height: 40px;
    background: #E8F5E9;
    color: #43A047;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.notif-content p {
    margin: 0;
    line-height: 1.3;
    font-size: 0.9rem;
}

.notif-content strong {
    color: var(--text-dark);
}

.notif-content small {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .price-hero {
        justify-content: center;
    }

    .guarantee-text {
        justify-content: center;
    }

    .btn-large {
        width: 100%;
        font-size: 1.2rem;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .val {
        font-size: 4rem;
    }
}