:root {
    --primary: #FF6B6B;
    --primary-dark: #EE5253;
    --secondary: #4ECDC4;
    --accent: #FFE66D;
    --dark: #2D3436;
    --light: #F7FFF7;
    --gray: #dfe6e9;
    --text: #2d3436;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Fredoka', sans-serif;
    color: var(--dark);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Navbar */
.navbar {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .highlight {
    color: var(--primary);
}

.nav-btn {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s;
}

.nav-btn:hover {
    transform: scale(1.05);
    background: var(--primary-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fff 0%, #f0fdfc 100%);
    padding-top: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    padding-bottom: 6rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-text {
    flex: 1;
}

.tag {
    background: var(--accent);
    color: var(--dark);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight-text {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--accent);
    opacity: 0.4;
    z-index: -1;
    border-radius: 5px;
}

.hero-sub {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 2rem;
}

.hero-list {
    list-style: none;
    margin-bottom: 2.5rem;
    display: inline-block;
    text-align: left;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-list i {
    color: var(--secondary);
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
    transition: all 0.3s;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(255, 107, 107, 0.4);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.img-placeholder {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: #dfe6e9;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #b2bec3;
    box-shadow: 20px 20px 0 var(--accent);
    overflow: hidden;
}

.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Problem Section */
.problem-section {
    padding: 4rem 0 1rem 0;
    background: white;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--dark);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    text-align: center;
}

.arrow-divider {
    font-size: 2.5rem;
    color: #cba246;
    /* Gold color from image */
    margin: 1.5rem 0;
    text-align: center;
}

.arrow-divider.dark {
    color: #4a3b58;
    /* Dark purple from image */
}

.myth-block {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: center;
}

.highlight-quote {
    background: #fff5d7;
    /* Light yellow bg */
    color: #e6b31e;
    /* Darker yellow text */
    font-weight: 700;
    padding: 0.5rem 1rem;
    display: inline-block;
    margin: 0.5rem 0;
    font-size: 1.4rem;
}

.pain-points-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.pain-item {
    border: 1px dashed #ff9f9f;
    background: #fff0f0;
    color: #d63031;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pain-item i {
    font-size: 1.4rem;
    transform: rotateY(180deg);
    /* Flip thumbs down if needed, or just use regular */
}

.worse-part {
    font-size: 1.3rem;
    color: var(--dark);
    margin-top: 2rem;
    line-height: 1.5;
    text-align: center;
}

.highlight-yellow {
    background: #fff5d7;
    color: #e6b31e;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
}

/* Explanation Section */
.explanation-section {
    padding: 1rem 0 1rem 0;
    background: #fdfdfd;
}

.warning-icon {
    font-size: 4rem;
    color: #f1c40f;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
    text-align: center;
}

.explanation-box {
    border: 2px dashed #a29bfe;
    /* Light purple/blue dashed border */
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    position: relative;
    text-align: center;
}

.explanation-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.explanation-box p {
    font-size: 1.2rem;
    color: #636e72;
    line-height: 1.6;
}

.calm-down-block {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.calm-down-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.calm-down-block p {
    font-size: 1.2rem;
    color: #636e72;
    line-height: 1.6;
}

.arrow-divider.green {
    color: #2ecc71;
    /* Green color */
}

/* Why Choose Section */
.why-choose-section {
    padding: 1rem 0 5rem 0;
    background: white;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.reason-item {
    text-align: center;
    padding: 1.5rem;
}

.reason-item i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.reason-item h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.reason-item p {
    color: #636e72;
}

.did-you-know-card {
    background: var(--accent);
    color: var(--dark);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    box-shadow: 0 10px 20px rgba(255, 230, 109, 0.3);
    border: 3px solid white;
}

.did-you-know-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.did-you-know-card p {
    font-size: 1.1rem;
    font-weight: 700;
}

.material-showcase {
    text-align: center;
    margin-top: 2rem;
}

.showcase-img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.showcase-img:hover {
    transform: scale(1.02);
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.color-1 {
    background: var(--primary);
}

.color-2 {
    background: var(--secondary);
}

.color-3 {
    background: #a55eea;
}

.color-4 {
    background: #fa8231;
}

.text-box h3 {
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: white;
    overflow: hidden;
    /* Hide overflow for carousel */
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 20px;
}

.testimonials-section .section-header h2 {
    display: inline-block;
    /* Fix for rotation transform alignment */
    margin: 0 auto 1rem;
}

/* Carousel Container */
.testimonial-carousel {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    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);
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    animation: scroll 40s linear infinite;
    width: max-content;
    padding: 2rem 0;
    /* Space for hover effects */
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
        /* Adjust based on gap */
    }
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    width: 350px;
    /* Fixed width for carousel */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.stars {
    color: #f1c40f;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    color: #636e72;
    font-size: 1rem;
    line-height: 1.5;
}

/* Recap Section */
.recap-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.recap-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border: 2px dashed var(--secondary);
    max-width: 800px;
    margin: 0 auto;
}

.recap-box h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark);
}

.recap-list {
    list-style: none;
}

.recap-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.recap-list li:last-child {
    border-bottom: none;
}

.recap-list i {
    color: var(--success, #2ecc71);
}

.recap-list .highlight-item {
    background: #e0f2f1;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--secondary);
    justify-content: center;
}

/* Steps Section */
.steps-section {
    padding: 5rem 0;
    background: var(--secondary);
    color: white;
    text-align: center;
}

.steps-section h2 {
    color: white;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.steps-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.step {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    color: var(--secondary);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Bonuses */
.bonuses-section {
    padding: 5rem 0;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #eee;
    position: relative;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bonus-tag {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
}

.bonus-card h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.bonus-img {
    width: 100%;
    height: 250px;
    /* Fixed height for uniformity */
    object-fit: contain;
    /* Ensure image is fully visible */
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
    /* Light background for transparent images */
}

/* Offer Section */
.offer-section {
    padding: 5rem 0;
    background: #fff;
}

.offer-box {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary);
}

.offer-header {
    background: var(--primary);
    color: white;
    padding: 2rem;
    text-align: center;
}

.offer-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.offer-body {
    padding: 3rem;
    text-align: center;
    background: white;
}

.price-container {
    margin-bottom: 2rem;
    text-align: center;
}

.price-box {
    background: #f8f9fa;
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 1.5rem;
    display: inline-block;
    min-width: 300px;
}

.main-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0.5rem 0;
    color: var(--primary);
}

.symbol {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 10px;
}

.value {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

.currency {
    font-size: 1.2rem;
    color: var(--dark);
    display: block;
}

.payment-info {
    display: block;
    color: #636e72;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 1rem;
    font-size: 2rem;
    color: #b2bec3;
}

.offer-list {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 2.5rem;
}

.offer-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-list i {
    color: var(--success, #2ecc71);
}

.big-btn {
    width: 100%;
    max-width: 400px;
    font-size: 1.4rem;
}

.guarantee-badge {
    margin-top: 1.5rem;
    color: #2ecc71;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #eaffea;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-flex;
}

/* FAQ */
.faq-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.disclaimer {
    font-size: 0.8rem;
    color: #b2bec3;
    margin-top: 1rem;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }

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

    .hero-list {
        display: inline-block;
        text-align: left;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        flex-direction: column;
    }
}

/* --- Playful Details & Vibes --- */

/* Fun Underlines (Crayon Style) */
.fun-underline {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.fun-underline::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -5px;
    right: -5px;
    height: 15px;
    background-color: var(--accent);
    opacity: 0.6;
    z-index: -1;
    border-radius: 20px 5px 20px 5px;
    transform: rotate(-2deg);
}

.fun-underline.blue::after {
    background-color: var(--secondary);
    opacity: 0.3;
}

.fun-underline.red::after {
    background-color: var(--primary);
    opacity: 0.3;
}

/* Polka Dot Background Pattern */
.bg-dots {
    background-image: radial-gradient(#e1e8ed 20%, transparent 20%),
        radial-gradient(#e1e8ed 20%, transparent 20%);
    background-color: #ffffff;
    background-position: 0 0, 25px 25px;
    background-size: 50px 50px;
}

/* Floating Shapes Animation */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.floating-shape {
    position: absolute;
    font-size: 3rem;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: 5%;
    color: var(--primary);
    animation-delay: 0s;
}

.shape-2 {
    top: 20%;
    right: 10%;
    color: var(--secondary);
    animation-delay: 1s;
}

.shape-3 {
    bottom: 15%;
    left: 10%;
    color: var(--accent);
    animation-delay: 2s;
}

.shape-4 {
    bottom: 30%;
    right: 5%;
    color: #a55eea;
    animation-delay: 3s;
}

/* Bouncy Hover Effects */
.reason-item,
.benefit-item,
.testimonial-card,
.bonus-card,
.problem-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.reason-item:hover,
.benefit-item:hover,
.testimonial-card:hover,
.bonus-card:hover {
    transform: translateY(-10px) rotate(1deg) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Section Separators (Wavy) */
.wavy-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wavy-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.wavy-divider .shape-fill {
    fill: #FFFFFF;
}

/* Add pattern to specific sections */
.benefits-section,
.faq-section {
    background-color: #f9fbfd;
    background-image: radial-gradient(#4ecdc4 0.5px, transparent 0.5px), radial-gradient(#4ecdc4 0.5px, #f9fbfd 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

/* FAQ Accordion Styles */
.faq-section .container {
    max-width: 800px;
    /* Narrower container for better readability */
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.1rem;
    background: white;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8fcfd;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f9f9f9;
}

.faq-answer p {
    padding: 1.5rem;
    color: #636e72;
    line-height: 1.6;
    border-top: 1px solid #eee;
}

/* About Author Section */
.about-section {
    padding: 5rem 0;
    background: #fff5d7;
    /* Light yellow background */
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--primary);
    border: 5px solid white;
}

.about-text {
    flex: 1.5;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #2d3436;
    margin-bottom: 1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }
}