@keyframes pulse-scale {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(47, 82, 51, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(47, 82, 51, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(47, 82, 51, 0);
    }
}

.btn-pulse {
    animation: pulse-scale 2s infinite;
    /* Force sharp rendering */
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
    transform: translateZ(0);
    font-weight: 700 !important;
    /* Make text bolder to resist blur during zoom */
    font-family: 'Raleway', sans-serif !important;
}

.btn-pulse:hover {
    animation: none !important;
}

.ampersand {
    font-family: 'Raleway', sans-serif !important;
    font-weight: 400;
}

html,
body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

:root {
    --bg-color: #C1CCBF;
    --bg-secondary: #B5C0B3;
    --surface-color: #E8F0E8;
    --surface-hover: #FFFFFF;
    --primary-color: #6B786B;
    --primary-hover: #5A665A;
    --primary-dark: #4A564A;
    --text-primary: #6B786B;
    --text-secondary: #4A564A;
    --cta-color: #4F5F4F;
    --cta-hover: #5C6B5C;
    --cta-shadow: rgba(79, 95, 79, 0.4);
    --accent-glow: rgba(107, 120, 107, 0.2);
    --shadow-sm: 0 4px 6px -1px rgba(107, 120, 107, 0.1), 0 2px 4px -1px rgba(107, 120, 107, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(107, 120, 107, 0.1), 0 4px 6px -2px rgba(107, 120, 107, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(107, 120, 107, 0.1), 0 10px 10px -5px rgba(107, 120, 107, 0.05);

    /* Updated Fonts */
    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Raleway', sans-serif;

    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: clip;
    /* use clip instead of hidden to not break sticky */

    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

/* Ensure links are not underlined by default */
a {
    text-decoration: none !important;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

span.highlight {
    color: #8EB98E;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    color: var(--primary-color);
    /* Gradient text on white sometimes has poor contrast, straightforward blue is cleaner for this style */
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    gap: 10px;
    color: #FFFFFF !important;
}

.btn:hover {
    transform: translateY(-12px) scale(1.12) !important;
    animation: none !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
    color: #FFFFFF !important;
    background-color: var(--cta-color) !important;
}

.btn-primary {
    background: var(--cta-color) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.btn-primary:hover {
    background-color: var(--cta-color) !important;
}

.btn-whatsapp {
    background: var(--cta-color) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.btn-whatsapp:hover {
    background-color: var(--cta-color) !important;
}

.btn-secondary-cta {
    background-color: var(--bg-secondary) !important;
    color: var(--cta-color) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.btn-secondary-cta:hover {
    background-color: var(--bg-secondary) !important;
    color: var(--cta-color) !important;
    /* transform: none !important; Removed to allow scale */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.btn-no-hover-transform:hover {
    transform: none !important;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px 0;
    background: var(--bg-color);
    /* Removed gradient */
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
    padding-left: 20px;
    padding-bottom: 20px;
}

/* Image Frame Wrapper (Shared Component) */
.image-frame-wrapper {
    position: relative;
    display: inline-block;
    padding: 0;
    z-index: 1;
}

.image-frame-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    z-index: -1;
}

.image-frame-wrapper img {
    display: block;
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

/* Move only Hero photo to the right without affecting butterfly */
.hero-image .image-frame-wrapper img:first-of-type {
    transform: translateX(200px);
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Old .hero-image::before rules removed */
/* Old .hero-image img rules removed (handled by wrapper) */
.hero-image img {
    max-width: 500px;
}

/* Keep max-width constraint specific to hero if needed, or inline */

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: var(--text-primary);
    font-weight: 500;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-tags {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    margin-top: -175px;
    flex-wrap: wrap;
}

.tag {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--surface-color);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(107, 120, 107, 0.2);
    color: var(--primary-dark);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.tag svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
}

/* Common Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

/* Grid Layouts */
.grid-cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-cols-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Box/Card Styles */
.box-styled {
    background: var(--surface-color);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
}

.box-styled h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--primary-color);
    transition: color var(--transition-fast);
}

#pillars-section h3 {
    min-height: 4.5rem;
    display: flex;
    align-items: flex-start;
}


/* Removed conflicting pink hover rule */
/*
#pillars-section .box-styled:hover h3,
#pillars-section .box-styled.card-3d:hover h3 {
    color: #D89393 !important;
}
*/

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

#pillars-section .card-icon,
#bonus-section .card-icon {
    background-color: #8EB98E !important;
    color: #4F5F4F !important;
    border: 2px solid #8EB98E !important;
    transition: all 0.3s ease;
}

/* Pillars Hover Effects */
#pillars-section .box-styled h3,
#pillars-section .card-icon {
    transition: all 0.3s ease;
}

#pillars-section .box-styled:hover h3 {
    color: #8EB98E !important;
}

#pillars-section h3:hover,
#bonus-section .box-styled:hover h3 {
    color: #8EB98E !important;
    /* Explicit text hover reinforcement */
}

#pillars-section .box-styled:hover .card-icon {
    /* background-color: #8EB98E !important; Removed per user request */
    border-color: #4F5F4F !important;
    color: #4F5F4F !important;
}

.card-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 2;
}

/* Before & After Section */
.comparison-section {
    background: var(--bg-secondary);
}

/* Shared 3D Card Style (Used for testimonials only) */
.card-3d {
    border: 2px solid var(--primary-color);
    border-radius: 20px !important;
    box-shadow: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    backface-visibility: hidden;
    display: block;
}

/* Specific override for testimonial containers - no shadow at rest */
.col-group.card-3d {
    box-shadow: none !important;
    border: none !important;
}

/* Add borders to community testimonial images (img.card-3d) */
img.card-3d {
    border: 2px solid var(--primary-color) !important;
}

/* Remove hover shadow from testimonials - keep only transform */
.col-group.card-3d:hover {
    transform: translateY(-10px);
    box-shadow: none !important;
    z-index: 50;
}

/* --- GLOBAL 3D STANDARDIZATION --- */
/* Elements that should behave exactly like Bonus Cards */
.box-styled,
.card-3d,
.price-card,
.mentor-content,
.faq-item,
.split-card,
.checklist-container,
.col-group img,
.testimonial-item img,
.box-styled.comparison-col,
.checklist-premium li {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    backface-visibility: hidden;
    position: relative;
    cursor: default !important;
}

.box-styled:hover,
.card-3d:hover,
.price-card:hover,
.mentor-content:hover,
.faq-item:hover,
.split-card:hover,
.checklist-container:hover,
.col-group img:hover,
.testimonial-item img:hover,
.box-styled.comparison-col:hover,
.checklist-premium li:hover {
    transform: translateY(-10px) !important;
    z-index: 50 !important;
}

/* Specific Shadow Overrides (Keep unique looks but same movement) */
.box-styled.card-3d:hover,
.box-styled.comparison-col:hover,
.price-card:hover,
.checklist-premium li:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.mentor-content:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

/* Testimonials (Testimonials keep clean look - no shadow) */
.col-group.card-3d:hover {
    box-shadow: none !important;
}

/* Custom Scrollbar */
html {
    scrollbar-color: #D89393 var(--bg-color);
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background-color: #D89393;
    border-radius: 6px;
    border: 3px solid var(--bg-color);
}

/* --- Hero Redesign Styles --- */

/* Hero Section Layout */
.hero {
    padding-top: 40px;
    margin-top: -50px !important;
    /* Space for fixed header/logo overlap */
    min-height: 90vh;
    /* Taller hero */
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Hide shape overflow */
    position: relative;
    background-color: white;
    /* Ensure clean white background like ref */
}

/* Custom Hero Shape (Organic Background) */
.custom-hero-shape {
    position: relative;
    z-index: 1;
}

.custom-hero-shape::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%) rotate(-10deg);
    width: 140%;
    height: 120%;
    background: linear-gradient(135deg, #A4C6A4 0%, #6B786B 100%);
    /* Organic Green Gradient */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    /* Organic Blob Shape */
    z-index: -1;
    opacity: 0.2;
    /* Subtle background */
}

.custom-hero-shape img {
    border-radius: 0 0 200px 200px;
    /* Arched bottom or organic crop if desired, sticking to existing simple frame if safer */
    /* Or keep existing rounding: */
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Hero Badge */
.hero-date-badge {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.hero-date-badge:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero {
        padding-top: 0px;
        text-align: center;
    }

    .hero-content {
        text-align: center !important;
        align-items: center !important;
        display: flex;
        flex-direction: column;
    }

    .hero-logo {
        margin: 0 auto;
    }

    .hero-content p {
        text-align: left;
        margin: 0 auto;
        /* Keep it somewhat centered block-wise but text-left */
    }

    .hero-date-badge {
        flex-direction: column;
        /* Stack date/time on very small screens if needed */
        gap: 8px;
        padding: 12px 24px;
        border-radius: 16px;
    }

    .custom-hero-shape::before {
        width: 120%;
        height: 100%;
        top: 10%;
        right: -10%;
    }

    /* Fix Logo Cutoff and Center */
    .hero-logo-wrapper {
        margin: -80px auto -150px auto !important;
        text-align: center !important;
        width: 100% !important;
        padding: 0 !important;
    }
}

/* --- Comparison Section Refactor --- */
.comparison-section-bg {
    background: linear-gradient(to bottom, #ffffff 50%, #4F5F4F 50%);
    padding-top: 80px;
}

@media (max-width: 768px) {
    .comparison-section-bg {
        background: #4F5F4F;
        /* Single color for stacked layout */
        padding-top: 40px;
    }
}

/* --- Comparison Section Refactor (Row-based) --- */
.comparison-rows-container {
    max-width: 1000px;
    margin: 0 auto 10px auto;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    backface-visibility: hidden;
    position: relative;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 4px 15px rgba(0, 0, 0, 0.05);
}

.comparison-rows-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 12px 30px rgba(0, 0, 0, 0.15) !important;
    z-index: 50;
}

.comparison-row {
    display: flex;
    width: 100%;
}

.comparison-col,
.comparison-item-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.comparison-left {
    background-color: #D89393;
    color: #ffffff;
}

.comparison-right {
    background-color: var(--primary-color);
    color: #ffffff;
}

.comparison-header {
    padding: 40px 40px 5px 40px;
}

.comparison-header h3 {
    margin-bottom: 0;
    font-size: 2rem;
}

.comparison-left .comparison-header h3 {
    color: #ffffff;
}

.comparison-right .comparison-header h3 {
    color: white;
}

.comparison-item {
    padding: 15px 40px;
    display: flex;
    gap: 15px;
    align-items: start;
    height: 100%;
    position: relative;
}

.comparison-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    height: 1px;
}

.comparison-left .comparison-item::after {
    background: rgba(220, 20, 60, 0.3);
}

.comparison-right .comparison-item::after {
    background: rgba(255, 255, 255, 0.15);
}

.comparison-item.no-border::after,
.last-row .comparison-item::after {
    display: none;
}

.comparison-item.no-border,
.last-row .comparison-item {
    padding-bottom: 40px;
}

.icon-x {
    color: #DC143C;
    font-weight: bold;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.icon-check {
    color: white;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
    transition: color 0.3s ease, background 0.3s ease;
}

.comparison-rows-container:hover .icon-x {
    color: #DC143C;
}

.comparison-rows-container:hover .icon-check {
    color: #ffffff;
    background: #8EB98E;
}

@media (max-width: 768px) {
    .comparison-rows-container {
        display: block;
    }

    .comparison-row {
        flex-direction: column;
    }

    .comparison-left {
        border-radius: 0;
    }

    .comparison-right {
        border-radius: 0;
    }

    /* First left item gets top radius */
    .comparison-row:first-child .comparison-left {
        border-radius: 16px 16px 0 0;
    }

    /* Last right item gets bottom radius */
    .comparison-row:last-child .comparison-right {
        border-radius: 0 0 16px 16px;
    }
}

/* --- END GLOBAL 3D STANDARDIZATION --- */

.split-card {
    background: linear-gradient(90deg, var(--surface-color) 50%, var(--primary-color) 50%);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Remove the 1px ring shadow */
}



/* Overlay Border for Split Card (Fixes visibility on dark side & corners) */
.split-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 0.5px solid #000000;
    box-sizing: border-box;
    pointer-events: none;
    z-index: 10;
}

/* Pseudo-element removed as requested (No more green cap) */

.card-3d:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    z-index: 50;
}

.comparison-col h3 {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.comparison-rows-container:hover .comparison-left h3 {
    color: #DC143C;
}

.comparison-rows-container:hover .comparison-right h3 {
    color: #8EB98E;
}

.list-check li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.list-check li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B786B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.list-bullet {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
}

.list-bullet li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.list-bullet li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background-color: #4F5F4F;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

/* Hover effect: Change bullet color when parent card is hovered */
.box-styled:hover .list-bullet li::before {
    background-color: #8EB98E !important;
}

.list-cross li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.list-cross li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.list-dash-green li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.list-dash-green li::before {
    content: '-';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
}

/* Bonus Section */
.bonus-section {
    background: var(--bg-secondary);
    color: white;
}

.bonus-section h2,
.bonus-section p {
    color: var(--text-primary);
}

.bonus-box {
    background: var(--surface-color);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.bonus-box h3 {
    color: var(--cta-color);
    /* Use the vibrant green for headers */
}

/* Testimonials */
.testimonial-card {
    background: var(--surface-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #64748b;
}

/* Mentor Section */
.mentor {
    padding: 100px 0;
    display: flex;
    align-items: center;
    gap: 120px;
}

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

/* Hero Image Specific Adjustments */
.hero-image .image-frame-wrapper {
    margin-top: 100px;
    /* Move down further */
    padding-left: 10px;
    /* Reduced frame offset */
    padding-bottom: 10px;
}

.hero-image .image-frame-wrapper::before {
    top: 10px;
    /* Match reduced offset */
}

/* Old .mentor-image img rules removed (handled by wrapper) */

.mentor-content {
    flex: 1;
    position: relative;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.mentor-name {
    font-size: 3rem;
    margin-bottom: 10px;
}

.mentor-role {
    color: var(--cta-color);
    /* Vibrant green back for visibility */
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    display: block;
}

.mentor-credentials-box {
    background: var(--surface-color);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 120, 107, 0.1);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    display: inline-block;
    /* Wraps tightly around list */
    width: 100%;
}

.mentor-credentials-box ul li {
    margin-bottom: 10px;
}

.mentor-credentials-box ul li:last-child {
    margin-bottom: 0;
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-secondary);
}

.price-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 32px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

/* Removed .price-card::before that was adding extra top border */

.recap-list {
    text-align: left;
    margin: 30px 0;
    display: inline-block;
}

.price-amount {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin: 20px 0;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: super;
}

/* Payment Icons - Single Row */
.payment-icons-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    flex-wrap: nowrap !important;
    /* Força tudo em uma linha */
    margin-bottom: 15px !important;
}

.payment-icon {
    height: 18px !important;
    /* Tamanho uniforme e bem pequeno */
    width: auto !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
    /* Não permite que encolham */
    display: inline-block !important;
}




/* FAQ Section */
.faq-section {
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: #ffffff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-body);
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-fast);
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
    padding-bottom: 24px;
}

.faq-answer>div {
    min-height: 0;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}


/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    background: var(--bg-color);
    border-top: 1px solid rgba(107, 120, 107, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --- ADVANCED PHONE 3D EFFECT --- */
/* --- ADVANCED PHONE 3D EFFECT --- */
.phone-3d-wrapper {
    perspective: 1500px;
    display: inline-block;
    z-index: 10;
}

.phone-3d-container {
    position: relative;
    transform-style: preserve-3d;
    transform: none;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}


.phone-3d-container img {
    max-width: 510px;
    width: 100%;
    height: auto;
    display: block;
    /* filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3)); Removed */
    backface-visibility: hidden;
}

@keyframes floatPhone {

    0%,
    100% {
        transform: rotateY(15deg) rotateX(5deg) translateY(0);
    }

    50% {
        transform: rotateY(12deg) rotateX(3deg) translateY(-20px);
    }
}

/* --- END ADVANCED PHONE 3D EFFECT --- */

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column-reverse;
        text-align: left;
    }

    .hero-tags {
        justify-content: flex-start;
        margin-top: -175px;
    }

    .mentor {
        flex-direction: column;
        text-align: center;
    }

    .grid-cols-2,
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }

    .price-amount {
        font-size: 4rem;
    }

    .hero-title {
        font-size: 4.8vw !important;
        /* Reduced from 5.5vw to prevent side cutoff */
        line-height: 1.2 !important;
        white-space: nowrap !important;
        width: 100% !important;
        max-width: 100vw !important;
        /* Ensure it stays within viewport */
        padding: 0 5px !important;
        /* Safety padding */
        box-sizing: border-box !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        overflow: hidden !important;
        /* Last resort protection */
        text-overflow: clip !important;
    }

    .hero-content p {
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* Testimonials Grid */
/* Manual Grid using Flexbox Columns */
.testimonials-manual-grid {
    display: flex;
    gap: 20px;
    max-width: 1100px;
    margin: 30px auto;
    align-items: flex-start;
    /* Ensure columns don't stretch */
}

.col-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.col-group img {
    /* Base styles imported from previous class */
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
    display: block;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.col-group img:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    z-index: 50;
}

@media (max-width: 900px) {
    .testimonials-manual-grid {
        flex-direction: column;
        /* Stack columns on mobile/tablet if needed, or keep 2 col grid */
    }
}

.testimonial-item img {
    width: 100%;
    /* No fixed aspect ratio, as requested by user to avoid cropping text */
    /* aspect-ratio: 9/16; removed */
    /* object-fit: cover; removed */
    height: auto;
    /* Allow natural height */

    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
    display: block;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-item img:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    z-index: 50;
}



/* Premium Access Benefits Section - Checklist Style */
/* Benefits section styling handled inline */

.checklist-container {
    max-width: 900px;
    margin: 40px auto 0;
    background: var(--surface-color);
    padding: 50px 50px 80px 50px;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.checklist-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 50;
}

.checklist-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-premium li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: left;
    height: 100%;
    /* Ensure equal height cards */
}

.checklist-premium li:last-child {
    margin-bottom: 0;
    /* Removed extra padding to keep uniform */
}

@media (max-width: 768px) {
    .checklist-premium {
        grid-template-columns: 1fr;
    }
}

.checklist-full-width {
    grid-column: 1 / -1;
}

.check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--surface-color);
    box-shadow: var(--shadow-sm);
    margin-top: 2px;
}

.check-icon svg {
    width: 16px;
    height: 16px;
    stroke-width: 3px;
}

.checklist-premium li {
    transition: transform 0.2s ease;
}

.checklist-premium li:hover .check-icon {
    background-color: #8EB98E !important;
    transition: background-color 0.3s ease;
}

/* Guarantee Item Highlight */
.checklist-premium li.guarantee-item {
    background: #dcfce7;
    /* Light Green background similar to WhatsApp essence */
    margin: 30px -30px 0 -30px;
    padding: 30px 30px 50px 30px;
    border-top: 1px solid #bbf7d0;
    align-items: center;
}

.checklist-premium li.guarantee-item .check-icon {
    background: #22c55e;
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    color: #ffffff;
}

.checklist-premium li.guarantee-item .check-icon svg {
    width: 20px;
    height: 20px;
}

.checklist-premium li.guarantee-item p {
    font-weight: 500;
    color: #15803d;
    margin: 0;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .checklist-container {
        padding: 30px 20px;
    }

    .checklist-premium li.guarantee-item {
        margin: 20px -20px -20px -20px;
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Platform Preview Section */
.platform-section {
    background: var(--bg-color);
    padding-bottom: 80px;
    /* Reduced top padding handled by margin */
    padding-top: 20px;
    overflow: hidden;
}

.platform-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.platform-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.platform-header h2 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.platform-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* MacBook Mockup */
.macbook-mockup {
    margin: 0 auto;
    max-width: 600px;
    /* Smaller size as requested */
    position: relative;
    perspective: 1000px;
}

.macbook-screen {
    background: #000;
    border-radius: 12px 12px 0 0;
    padding: 3% 3% 5% 3%;
    /* Bezel */
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    border: 1px solid #2a2a2a;
}

.macbook-screen::before {
    /* Camera Notch */
    content: '';
    position: absolute;
    top: 1.5%;
    left: 50%;
    transform: translateX(-50%);
    width: 6%;
    height: 3%;
    background: #333;
    border-radius: 0 0 6px 6px;
    z-index: 10;
}

.macbook-content {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    /* MacBook Aspect Ratio */
}

.macbook-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Focus on Jacqueline (right side of original image) */
    object-position: 80% 20%;
    display: block;
}

.macbook-base {
    background: linear-gradient(to bottom, #dedede 0%, #c4c4c4 100%);
    height: 15px;
    /* Base height relative */
    width: 120%;
    /* Base is wider than screen */
    margin-left: -10%;
    /* Center the wider base */
    border-radius: 0 0 16px 16px;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.macbook-base::after {
    /* Thumb indent */
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 15%;
    height: 40%;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
}

/* Floating Arrow Animation - Fixed */
@keyframes arrowBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

.floating-arrow {
    display: block !important;
    margin: 30px auto !important;
    width: 60px !important;
    height: 60px !important;
    padding: 12px !important;
    box-sizing: border-box !important;

    border: 2px solid #8EB98E !important;
    border-radius: 16px !important;
    /* Match card rounding */

    stroke-width: 3px !important;
    color: var(--primary-color) !important;
    animation: arrowBounce 2s infinite ease-in-out !important;
    filter: none !important;
    background: none !important;
    box-shadow: none !important;
}

/* Utility for clean top border on rounded cards */
.border-top-accent {
    position: relative;
    overflow: hidden;
    /* Clips the child element to the border-radius */
    border-top: none !important;
    /* Override any potential border-top conflict */
}

.border-top-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #8EB98E;
    z-index: 10;
}

/* Beige top border for bonus cards */
.border-top-beige {
    position: relative;
    overflow: hidden;
    border-top: none !important;
}

.border-top-beige::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #D89393;
    z-index: 10;
}

/* Hover effect for Topics Card */
.topics-card:hover h2 {
    color: #4F5F4F !important;
    transition: color 0.3s ease;
}

/* Hover effect for Target Audience Cards - Checkmark Icons */
.border-top-accent:hover svg {
    stroke: #ffffff !important;
    transition: stroke 0.3s ease;
}

.border-top-accent:hover span[style*="background-color: var(--cta-color)"] {
    background-color: #8EB98E !important;
    transition: background-color 0.3s ease;
}

.casulo-header-text {
    color: #ffffff !important;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: 0;
    line-height: 1.2;
}

.casulo-header-text span {
    color: #ffffff !important;
}

/* Footer Logo Styling - Color applied via mask */
/* Footer Logo Styling - Color applied via drop-shadow filter hack */
.footer-logo-colored-img {
    /* Use a large offset to project a shadow, then move the image out of view */
    filter: drop-shadow(0 100px 0 #2E3A2E);
    transform: translateY(-100px);
    /* Ensure opacity is 1 so shadow is solid */
    opacity: 1;
}

/* Brush Stroke Background for Photos */
/* Brush Stroke Background for Photos */
/* Brush Stroke Background using Pseudo-element */
.image-frame-wrapper {
    position: relative;
    /* Create positioning context */
    display: inline-flex;
    /* Removes line-height gaps common with inline-block */
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.image-frame-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    /* Adjust scale to fit */
    width: 100%;
    /* Relative size to container */
    height: 100%;
    background-image: url('brush_blob.svg?v=7');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    /* Behind the content of the wrapper */
    opacity: 0.8;
}

/* Ensure the image sits naturally */
.image-frame-wrapper>img {
    position: relative;
    z-index: 2;
    /* Explicitly higher */
    display: block;
    border-radius: 20px;
}

.casulo-description:hover span[style*="background-color: var(--cta-color)"] {
    background-color: #8EB98E !important;
    transition: background-color 0.3s ease;
}

/* Specific adjustment for Hero Section to match Mentor look */
/* Specific adjustment for Mentor Section - Different shape */
.mentor-image .image-frame-wrapper::before {
    background-image: url('brush_blob_mentor.svg?v=3');
    transform: translate(-55%, -50%) scale(1.6);
    /* Shifted slightly left to avoid text */
}

.hero-image .image-frame-wrapper::before {
    transform: translate(-50%, -50%) scale(1.6);
    /* Slightly enlarged for hero */
    top: 50%;
    left: 50%;
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .checklist-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.topics-card .list-bullet li {
    color: #ffffff !important;
}

.topics-card .list-bullet li::before {
    background-color: #ffffff !important;
    /* White */
    transition: background-color 0.3s ease;
}

.topics-card:hover .list-bullet li::before {
    background-color: #4F5F4F !important;
    /* Dark Green */
}

.topics-card h2 {
    color: #ffffff !important;
    /* White */
    transition: color 0.3s ease;
    cursor: default;
}

/* Mobile Fixes for Mentor Section */
@media (max-width: 768px) {

    /* Fix image cutting off and center it */
    .mentor-image .image-frame-wrapper {
        padding-left: 0;
        padding-bottom: 0;
        display: inline-block;
        /* Match hero */
        justify-content: center;
        margin: 0 auto 30px auto;
        max-width: 80% !important;
        /* Match hero image size */
    }

    /* Ensure brush is visible and centered on mobile */
    .mentor-image .image-frame-wrapper::before {
        transform: translate(-50%, -50%) scale(1.6);
        /* Re-center slightly for mobile if needed, or keep -55% if it fits */
        left: 50%;
        /* Reset left if needed */
    }

    .mentor-image .image-frame-wrapper img {
        margin: 0 auto;
    }

    .mentor-image .image-frame-wrapper::before {
        /* Correction for centering on mobile */
        content: '' !important;
        display: block !important;
        visibility: visible !important;
        opacity: 0.8 !important;
        left: 50%;
        width: 100%;
        height: 100%;
        transform: translate(-50%, -50%) scale(1.8);
        background-image: url('brush_blob_mentor.svg?v=3') !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        z-index: -1 !important;
        position: absolute !important;
    }

    /* Fix text alignment - Force Left */
    .mentor-content {
        text-align: left !important;
    }

    .mentor-content .list-check li {
        justify-content: flex-start !important;
        text-align: left !important;
    }

    /* Reduce font size for credentials to fit on one line where possible */
    .mentor-credentials-box p {
        font-size: 0.8rem !important;
    }

    .mentor-credentials-box {
        padding: 15px !important;
    }
}

/* Mobile Fixes for Hero Section */
@media (max-width: 768px) {

    /* Fix Logo Cutoff and Center */
    .hero-logo-wrapper {
        margin: -80px auto -120px auto !important;
        text-align: center !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .hero-logo {
        max-width: 90% !important;
        height: auto;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        display: block !important;
    }

    /* Fix Hero Image Centering */
    .hero-image {
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }

    /* Hero Title - Center and Resize for Line Breaks */
    .hero h1 {
        text-align: center !important;
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
        margin-top: 5px !important;
    }

    /* Add space between CTA and Photo */
    .hero .btn-primary {
        margin-bottom: 0 !important;
    }

    .hero-content-main {
        margin-top: 0 !important;
        margin-bottom: 60px !important;
    }

    /* Guarantee Section - Compact Layout */
    .cta-strip .container {
        gap: 20px !important;
        /* Reduced from 50px */
        flex-direction: column;
    }

    /* "Confiamos na qualidade..." text */
    .cta-strip p {
        font-size: 0.85rem !important;
        /* Further reduced to strictly 2 lines */
        max-width: 90% !important;
        /* Ensure some breathing room but allow width */
        margin: 0 !important;
        line-height: 1.3 !important;
        text-align: left !important;
        white-space: normal;
        /* Allow wrapping but control width */
    }

    /* Force tags side-by-side on mobile and Center */
    .hero-tags {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        justify-content: center !important;
        width: 100%;
        align-items: center;
        margin-top: 0 !important;
    }

    .hero-tags .tag {
        font-size: 0.75rem !important;
        /* Smaller text to fit */
        padding: 5px 10px !important;
        white-space: nowrap;
        /* Prevent text wrapping inside tag */
        flex: 0 1 auto;
        /* Allow shrinking */
    }

    .hero-tags .tag svg {
        width: 16px;
        height: 16px;
    }

    /* Center Hero Image Container - Override inline styles and flex */
    .hero-image {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
        /* Changed from 100vw to avoid overflow issues */
        flex: none !important;
        min-width: auto !important;
        margin: 0 auto !important;
        padding: 0 !important;
        max-width: none !important;
    }

    .hero-image .image-frame-wrapper {
        display: inline-block;
        margin: 0 auto 30px auto !important;
        /* Reset desktop styles */
        margin-top: 0 !important;
        padding-left: 0 !important;
        padding-bottom: 0 !important;
        float: none !important;
        max-width: 360px !important;
        width: 90% !important;
        /* Match mentor image size exactly */
    }

    .hero-image .image-frame-wrapper::before {
        left: 50% !important;
        top: 50% !important;
        /* Reset desktop offset */
        width: 100% !important;
        transform: translate(-50%, -50%) scale(1.6) !important;
    }

    /* Ensure both images have exact same width, but EXCLUDE butterflies */
    .hero-image .image-frame-wrapper img:first-of-type,
    .mentor-image .image-frame-wrapper img:first-of-type {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        max-width: 100% !important;
        transform: none !important;
        /* Reset translateX(200px) */
    }

    /* Ensure both wrappers have exact same size - Scaled down for mobile */
    .hero-image .image-frame-wrapper,
    .mentor-image .image-frame-wrapper {
        max-width: 340px !important;
        width: 340px !important;
        margin: 0 auto !important;
    }

    /* Center Hero CTA Button */
    .hero .btn {
        display: inline-flex !important;
        margin: 20px auto 0 auto !important;
    }

    /* Testimonials Mobile Grid - Enforce 2 Columns & Maximize Size */
    /* Testimonials Mobile Grid - Enforce 2 Columns & Maximize Size */
    .testimonials-manual-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        /* strict 2 cols */
        gap: 8px !important;
        /* Minimize gap */
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .col-group {
        gap: 10px !important;
    }
}

/* Casulo Section Border */
.casulo-container {
    border: 3px solid #4F5F4F !important;
    /* using direct hex for cta-color */
    border-radius: 30px;
    padding: 30px;
    margin-bottom: 30px !important;
    /* Add spacing below the box */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    background-color: transparent;
    /* Ensure it stays transparent or set if needed */
}

.casulo-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .casulo-container {
        padding: 20px;
        /* Reduce padding on mobile */
    }
}

/* Hero Butterfly Decoration */
.hero-butterfly {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: auto;
    z-index: 0;
    transform: rotate(15deg);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    pointer-events: none;
}

@media (max-width: 900px) {
    .hero-butterfly {
        width: 60px;
        top: -20px;
        right: -10px;
    }

    .image-frame-wrapper {
        transform: none;
    }
}

@keyframes float-butterfly {

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

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

@media (max-width: 768px) {
    .hero-butterfly {
        width: 80px !important;
        /* Force correct size */
        top: -15px !important;
        right: -15px !important;
        display: block !important;
    }
}

/* Mentor Butterfly Decoration (Left side, mirrored from hero) */
.mentor-butterfly {
    position: absolute !important;
    bottom: -100px !important;
    left: -180px !important;
    top: auto !important;
    right: auto !important;
    width: 350px !important;
    height: auto !important;
    z-index: 100 !important;
    transform: scaleX(-1) !important;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)) !important;
    pointer-events: none !important;
    display: block !important;
}

@media (max-width: 900px) {
    .mentor-butterfly {
        width: 250px !important;
        bottom: -40px !important;
        left: -80px !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {

    /* Ensure subscription checklist background shows on mobile */
    #subscription-checklist::before {
        background-image: url('section-background-fixed.jpg') !important;
        background-color: #f0f4f0 !important;
        background-attachment: scroll !important;
        background-size: 200% auto !important;
        background-repeat: repeat !important;
        background-position: center !important;
        display: block !important;
        opacity: 1 !important;
    }

    /* GENERAL IMAGE FRAME FIXES FOR MOBILE */
    /* .hero-image .image-frame-wrapper removed to allow larger size defined above */
    .mentor-image .image-frame-wrapper {
        max-width: 360px !important;
        width: 90% !important;
        margin: 0 auto 30px auto !important;
    }

    /* Remove the "white box" (shadow) from all images in the frame */
    .image-frame-wrapper img {
        box-shadow: none !important;
        border: none !important;
    }

    /* Fix Background Blobs Scale */
    /* Fix Background Blobs Scale */
    .hero-image .image-frame-wrapper::before {
        transform: translate(-50%, -50%) scale(1.4) !important;
        opacity: 0.9 !important;
    }

    .mentor-image .image-frame-wrapper::before {
        transform: translate(-50%, -50%) scale(1.5) !important;
        opacity: 0.9 !important;
    }

    /* Ensure Hero container doesn't clip butterfly */
    .hero,
    .hero-container {
        overflow: visible !important;
    }

    /* BUTTERFLY FIXES: Position right, small size, no shadow */
    .hero-butterfly,
    .mentor-butterfly {
        width: 80px !important;
        height: auto !important;
        position: absolute !important;
        left: auto !important;
        box-shadow: none !important;
        z-index: 100 !important;
        display: block !important;
    }

    .hero-butterfly {
        top: 20px !important;
        right: -15px !important;
        /* Move more to the right, but keep inside viewport */
        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4)) brightness(1.3) contrast(1.1) !important;
        /* High visibility */
    }

    .mentor-butterfly {
        bottom: -10px !important;
        top: auto !important;
        right: 5px !important;
        transform: scaleX(-1) !important;
    }

    /* FIX MENTOR SECTION FOR MOBILE */
    .mentor-section {
        padding-top: 0 !important;
    }

    .mentor-logo-container {
        margin: -140px auto -85px auto !important;
        padding-top: 0 !important;
        height: auto !important;
        text-align: center !important;
    }

    .mentor-section-logo {
        margin: 0 auto !important;
        max-width: 90% !important;
        width: 90% !important;
        height: auto !important;
        display: block !important;
    }

    .container.mentor {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        padding: 0 15px 40px 15px !important;
        margin-top: 0 !important;
    }

    .mentor-image {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        order: 1 !important;
        margin-bottom: 20px !important;
    }

    .mentor-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        order: 2 !important;
        padding: 20px !important;
        text-align: center !important;
    }

    .mentor-content .list-check {
        text-align: left !important;
        display: inline-block !important;
    }
}

/* Remove unwanted rectangular shadows/borders from mentor photo */
.mentor-image .image-frame-wrapper img {
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}

/* Ensure the decorative background doesn't create rectangular artifacts */
.mentor-image .image-frame-wrapper::before {
    box-shadow: none !important;
    border: none !important;
}

/* ========================================
   REFACTORED STYLES FROM INLINE/HEAD
   ======================================== */

/* Desktop/Base Styles */
.testimonials-hybrid-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* NUCLEAR REFACTOR STYLES - GLOBAL */
.checklist-split-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, auto);
    grid-auto-flow: column;
    gap: 20px;
    align-items: stretch;
}

.checklist-split-col,
.checklist-col-reset {
    display: contents !important;
}

.nuclear-card,
.checklist-col-reset li {
    background: #ffffff !important;
    padding: 25px !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    border: 2px solid var(--primary-color) !important;
    list-style: none !important;
    display: flex !important;
    gap: 15px !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    text-align: left !important;
    height: 100% !important;
    min-height: auto !important;
    justify-content: flex-start !important;
}

.nuclear-card p {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

.nuclear-card .check-icon {
    margin-bottom: 0 !important;
}

/* Hero Section Specific */
@media (min-width: 769px) {
    .hero-custom {
        padding-top: 0px;
        padding-bottom: 60px;
        display: block;
        min-height: auto;
        background-image: url('hero-background.jpg');
        background-size: cover;
        background-position: -50% center;
        background-repeat: no-repeat;
        position: relative;
    }

    .hero-container {
        display: block;
    }

    .hero-content-wrapper {
        display: flex;
        align-items: flex-start;
        gap: 40px;
        flex-wrap: wrap;
    }

    .hero-content-main {
        flex: 1;
        min-width: 300px;
        text-align: left !important;
        margin-top: -100px;
    }

    .hero-logo-wrapper {
        margin-bottom: 5px;
        text-align: left !important;
    }

    .hero-logo {
        max-width: 600px;
        width: 100%;
        height: auto;
        display: block;
        margin: 0 0 0 -80px !important;
        filter: drop-shadow(0 0 0.5px #000);
    }

    .hero-title {
        color: #4F5F4F;
        font-weight: 500;
        line-height: 1.0;
        font-size: 2.8rem;
        text-align: left !important;
    }

    .hero-title-plus {
        display: inline-block;
        vertical-align: middle;
        font-size: 1.6rem;
        transform: translateY(-0.1em);
        line-height: 1;
    }

    .hero-highlight-green {
        color: #458B45;
        font-weight: 400;
    }

    .hero-image-wrapper {
        transition-delay: 0.2s;
        flex: 1;
        min-width: 300px;
        text-align: center;
    }

    .hero-image-wrapper .image-frame-wrapper img {
        transform: translateX(0px) !important;
    }

    /* Adjust Background Shape Position for Desktop */
    .hero-image-wrapper .image-frame-wrapper::before {
        top: 55% !important;
    }
}

/* Comparison Section */
.comparison-section-custom {
    background-color: #4F5F4F;
    padding-bottom: 20px;
}

.comparison-section-title {
    color: #8EB98E;
    font-size: 2.3rem;
    font-weight: 600;
    line-height: 1.2;
}

.comparison-section-title-white {
    color: #ffffff;
}

.comparison-box {
    background-color: #ffffff !important;
    color: #4F5F4F;
    border: 1px solid #8EB98E;
    border-radius: 24px;
}

.comparison-cta-wrapper {
    text-align: center;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.comparison-cta-btn {
    background-color: #8EB98E !important;
    color: #fff;
}

.floating-arrow {
    color: #8EB98E !important;
    border-color: #8EB98E !important;
    margin-top: 50px !important;
}

/* Target Audience Section */
.target-audience-section {
    background-color: #4F5F4F;
    padding-top: 0px;
}

.target-audience-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.target-audience-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #ffffff !important;
    color: #4F5F4F;
    border-radius: 20px;
}

.check-icon-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cta-color);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 8px;
}

/* Topics Section */
.topics-section-with-bg {
    padding: 60px 0;
    position: relative;
    background: linear-gradient(to bottom, #4F5F4F 50%, transparent 50%) !important;
}

.topics-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background-color: #D89393 !important;
    border-radius: 24px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    border: none !important;
}

.topics-card h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    font-size: 1.8rem;
}

.topics-card .list-bullet {
    color: #ffffff;
}

.topics-link {
    color: #ffffff;
    text-decoration: underline !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.topics-link:hover {
    color: #8EB98E !important;
    text-decoration: underline !important;
}

/* Pillars Section */
.pillars-section-custom {
    padding-top: 20px;
    position: relative;
}

.pillars-title {
    font-size: 2.3rem;
    font-weight: 600;
}

.pillars-highlight {
    color: #8EB98E !important;
}

.pillars-card {
    text-align: left;
    border-color: #8EB98E !important;
    background-color: #ffffff !important;
}

.pillars-card-icon {
    margin: 0 0 24px 0;
    background-color: #8EB98E !important;
    color: #4F5F4F !important;
}

/* Community Testimonials */
.testimonials-experience-section {
    padding-top: 10px;
    position: relative;
}

.testimonials-arrow-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.testimonials-arrow {
    color: #8EB98E !important;
}

.testimonials-title {
    font-size: 2.3rem;
    font-weight: 600;
    line-height: 1.2;
}

.community-masonry-grid {
    display: flex;
    gap: 20px;
}

.community-masonry-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.community-masonry-column img {
    width: 100%;
    height: auto;
}

/* CTA Strip */
.cta-strip {
    background-color: var(--cta-color);
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

.cta-strip-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-strip p {
    color: #ffffff;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

.cta-strip-btn {
    background-color: #8EB98E !important;
}

/* Benefits/Casulo Section */
.benefits-section {
    color: var(--text-primary);
    padding-top: 60px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.casulo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: left;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 0px;
}

.casulo-phone-wrapper {
    flex: 0 1 auto;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.phone-3d-wrapper {
    margin-top: 0px;
}

.casulo-text-wrapper {
    flex: 0 1 500px;
    padding: 10px;
}

.casulo-title {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 2.6rem;
    text-transform: uppercase;
}

.casulo-header-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: #ffffff;
}

.casulo-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.15rem;
    text-align: left;
    margin-bottom: 0;
}

/* Bonus Section */
.bonus-section-custom {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 0px;
}

.bonus-title {
    font-size: 2.3rem;
    font-weight: 600;
}

.bonus-card {
    text-align: center;
    background-color: #ffffff !important;
    border-color: #D89393 !important;
}

.bonus-card-icon {
    margin: 0 auto 24px auto;
}

.bonus-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Comparison Section (Pain vs Gain) */
.comparison-section-bg-custom {
    position: relative;
    overflow: hidden;
    color: var(--text-primary);
    padding-top: 80px;
}

.comparison-section-bg-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('section-background-fixed.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #4F5F4F;
    z-index: -1;
}

@media (min-width: 901px) {
    .comparison-section-bg-custom::before {
        background-attachment: fixed;
    }
}

.comparison-bg-title {
    font-size: 2.3rem;
    font-weight: 600;
    color: #4F5F4F;
}

.comparison-bg-highlight {
    color: #8EB98E !important;
}

/* Subscription Checklist Section */
.subscription-checklist-section {
    position: relative;
    overflow: hidden;
    color: var(--text-primary);
    padding-top: 80px;
}

.subscription-checklist-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('section-background-fixed.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #4F5F4F;
    z-index: -1;
}

@media (min-width: 901px) {
    .subscription-checklist-section::before {
        background-attachment: fixed;
    }
}

.subscription-title {
    color: #4F5F4F;
    margin-bottom: 0;
    line-height: 1.2;
    font-size: 2.3rem;
    font-weight: 600;
}

.subscription-highlight {
    color: #8EB98E;
    text-decoration: none;
    background-color: transparent;
}

.checklist-container {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .checklist-container {
        background-color: transparent !important;
        box-shadow: none !important;
        padding: 20px 10px !important;
    }

    .checklist-premium li {
        background-color: rgba(255, 255, 255, 0.7);
        border-radius: 16px;
        padding: 20px;
        margin-bottom: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }
}

.checklist-col-reset {
    padding: 0;
    margin: 0;
    list-style: none;
}

.checklist-full-width {
    background-color: var(--cta-color);
    border-color: var(--cta-color);
}

.checklist-full-width .check-icon {
    background-color: #ffffff;
    color: var(--cta-color);
}

.checklist-full-width p {
    color: #E8F0E8;
}

/* Pricing Section */
.pricing-section {
    padding-bottom: 50px;
    padding-top: 30px;
    background: var(--bg-secondary);
}

.pricing-grid {
    max-width: 900px;
    margin: 0 auto;
    gap: 30px;
}

.price-card {
    padding: 40px;
    text-align: center;
    border: 2px solid var(--primary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.price-highlight-banner {
    background: #4F5F4F;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    align-self: center;
    gap: 2px;
}

.price-highlight-banner-hidden {
    background: var(--primary-color);
    color: var(--bg-color);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    align-self: center;
    visibility: hidden;
    gap: 2px;
}

.price-plan-title {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.price-plan-duration {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.price-strikethrough {
    text-decoration: line-through;
    color: #94a3b8;
    margin-bottom: 5px;
    visibility: hidden;
}

.price-amount {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.price-amount-label {
    font-size: 1.2rem;
    display: block;
    color: var(--text-secondary);
    font-weight: 400;
}

.price-total {
    color: var(--text-secondary);
    margin-top: 10px;
    font-weight: 500;
}

.price-security-section {
    margin-top: 30px;
    border-top: 1px dashed #e2e8f0;
    padding-top: 20px;
}

.price-security-text {
    font-weight: 600;
    color: var(--cta-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.price-payment-logos {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    flex-wrap: nowrap !important;
    margin-bottom: 15px !important;
}

.price-payment-logo {
    height: 18px !important;
    width: auto !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
}

.price-security-disclaimer {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 20px;
}

/* CTA Strip 2 (Guarantee) */
.cta-strip-guarantee {
    background-color: var(--cta-color);
    padding: 30px 0;
}

.cta-strip-guarantee-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

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

.guarantee-phrase p {
    color: #ffffff;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
}

.guarantee-text-wrapper {
    text-align: center;
    color: #ffffff;
}

.guarantee-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 2px;
}

.guarantee-days {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    font-weight: 700;
    line-height: 1;
}

.guarantee-days-number {
    font-family: 'Raleway', sans-serif;
    font-size: 1.4rem;
}

.guarantee-days-text {
    font-size: 1.2rem;
}

.guarantee-icon-wrapper {
    color: #ffffff;
}

/* Mentor Section */
.mentor-section {
    background-color: #ffffff;
    color: var(--text-primary);
    padding-top: 120px;
    padding-bottom: 20px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url('mentor-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.mentor-logo-container {
    text-align: right;
    margin-bottom: 0px;
    margin-top: -40px;
}

@media (min-width: 769px) {
    .mentor-section-logo {
        max-width: 500px;
        width: 100%;
        height: auto;
        margin: -80px 20px 0 0 !important;
    }

    .mentor.container {
        padding-top: 0 !important;
        align-items: flex-end;
        margin-top: -300px !important;
    }
}

.mentor-butterfly-custom {
    position: absolute;
    bottom: -100px;
    left: -180px;
    top: auto;
    right: auto;
    z-index: 100;
    width: 350px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.mentor-content-custom {
    background-color: #ffffff;
    border-width: 3px;
}

.mentor-role {
    color: var(--primary-color);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mentor-name {
    margin-bottom: 35px;
    color: var(--primary-color);
    font-weight: 500;
}

.mentor-list {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #333333;
}

.mentor-list li {
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mentor-credentials-box {
    margin-top: 20px;
    border-top: none;
    padding: 20px;
    width: 100%;
    background-color: #4F5F4F;
    border-radius: 12px;
}

.mentor-credentials-box p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 2px;
}

.mentor-credentials-box p:last-child {
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #4F5F4F;
    color: #ffffff;
    padding-top: 40px;
}

.testimonials-container {
    max-width: 1200px;
}

.testimonials-section-title {
    font-size: 2.3rem;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
}

.testimonials-section-highlight-green {
    color: #8EB98E !important;
}

.testimonials-section-highlight-white {
    color: #ffffff !important;
}

.testimonials-hybrid-grid-custom {
    display: grid;
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-hybrid-grid-custom img {
    width: 100%;
    display: block;
    border-radius: 16px;
    min-width: 0 !important;
}

/* FAQ Section */
.faq-section {
    padding-top: 50px;
    padding-bottom: 80px;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.faq-title {
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0px;
}

.faq-title-highlight {
    color: #ffffff;
}

.faq-whatsapp-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.faq-whatsapp-text {
    margin-bottom: 30px;
    color: var(--text-primary);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-answer p {
    color: var(--text-primary);
}

.faq-answer-margin {
    margin-top: 15px;
}

.faq-answer-margin-lg {
    margin-top: 20px;
}

.faq-answer-margin-sm {
    margin-top: 10px;
}

.faq-answer-small {
    font-size: 0.9em;
    opacity: 0.8;
}

/* Final CTA Section */
.final-cta-section {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #4F5F4F;
    color: #ffffff;
}

.final-cta-title {
    margin-bottom: 30px;
    font-size: 2.2rem;
    color: #ffffff;
}

.final-cta-highlight {
    color: #8EB98E !important;
    text-decoration: none;
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    padding: 20px 0 0 0;
}

.footer p {
    margin: 0;
    padding: 0;
    line-height: 1.4;
    margin-bottom: 0 !important;
}

.footer-logo-wrapper {
    height: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.footer-logo-colored-img {
    max-width: 200px;
    height: auto;
    display: block;
}

/* CRITICAL MOBILE FIXES - CONSOLIDATED */
@media (max-width: 900px) {

    /* Testimonials: FORCE 2 Columns on Mobile */
    .testimonials-hybrid-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .testimonials-hybrid-grid img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Aumentar card de cursos para texto ficar em uma linha */
    .mentor-credentials-box {
        max-width: 100% !important;
        width: 100% !important;
        padding: 15px !important;
    }

    .mentor-credentials-box p {
        white-space: nowrap !important;
        overflow-x: auto !important;
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
    }

    /* Cards comparison no mobile: reorganizar para mostrar todos da esquerda, depois todos da direita */
    .comparison-rows-container {
        display: flex !important;
        flex-direction: column !important;
    }

    .comparison-row {
        display: contents !important;
    }

    /* Todos os itens da esquerda aparecem primeiro */
    .comparison-col.comparison-left,
    .comparison-item-wrapper.comparison-left {
        order: 1 !important;
    }

    /* Todos os itens da direita aparecem depois */
    .comparison-col.comparison-right,
    .comparison-item-wrapper.comparison-right {
        order: 2 !important;
    }

    .comparison-col,
    .comparison-item-wrapper {
        width: 100% !important;
    }

    /* Prevenir scroll horizontal no mobile - SOLUÇÃO SIMPLIFICADA */
    html {
        overflow-x: clip;
        width: 100%;
    }

    body {
        width: 100%;
        max-width: 100vw;
    }

    * {
        box-sizing: border-box;
    }

    .container,
    .section-padding,
    section,
    header {
        max-width: 100vw;
    }

    img,
    .image-frame-wrapper {
        max-width: 100% !important;
    }

    /* Hero Tags: FORCE Row */
    /* Hero Tags: FORCE Row & Center */
    .hero-tags {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        width: 100% !important;
        justify-content: center !important;
        margin-top: 0 !important;
    }

    /* Guarantee Text: FORCE 2 Lines */
    .cta-strip p {
        font-size: 0.85rem !important;
        max-width: 100% !important;
        white-space: normal !important;
        line-height: 1.25 !important;
        margin: 0 !important;
        padding: 0 10px !important;
    }

    /* Fix "Pertencer..." Title on Mobile */
    .comparison-section-bg .section-header h2 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow: visible !important;
        width: 100% !important;
        color: #ffffff !important;
        position: relative !important;
        z-index: 5 !important;
    }

    /* Community Masonry Grid: FORCE 2 Columns */
    .community-masonry-grid {
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    .community-masonry-grid>div {
        flex: 0 0 calc(50% - 5px) !important;
        max-width: calc(50% - 5px) !important;
    }

    /* Checklist Split Wrapper: FORCE Stack on Mobile */
    .checklist-split-wrapper {
        flex-direction: column !important;
        display: flex !important;
        gap: 0 !important;
    }

    .checklist-col-reset {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* NUCLEAR REFACTOR STYLES */
    .nuclear-card,
    .checklist-col-reset li {
        background: #F9FAF9 !important;
        padding: 25px !important;
        border-radius: 20px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        border: 2px solid var(--primary-color) !important;
        list-style: none !important;
        display: flex !important;
        gap: 15px !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        text-align: left !important;
        height: auto !important;
        min-height: auto !important;
        justify-content: flex-start !important;
        margin-bottom: 20px !important;
    }

    .nuclear-card p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin: 0 !important;
    }

    .nuclear-card .check-icon {
        margin-bottom: 0 !important;
    }

    .checklist-split-col,
    .checklist-col-reset {
        width: 100% !important;
        min-width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .hero {
        background-position: center center !important;
        background-size: cover !important;
    }
}