/* 
   RESET VITAL - LANDING PAGE STYLES
   Theme: Organic, Accessible, Commercial, Wellness
   Dominant Palette: Greens
*/

:root {
    /* Color Palette - Vivid & Organic */
    --primary-green: #66BB6A;
    /* Fresh vivid green for buttons/highlights */
    --hover-green: #43A047;
    /* Slightly darker for hover */
    --dark-green: #1B5E20;
    /* Deep Forest Green for text/headings */
    --vivid-lime: #DCE775;
    /* Accents */

    --light-green-bg: #DCEDC8;
    /* Saturated light green for sections */
    --pale-green: #F1F8E9;
    /* Softer background, but still fresh */
    --accent-orange: #FF7043;

    --text-main: #2E4E2C;
    /* Dark Green-Grey for body text */
    --text-light: #558B2F;
    /* Lighter green for subtitles */
    --white: #FFFFFF;
    --off-white: #FAFAFA;

    /* UI Variables */
    --border-radius-card: 20px;
    --border-radius-btn: 50px;
    --shadow-soft: 0 10px 30px rgba(46, 125, 50, 0.1);
    /* Green-tinted shadow */
    --shadow-hover: 0 15px 40px rgba(46, 125, 50, 0.2);

    /* Spacing */
    --container-width: 1100px;
    --spacing-section: 20px;
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--off-white);
    font-size: 16px;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg-pattern-v2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: multiply;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3 {
    color: var(--dark-green);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.8rem;
    text-align: center;
}

h3 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5px;
}

/* =========================================
   COMPONENTS
   ========================================= */

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #AED581 0%, #7CB342 100%);
    /* Vivid gradient */
    color: var(--white);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-btn);
    font-size: clamp(0.85rem, 3.5vw, 1.1rem);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(67, 160, 71, 0.3);
    text-align: center;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: var(--hover-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 160, 71, 0.4);
}

.big-cta {
    font-size: 1.3rem;
    padding: 1.2rem 3rem;
    width: auto;
    /* Changed from 100% to auto to avoid stretching unnecessarily */
    max-width: 95%;
    white-space: nowrap;
    /* Force single line */
    font-size: clamp(0.85rem, 4vw, 1.3rem);
    /* Responsive font size to keep it on one line */
}

/* CTA Container for centering */
.cta-container {
    text-align: center;
    margin: 30px auto;
    width: 100%;
}

.img-placeholder {
    width: 100%;
    height: 350px;
    background-color: #CFD8DC;
    border-radius: var(--border-radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 500;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.img-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
    background: #F9FBE7;
    /* Matched to Hero Gradient Start */
    padding: 0;
    /* Removed padding to reduce whitespace */
    box-shadow: none;
    position: relative;
    top: 0;
    z-index: 100;
    overflow: hidden;
    /* Contain margins to prevent white gap (body backup showing through) */
}

.site-header .logo {
    height: 80px;
    /* Reduced to half (was 240px) */
    margin: -20px auto 0 auto;
    /* Removed bottom margin to eliminate gap */
    display: block;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    padding: 0;
    /* Removed top padding to bring title closer to logo */
    background: linear-gradient(180deg, #F9FBE7 0%, #DCEDC8 100%);
    /* Lime glow background */
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    /* Further reduced gap to 10px */
}

.hero-text {
    text-align: center;
    max-width: 600px;
}

.hero-text h1 {
    color: var(--dark-green);
    /* Restored to dark green */
    font-size: 2.5rem;
    margin-top: 10px;
    /* Ensure no top margin pushing it down */
    margin-bottom: 15px;
}

.highlight-red {
    color: #FF0000;
}

.highlight-green-light {
    color: var(--primary-green);
}

.hero-text .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.05);
    /* Very subtle shadow for subtitles */
}

.headline-image {
    width: 100%;
    max-width: 450px;
    /* Increased size for better framing */
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-soft);
    margin: 20px auto;
    /* Always centered */
    display: block;
    transition: transform 0.3s ease;
}

.headline-image:hover {
    transform: scale(1.02);
}

.cta-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
}

.hero-image {
    width: 100%;
    max-width: 175px;
    /* Reduced to half size (was 350px) */
    margin: 0 auto;
}

@media(min-width: 768px) {
    .hero-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .hero-text {
        text-align: left;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    /* Headline Image remains centered via global style */
}

/* =========================================
   PAIN SECTION
   ========================================= */
.pain-section {
    padding: var(--spacing-section) 0;
    background-color: var(--white);
}

.pain-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.pain-list li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F1F8E9;
    /* Light green background */
    border: 1px solid #C5E1A5;
    border-radius: 12px;
    padding: 12px 18px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 500px;
    transition: all 0.2s ease;
    list-style: none;
    /* Remove default dots if any */
}

.pain-list li:hover {
    transform: translateY(-2px);
    background: #DCEDC8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pain-list .icon-pain {
    background: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.empathy-text {
    background-color: var(--light-green-bg);
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-green);
    margin-top: 20px;
    font-size: 1.05rem;
}

.pain-image {
    width: 100%;
    max-width: 500px;
}

@media(min-width: 768px) {
    .pain-grid {
        flex-direction: row;
    }
}

/* =========================================
   SOLUTION SECTION
   ========================================= */
.solution-section {
    padding: var(--spacing-section) 0;
    background-color: var(--pale-green);
}

.solution-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.solution-image {
    width: 100%;
    max-width: 350px;
    /* Medium size as requested */
}

.solution-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.solution-benefits,
.solution-deliverables {
    margin-top: 25px;
}

.solution-text h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.solution-text ul li {
    margin-bottom: 8px;
}

.digital-note {
    margin-top: 20px;
    font-weight: 600;
    color: var(--primary-green);
}

@media(min-width: 768px) {
    .solution-grid {
        flex-direction: row;
    }

    .solution-text h2 {
        text-align: left;
    }
}

/* =========================================
   BENEFITS SECTION
   ========================================= */
.benefits-section {
    padding: var(--spacing-section) 0;
    background-color: var(--white);
}

.benefits-rows {
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* Reduced from 40px */
    margin-top: 30px;
    /* Reduced from 40px */
}

.benefit-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: #E8F5E9;
    /* Light green highlight */
    border: 1px solid #C8E6C9;
    /* Subtle green border */
    padding: 20px;
    border-radius: var(--border-radius-card);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(67, 160, 71, 0.08);
    /* Subtle green-tinted shadow */
}

.benefit-row:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-image-box {
    flex: 0.8;
    /* Reduced from 1 to make images smaller */
    width: 100%;
}

.benefit-image-box img {
    width: 100%;
    height: 200px;
    /* Reduced from 300px for a more compact feel */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-content-box {
    flex: 2;
    /* Increased from 1.2 to give text more space */
    text-align: center;
}

.benefit-content-box .icon-box {
    font-size: 2rem;
    /* Reduced from 2.5rem */
    margin-bottom: 10px;
    /* Reduced from 15px */
}

.benefit-content-box h3 {
    margin-bottom: 10px;
    /* Reduced from 15px */
    color: var(--dark-green);
    font-size: 1.3rem;
    /* Reduced from 1.5rem */
}

.benefit-content-box p {
    margin-bottom: 10px;
    /* Reduced from 15px */
    font-size: 1rem;
    /* Reduced from 1.1rem */
}

.benefit-content-box .benefit-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    /* Reduced from 0.95rem */
    border-top: 1px solid #ddd;
    padding-top: 10px;
    /* Reduced from 15px */
    margin-top: 10px;
    /* Reduced from 15px */
}

@media(min-width: 768px) {
    .benefit-row {
        flex-direction: row;
        text-align: left;
        padding: 20px 30px;
        /* More compact padding */
    }

    .benefit-content-box {
        text-align: left;
    }
}

/* =========================================
   OFFER SECTION
   ========================================= */
.offer-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--dark-green) 0%, #103813 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

/* Optional overlay pattern */
.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--primary-green) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.1;
    pointer-events: none;
}

.offer-box {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-main);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    /* Golden Animated Border */
    border: 4px solid #ffd700;
    animation: goldBorderPulse 2s infinite alternate;
}

@keyframes goldBorderPulse {
    0% {
        border-color: #ffd700;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 0 10px #ffd700;
    }

    100% {
        border-color: #fff176;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 0 25px #ffd700;
    }
}

.offer-tag {
    background: var(--accent-orange);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.85rem;
    position: absolute;
    top: 15px;
    /* Adjusted top position */
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 112, 67, 0.6), 0 0 30px rgba(255, 112, 67, 0.3);
    animation: fireGlow 1.5s infinite alternate;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    /* Force single line */
    z-index: 10;
}

@keyframes fireGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 112, 67, 0.5), 0 0 20px rgba(255, 87, 34, 0.3);
        transform: translateX(-50%) scale(1);
    }

    100% {
        box-shadow: 0 0 20px rgba(255, 112, 67, 0.8), 0 0 40px rgba(255, 87, 34, 0.5);
        transform: translateX(-50%) scale(1.05);
    }
}

.offer-box h2 {
    color: var(--dark-green);
    font-size: 2.2rem;
    margin-top: 30px;
    /* Extra space for the tag */
}

.price-container {
    margin: 25px 0;
}

.old-price {
    font-size: 1.25rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.new-price {
    font-size: clamp(3.5rem, 15vw, 5rem);
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
    text-shadow: 3px 6px 15px rgba(0, 0, 0, 0.2), 0 0 20px rgba(102, 187, 106, 0.2);
    /* Price Shadow + Glow */
    display: block;
    white-space: nowrap;
    margin-top: 5px;
}

.offer-box .big-cta {
    margin-top: 20px;
    white-space: nowrap;
    width: auto;
    max-width: 95%;
    font-size: clamp(0.9rem, 4vw, 1.3rem);
    display: inline-flex;
    /* Changed to flex for centering */
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.payment-img {
    height: 35px;
    width: auto;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.payment-img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* =========================================
   SOCIAL PROOF
   ========================================= */
.social-proof-section {
    padding: var(--spacing-section) 0;
    background-color: var(--pale-green);
    text-align: center;
}

.section-sub {
    color: var(--text-light);
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}


.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(46, 125, 50, 0.15);
}

.avatar-placeholder {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.testim-text {
    font-style: italic;
    margin-bottom: 15px;
}

.testim-name {
    font-weight: 700;
    color: var(--dark-green);
}

.testim-transformation-img {
    width: 100%;
    margin: 15px 0;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    display: block;
}

.institutional-block {
    margin-top: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.inst-logo {
    height: 30px;
    margin: 0 auto 15px auto;
    opacity: 0.8;
}

@media(min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================
   GUARANTEE
   ========================================= */
.guarantee-section {
    padding: 20px 0;
    background-color: var(--white);
}

.guarantee-box {
    border: 2px dashed var(--primary-green);
    border-radius: var(--border-radius-card);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    background: var(--light-green-bg);
}

.guarantee-icon {
    font-size: 3rem;
}

.guarantee-text h3 {
    margin-bottom: 5px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.guarantee-text p {
    font-size: 0.95rem;
    line-height: 1.5;
}

@media(min-width: 768px) {
    .guarantee-box {
        flex-direction: row;
        text-align: left;
    }
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
    padding: var(--spacing-section) 0;
    background-color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-question .arrow {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px 20px;
    display: none;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    display: block;
}

/* =========================================
   FINAL CTA & FOOTER
   ========================================= */
.final-cta-section {
    padding: 30px 0;
    /* Reduced both top and bottom padding to 30px */
    background-color: var(--light-green-bg);
    text-align: center;
}

.final-cta-section h2 {
    margin-bottom: 15px;
}

.secure-line {
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
}

.site-footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 30px 0 20px 0;
    /* Reduced top padding from 50px to 30px */
    text-align: center;
}

.footer-contacts p {
    margin-bottom: 10px;
}

.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.pain-img-real {
    width: 100%;
    max-width: 450px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-soft);
    margin: 0 auto;
    object-fit: cover;
}

/* =========================================
   DYNAMIC & FUN ELEMENTS
   ========================================= */

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-anim {
    animation: float 3s ease-in-out infinite;
}

/* Highlight Boxes */
.highlight-box {
    background-color: #FFF9C4;
    /* Light Yellow */
    border: 2px dashed #FBC02D;
    padding: 6px 1;
    border-radius: 12px;
    margin: 20px auto;
    position: relative;
    font-weight: 500;
    width: fit-content;
    max-width: 100%;
    text-align: center;
}

/* Speech Bubbles */
.speech-bubble {
    position: relative;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--light-green-bg);
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -22px;
    /* Position below */
    left: 40px;
    border-width: 20px 20px 0;
    /* Triangle pointing down */
    border-style: solid;
    border-color: var(--light-green-bg) transparent;
    display: block;
    width: 0;
}

/* Dynamic List Items - Cleaned up backgroud/shadows as requested */
.fun-list li {
    background: transparent;
    padding: 1px 0;
    margin-bottom: 5px;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.2s;
    font-weight: 500;
    color: var(--text-main);
}

.fun-list li:hover {
    transform: translateX(5px);
}

/* Title Balloon Style */
.title-pill {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--hover-green) 100%);
    color: white !important;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(102, 187, 106, 0.3);
    margin-bottom: 25px;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: normal;
    /* Allow wrapping on small screens */
    word-break: break-word;
    border: 3px solid rgba(255, 255, 255, 0.5);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

@media(max-width: 480px) {
    .title-pill {
        font-size: 0.92rem;
        padding: 10px 20px;
        white-space: normal;
        text-align: center;
        display: block;
        /* Center better on mobile */
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

.bonus-title-highlight {
    background: linear-gradient(135deg, #ffd700 0%, #fff176 50%, #ffd700 100%);
    background-size: 200% auto;
    animation: goldShine 3s infinite linear;
    padding: 15px 40px;
    border-radius: 50px;
    display: block;
    /* To allow margin auto */
    width: fit-content;
    margin: 30px auto 20px auto;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4), 0 0 15px rgba(255, 215, 0, 0.3);
    /* Strong golden shadow + glow */
    text-transform: uppercase;
    color: #5d4037 !important;
    /* Rich brown for readability on gold */
    font-size: 1.4rem !important;
    font-weight: 900 !important;
    letter-spacing: 2px;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.5);
    border: 2px solid #ffca28;
    white-space: normal;
    /* Allow wrapping on small screens */
    word-break: break-word;
}

@media(max-width: 480px) {
    .bonus-title-highlight {
        font-size: 1.1rem !important;
        padding: 12px 25px;
        letter-spacing: 1px;
    }
}

@keyframes goldShine {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 100% 0;
    }
}


/* Premium Bonus Cards */
.bonus-grid-premium {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.bonus-card-premium {
    background: #FFFFFF;
    border: 2px solid #E8F5E9;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
    gap: 10px;
    border-left: 5px solid var(--primary-green);
}

.bonus-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.bonus-header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the tags */
    gap: 15px;
    /* Add space between BÔNUS XX and GRÁTIS */
    width: 100%;
}

.bonus-label-tag {
    background: var(--light-green-bg);
    color: var(--dark-green);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-gratis-badge {
    background: #FF7043;
    /* Match top bar orange */
    color: white;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bonus-title-row {
    display: flex;
    flex-direction: column;
    /* Stack icon and text */
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.bonus-icon-circle {
    width: 45px;
    height: 45px;
    background: #F1F8E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 1px solid #DCEDC8;
}

.bonus-info {
    text-align: center;
}

.bonus-info h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--dark-green);
    text-shadow: none;
    /* Keep cleaner for cards */
}

.bonus-info p {
    margin: 5px 0 0 0;
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.4;
}

@media(max-width: 768px) {
    .bonus-card-premium {
        padding: 15px;
    }
}

@media(max-width: 768px) {
    .pill-content {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        gap: 5px;
    }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(45deg, var(--dark-green), var(--primary-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1.2;
}

.h1-line {
    display: block;
}

@media(max-width: 768px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
}

/* Hero Bubble specific */
.hero-bubble {
    background-color: rgba(10, 39, 11, 0.349);
    border: 2px dashed var(--primary-green);
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}



/* Testimonial Specifics */
.stars {
    color: #FBC02D;
    /* Star Yellow */
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testim-photo-sprite {
    width: 100%;
    height: 180px;
    /* Approximation for the photo part */
    background-image: url('images/testimonials-source.png');
    background-size: 300% auto;
    /* 3 cards width */
    background-repeat: no-repeat;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.photo-regina {
    background-position: 5% 55%;
    /* Left card, vertical center estimate */
}

.photo-marta {
    background-position: 50% 55%;
    /* Middle card */
}

.photo-eliane {
    background-position: 95% 55%;
    /* Right card */
}

/* =========================================
   POLISH: ANIMATIONS & BADGES
   ========================================= */

@keyframes pulse-soft {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(67, 160, 71, 0.4);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(67, 160, 71, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(67, 160, 71, 0);
    }
}

.pulse-anim {
    animation: pulse-soft 2s infinite;
}

.guarantee-icons-aligned {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    /* Force single line */
    flex-shrink: 0;
    margin-bottom: 5px;
}

.guarantee-icon-item {
    width: 100px;
    /* Increased size for better visibility */
    height: auto;
    transition: transform 0.3s ease;
}

.guarantee-icon-item:hover {
    transform: scale(1.1) rotate(5deg);
}


/* =========================================
   TOP COUNTDOWN BAR
   ========================================= */
body {
    padding-top: 50px;
    /* Space for the fixed bar */
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #FF7043;
    /* Laranja forte e vibrante */
    color: #FFFFFF;
    /* Texto branco para contraste */
    /* Dark green text */
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
}

.countdown-timer {
    background-color: #FFFFFF;
    /* Branco para destacar no fundo laranja */
    padding: 2px 10px;
    min-width: 60px;
    text-align: center;
    border-radius: 5px;
    font-family: monospace;
    color: #B91C1C;
    /* distinct red */
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.fire-icon {
    font-size: 1.2rem;
}

@media(max-width: 768px) {
    .top-bar-content {
        gap: 5px;
        padding: 0 5px;
        width: 100% !important;
        /* Maximize space */
        max-width: 100% !important;
        /* Override container max-width */
    }

    .top-bar-text {
        font-size: 0.9rem;
        /* Increased size */
        letter-spacing: -0.5px;
        /* Tight spacing to fit */
    }
}

/* Reveal Animations */
.reveal-init {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-init.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for lists if needed */
.pain-list li:nth-child(1) {
    transition-delay: 0.1s;
}

.pain-list li:nth-child(2) {
    transition-delay: 0.2s;
}

.pain-list li:nth-child(3) {
    transition-delay: 0.3s;
}

.pain-list li:nth-child(4) {
    transition-delay: 0.4s;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background-color: var(--hover-green);
    transform: translateY(-5px);
}

.back-to-top.visible {
    display: flex;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Mobile Fixes for Overflow */
@media(max-width: 768px) {
    .container {
        padding: -1px 15px;
        /* Increase padding for better safe area */
    }

    .solution-grid {
        gap: 20px;
    }

    .solution-text h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .fun-list li {
        font-size: 0.9rem;
        gap: 10px;
    }

    .bonus-card-premium {
        padding: 15px;
    }

    .bonus-info h4 {
        font-size: 1rem;
    }

    .bonus-info p {
        font-size: 0.85rem;
    }
}

@media(max-width: 380px) {
    .bonus-title-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}