:root {
    --primary-color: #FF6600;
    /* Appetizing Orange */
    --secondary-color: #FF6600;
    /* Warm Yellow */
    --accent-color: #27ae60;
    /* Success/Money Green */
    --text-color: #000000;
    /* Dark Gray */
    --light-bg: #FFFBF5;
    /* Very light cream */
    --white: #ffffff;
    --dark-section: #1a1a1a;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --font-main: 'Outfit', sans-serif;
    --container-width: 1100px;
    --spacing-section: 2.5rem 0rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    /* Mobile first scale, will increase on desktop */
}

h2 {
    font-size: 1.8rem;
    text-align: center;
}

.highlight {
    color: var(--primary-color);
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.8rem;
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* =========================================
   BUTTONS
   ========================================= */
.cta-button {
    display: inline-block;
    background: linear-gradient(to bottom, #2ecc71, #27ae60);
    color: var(--white);
    font-weight: 800;
    font-size: 1.2rem;
    padding: 1rem;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    border-bottom: 4px solid #1e8449;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.5);
}

.cta-button:active {
    transform: translateY(1px);
    border-bottom-width: 2px;
}

.cta-button.secondary {
    background: linear-gradient(to bottom, #2ecc71, #27ae60);
    border-bottom-color: 4px solid #1e8449;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

.cta-button.secondary:hover {
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.5);
}

.cta-button.giant {
    font-size: 1.4rem;
    padding: 1rem;
    max-width: 450px;
    width: 100%;
    margin: 0px;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(39, 174, 96, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

/* =========================================
   HEADER / HERO
   ========================================= */
.hero-section {
    padding: 2rem 0 3rem;
    text-align: center;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.hero-logo img {
    height: 80px;
    margin: 0 auto 2rem;
}

.hero-section h1 {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    color: var(--text-color);
}

.subheadline {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-image {
    margin: 2rem auto;
    width: 100%;
    max-width: 800px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: rotate(-1deg);
    border: 5px solid white;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   PROBLEM SECTION
   ========================================= */
.problem-section {
    padding: var(--spacing-section);
    background-color: var(--white);
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problem-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.pain-points {
    background-color: #FFF0E6;
    /* Light Orange Tint */
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    text-align: left;
    border-left: 5px solid var(--primary-color);
}

.pain-points p {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.pain-points ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1.1rem;
}

.pain-points i {
    color: #e74c3c;
    margin-top: 5px;
}

.emphatic {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-color);
}

/* =========================================
   SOCIAL PROOF IMAGES
   ========================================= */
.social-proof-images {
    padding: 2rem 0;
    background-color: #FAFAFA;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-grid img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

/* =========================================
   SOLUTION / RECIPES
   ========================================= */
.solution-section {
    padding: var(--spacing-section);
    background: radial-gradient(circle at center, #ffffff, #f3f3f3);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.benefit-item span {
    font-weight: 600;
}

.highlight-text {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2rem 0 4rem;
}

.subsection-title {
    text-align: center;
    margin: 3rem 0 2rem;
    font-size: 1.8rem;
}

.recipes-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Stacked on mobile */
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.recipe-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    padding-bottom: 1rem;
}

.recipe-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recipe-card h4 {
    margin-top: 1rem;
    padding: 0 10px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.solution-section .cta-button {
    display: block;
    margin: 0 auto;
}

/* =========================================
   TARGET AUDIENCE
   ========================================= */
.target-audience-section {
    padding: var(--spacing-section);
    background-color: var(--dark-section);
    color: white;
}

.target-audience-section .section-title {
    color: var(--secondary-color);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.audience-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    /* Glass dark */
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.audience-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.audience-item p {
    font-size: 1.1rem;
}

.audience-conclusion {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
}

/* =========================================
   PRODUCT DETAILS
   ========================================= */
.product-details-section {
    padding: var(--spacing-section);
    background: #fff;
    text-align: center;
}

.details-header .small-logo {
    height: 400 400px;
    margin: 0 auto 1rem;
}

.feature-list {
    max-width: 800px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #FFF5E6, #ffffff);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: left;
}

.feature-list li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-list i {
    color: var(--primary-color);
    font-size: 1.5rem;
    min-width: 30px;
    text-align: center;
}

.final-check {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* =========================================
   BONUSES
   ========================================= */
.bonuses-section {
    padding: var(--spacing-section);
    background-color: #fcfcfc;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-card img {
    width: 100%;
}

.bonus-card h3 {
    padding: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 0;
}

.bonus-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* =========================================
   OFFER SECTION
   ========================================= */
.offer-section {
    padding: 3rem 1rem;
    background: linear-gradient(to bottom right, var(--primary-color), var(--secondary-color));
}

.offer-card {
    background: white;
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem 1rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    pointer-events: none;
}

.offer-title {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.offer-list {
    text-align: left;
    margin: 0 auto 2rem;
    max-width: 400px;
}

.offer-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-list i {
    color: var(--accent-color);
}

.offer-list .bonus-item {
    color: #666;
    font-size: 0.95rem;
}

.offer-list .bonus-item i {
    color: var(--secondary-color);
}

.vip-item {
    font-weight: 700;
    color: var(--primary-color);
}

.price-container {
    margin: 2rem 0;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.new-price {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin: 0.5rem 0;
}

.installments {
    display: block;
    color: #555;
    font-weight: 600;
}

/* =========================================
   GUARANTEE
   ========================================= */
.guarantee-section {
    padding: var(--spacing-section);
    background: white;
}

.guarantee-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-img img {
    width: 200px;
    margin: 0 auto;
}

.guarantee-text {
    flex: 1;
    min-width: 300px;
}

.guarantee-text h2 {
    color: var(--text-color);
}

.risk-free {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* =========================================
   BIO
   ========================================= */
.bio-section {
    padding: var(--spacing-section);
    background-color: var(--dark-section);
    color: #ddd;
}

.bio-grid {
    display: flex;
    flex-direction: column-reverse;
    /* Text first on mobile usually better, or Image top */
    align-items: center;
    gap: 2rem;
}

.bio-img img {
    border-radius: 50%;
    border: 4px solid var(--secondary-color);
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 0 auto;
}

.bio-text {
    text-align: center;
    max-width: 600px;
}

.bio-text h2 {
    color: var(--white);
}

.signature {
    font-family: cursive;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 1rem;
}

/* =========================================
   FAQ
   ========================================= */
.faq-section {
    padding: var(--spacing-section);
    background-color: var(--light-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    cursor: pointer;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f9f9f9;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
    /* Adjust if needed */
}

.faq-item.active i {
    transform: rotate(180deg);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background-color: #111;
    color: #777;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* =========================================
   ANIMATIONS UTILS
   ========================================= */
.animate-fade-up,
.animate-fade-down,
.animate-fade-right,
.animate-fade-left,
.animate-zoom-in {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-up {
    transform: translateY(30px);
}

.animate-fade-down {
    transform: translateY(-30px);
}

.animate-fade-right {
    transform: translateX(-30px);
}

.animate-fade-left {
    transform: translateX(30px);
}

.animate-zoom-in {
    transform: scale(0.9);
}

.in-view {
    opacity: 1;
    transform: translate(0) scale(1);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    .hero-section {
        padding: 5rem 0 6rem;
    }

    .problem-content {
        text-align: left;
    }

    .bio-grid {
        flex-direction: row;
        text-align: left;
    }

    .guarantee-content {
        text-align: left;
    }

    .recipes-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .cta-button {
        width: auto;
    }
}