/* --- GLOBAL STYLES & VARIABLES --- */
:root {
    --primary-color: #8B5CF6; /* Purple from the screenshot */
    --primary-hover: #7C3AED;
    --highlight-color: #F59E0B; /* Orange/yellow for highlights */
    --background-color: #ffffff;
    --section-bg-light: #f9f9f9;
    --section-bg-dark: #1E1B4B; /* Dark purple */
    --text-color: #333333;
    --text-color-light: #f1f1f1;
    --border-color: #e0e0e0;
    --font-family: 'Inter', sans-serif;
    --pink-accent: #EC4899; /* Pink for buttons */
    --teal-accent: #14B8A6; /* Teal for highlights */
}

/* --- BASE STYLES --- */
body {
    margin: 0;
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.7;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

html { overflow-x: hidden; }
html.modal-open{overflow:hidden;height:100%;}

/* Disable page scroll when modal open */
body.modal-open{overflow:hidden;}
body.modal-open,html.modal-open{overflow:hidden!important;height:100%!important;position:fixed;width:100%;}

/* --- NAVBAR --- */
.navbar {
    background: #ffffff;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo .logo {
    height: 40px;
    width: auto;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: #666;
}
.nav-register-btn {
    background: linear-gradient(45deg, #EC4899, #DB2777);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}
.nav-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

/* Navbar inner padding */
.navbar .container {
    padding: 0 15px;
}

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

section, footer, header {
    padding: 80px 0;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}

.section-headline {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subheadline {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #555;
}

.text-primary {
    color: var(--primary-color);
}
.text-highlight {
    background-color: var(--highlight-color);
    padding: 0 5px;
    border-radius: 4px;
}
.highlight-word {
    color: #8B5CF6;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
    transition: all 0.3s ease;
}
.highlight-word:hover {
    color: #7C3AED;
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.8);
}
.light-blue {
    color: #00D4FF;
    font-weight: 900;
    text-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
}
.light-blue:hover {
    color: #33DDFF;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

/* --- CTA BUTTONS --- */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #EC4899, #DB2777);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(236, 72, 153, 0.4);
}

/* --- SECTION 1: HERO --- */
.hero {
    height: auto;
    min-height: 100vh;
    padding: 120px 0 60px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35)), url('img/bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35)), url('img/bg.webp') center/cover no-repeat;
    z-index: -1;
}
.hero-top {
    align-items: flex-start;
}
.hero-copy {
    flex: 1.5;
    text-align: left;
}
.hero-graphic {
    flex: 1;
}
.hero-graphic img.hero-product-img {
    width: 90%;
    max-width: 420px;
}
@media(min-width:768px){.hero-graphic img.hero-product-img{width:100%;max-width:480px;}}

/* Hero layout */
.hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}
@media(min-width:768px){.hero-top{flex-direction:row;justify-content:space-between;gap:40px;}}
.hero-copy {
    flex: 1;
}
.hero-graphic {
    flex: 1;
    display: flex;
    justify-content: center;
}
.hero-graphic img.hero-product-img {
    width: 70%;
    max-width: 480px;
    height: auto;
}
@media(min-width:768px){.hero-graphic img.hero-product-img{width:90%;max-width:520px;}}

.hero-headline {
    font-size: 2.5rem;
    font-family: var(--font-family);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    line-height: 1.1;
}
.hero-sub-main {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}
.hero-subheadline {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 30px;
    color: #f3f4f6;
    font-weight: 600;
    line-height: 1.5;
}
.hero-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 40px auto;
    flex-wrap: wrap;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #f3f4f6;
}
.benefit-icon {
    font-size: 1.4rem;
}
.benefit-icon-img {
    width: 40px;
    height: 40px;
    position: relative;
    top: -2px;
}
.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
    font-size: 1.3rem;
    font-weight: 900;
    flex-wrap: wrap;
}
.price-old {
    text-decoration: line-through;
    color: #d1d5db;
    font-size: 1.5rem;
}
.price-new {
    color: #ffffff;
    font-size: 2.8rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.discount-badge {
    background: linear-gradient(45deg, #FF416C, #FF4B2B);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.logo-strip {
    background-color: #111;
    padding: 20px 0 25px;
    text-align: center;
}
.logo-strip.scrollable { cursor: grab; }
.logo-strip.scrollable.dragging { cursor: grabbing; }
.logo-heading{
    color:#d1d5db;
    font-size:0.9rem;
    letter-spacing:1px;
    margin-bottom:15px;
}
.logo-heading{display:none;}
.logo-strip img {
    width: 95%;
    height: auto;
    opacity: 0.8;
}

/* --- RESPONSIVE ADJUSTMENTS FOR HERO --- */
@media (max-width: 767px) {
    /* Override: keep actions container visible but hide the text link */
    .nav-actions { display: flex; }
    .nav-link { display: none; }
    .hero {
        text-align: center;
    }
    .hero-headline {
        font-size: 2.2rem;
    }
    .hero-sub-main {
        font-size: 1.3rem;
    }
    .hero-subheadline {
        font-size: 1rem;
        padding: 0 10px;
    }
    .hero-benefits {
        flex-direction: column;
        gap: 20px;
    }
    .benefit-item {
        font-size: 1.25rem;
    }
    .benefit-icon-img {
        width: 44px;
        height: 44px;
    }
    .hero-main-content { padding: 30px 15px 10px; }
    .logo-strip img {
        width: auto !important;
        height: 60px;
        max-width: 100%;
    }
    .hero-copy {
        text-align: center;
    }
}
@media (min-width: 768px) {
    .logo-strip img { width: 85%; }
}
@media (min-width: 480px) {
    .hero {
        padding: 50px 0;
    }
    .hero-headline {
        font-size: 3rem;
    }
    .hero-sub-main {
        font-size: 1.6rem;
    }
    .hero-subheadline {
        font-size: 1.2rem;
        max-width: 550px;
    }
    .hero-benefits {
        max-width: 450px;
    }
    .benefit-card {
        padding: 25px 20px;
    }
    .benefit-icon {
        font-size: 2.2rem;
    }
    .benefit-card span {
        font-size: 1.05rem;
    }
    .benefit-item {
        font-size: 1.2rem;
    }
    .benefit-icon-img {
        width: 42px;
        height: 42px;
    }
}

@media (min-width: 768px) {
    .hero {
        padding: 60px 0;
        min-height: 90vh;
    }
    .hero-headline {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }
    .hero-sub-main {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .hero-subheadline {
        font-size: 1.3rem;
        max-width: 600px;
        margin: 0 auto 40px;
    }
    .hero-benefits {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin: 40px auto;
        max-width: 700px;
    }
    .benefit-card {
        padding: 25px 15px;
    }
    .benefit-icon {
        font-size: 2.3rem;
        margin-bottom: 12px;
    }
    .benefit-card span {
        font-size: 1.05rem;
    }
    .benefit-item {
        font-size: 1.2rem;
    }
    .benefit-icon-img {
        width: 42px;
        height: 42px;
    }
    .price-display {
        gap: 15px;
        margin: 30px 0;
        font-size: 1.4rem;
    }
    .price-old {
        font-size: 1.6rem;
    }
    .price-new {
        font-size: 3rem;
    }
    .discount-badge {
        padding: 10px 15px;
        font-size: 1rem;
    }
    .trust-bar {
        margin-top: 50px;
    }
    .trust-bar p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 80px 0;
        min-height: 100vh;
    }
    .hero-headline {
        font-size: 4rem;
    }
    .hero-sub-main {
        font-size: 2rem;
    }
    .hero-subheadline {
        font-size: 1.4rem;
        max-width: 650px;
        margin: 0 auto 50px;
    }
    .hero-benefits {
        gap: 25px;
        margin: 50px auto;
        max-width: 800px;
    }
    .benefit-card {
        padding: 30px 20px;
    }
    .benefit-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    .benefit-card span {
        font-size: 1.1rem;
    }
    .benefit-item {
        font-size: 1.3rem;
    }
    .benefit-icon-img {
        width: 48px;
        height: 48px;
    }
    .price-display {
        margin: 40px 0;
        font-size: 1.5rem;
    }
    .price-old {
        font-size: 1.8rem;
    }
    .price-new {
        font-size: 3.5rem;
    }
    .trust-bar {
        margin-top: 60px;
    }
    .trust-bar .logos {
        gap: 40px;
    }
    .trust-bar .logos img {
        max-width: 120px;
    }
}

@media(min-width:1024px){
  .hero .container{max-width:1200px;}
  .hero-copy{flex:0 0 540px;}
  .hero-graphic img.hero-product-img{max-width:700px;width:100%;}
}

/* --- SECTION 2: PAIN/EMPATHY --- */
.pain-empathy {
    background: #fff;
}
.pain-points-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
    margin-bottom: 40px;
}
.pain-point {
    background: var(--section-bg-light);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.pain-point h3 {
    font-size: 1.5rem;
    margin-top: 0;
    color: var(--primary-color);
}
.empathy-statement {
    font-size: 1.3rem;
    font-weight: 700;
    max-width: 650px;
    margin: 50px auto 0;
    line-height: 1.6;
    color: var(--text-color);
}
/* Buddha card styling */
.pain-point.buda-bg {
    position: relative;
    background: url('img/buda.webp') center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}
.pain-point.buda-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.58); /* overlay 58% */
    border-radius: inherit;
}
.pain-point.buda-bg > * {
    position: relative;
    z-index: 1;
}
.pain-point.buda-bg h3 {
    color: #ffffff;
    font-weight: 900;
}
.pain-point.buda-bg p {
    color: #f1f5f9;
    font-weight: 700;
}
.pain-point.buda-bg h3,
.pain-point.buda-bg p {
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* Coins card styling */
.pain-point.coins-bg {
    position: relative;
    background: url('img/coins.webp') center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}
.pain-point.coins-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.58);
    border-radius: inherit;
}
.pain-point.coins-bg > * {
    position: relative;
    z-index: 1;
}
.pain-point.coins-bg h3 {
    color: #ffffff;
    font-weight: 900;
}
.pain-point.coins-bg p {
    color: #f1f5f9;
    font-weight: 700;
}
.pain-point.coins-bg h3,
.pain-point.coins-bg p {
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* Megaphone card styling */
.pain-point.megaphone-bg {
    position: relative;
    background: url('img/megaphone.webp') center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}
.pain-point.megaphone-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.58);
    border-radius: inherit;
}
.pain-point.megaphone-bg > * {
    position: relative;
    z-index: 1;
}
.pain-point.megaphone-bg h3 {
    color: #ffffff;
    font-weight: 900;
}
.pain-point.megaphone-bg p {
    color: #f1f5f9;
    font-weight: 700;
}
.pain-point.megaphone-bg h3,
.pain-point.megaphone-bg p {
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* --- SECTION 3: SOLUTION --- */
.solution {
    background-color: var(--section-bg-light);
}
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
    margin-bottom: 50px;
}
.step-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--pink-accent);
    line-height: 1;
}

/* Data (Step 1) card styling */
.step-card.data-bg {
    position: relative;
    background: url('img/data.webp') center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}
.step-card.data-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.58);
    border-radius: inherit;
}
.step-card.data-bg > * {
    position: relative;
    z-index: 1;
}
.step-card.data-bg h3 {
    color: #ffffff;
    font-weight: 900;
}
.step-card.data-bg p {
    color: #f1f5f9;
}
.step-card.data-bg h3,
.step-card.data-bg p {
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* Map (Step 2) card styling */
.step-card.mapa-bg {
    position: relative;
    background: url('img/mapa.webp') center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}
.step-card.mapa-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.58);
    border-radius: inherit;
}
.step-card.mapa-bg > * {
    position: relative;
    z-index: 1;
}
.step-card.mapa-bg h3 {
    color: #ffffff;
    font-weight: 900;
}
.step-card.mapa-bg p {
    color: #f1f5f9;
}
.step-card.mapa-bg h3,
.step-card.mapa-bg p {
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* Badge (Step 3) card styling */
.step-card.badge-bg {
    position: relative;
    background: url('img/badge.webp') center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}
.step-card.badge-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.58);
    border-radius: inherit;
}
.step-card.badge-bg > * {
    position: relative;
    z-index: 1;
}
.step-card.badge-bg h3 {
    color: #ffffff;
    font-weight: 900;
}
.step-card.badge-bg p {
    color: #f1f5f9;
}
.step-card.badge-bg h3,
.step-card.badge-bg p {
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* --- SECTION 4: SOCIAL PROOF --- */
.social-proof {
    background-color: var(--section-bg-dark);
    color: var(--text-color-light);
}
.social-proof .section-headline, .social-proof .section-subheadline {
    color: var(--text-color-light);
}
.testimonial-carousel {
    position: relative;
    min-height: 180px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
}
.testimonial {
    display: none;
    flex-direction: column;
}
.testimonial.active { display: flex; }
.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.5;
    margin: 0 0 20px 0;
}
.testimonial-author {
    font-weight: 700;
    font-size: 1.1rem;
    color: #f7b733;
}

/* --- Testimonial Carousel Drag Cursor & Unselect --- */
.testimonial-carousel { cursor: grab; }
.testimonial-carousel.dragging { cursor: grabbing; user-select: none; }

/* --- SECTION 5: OFFER --- */
.offer {
    background-color: var(--section-bg-light);
}
.offer-box {
    background: #fff;
    text-align: left;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    margin-top: 40px;
}
.offer-box h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}
.offer-box ul {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
    margin-bottom: 40px;
}
.offer-box li {
    margin-bottom: 15px;
}
.bonus-item {
    font-weight: 700;
    color: var(--primary-color);
}
.final-cta-area {
    position: relative;
    background: url('img/marisa.webp') center/cover no-repeat;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    margin-top: 30px;
    color: #ffffff;
    overflow: hidden;
}

.final-cta-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6); /* slightly lighter overlay */
    border-radius: inherit;
    z-index: 0;
}

.final-cta-area > * {
    position: relative;
    z-index: 1;
}

.final-cta-area .price-display .price-old { color: #e0e0e0; }
.final-cta-area .price-display .price-new { color: #ffffff; }
.final-cta-area .discount-badge { box-shadow: none; }
.final-cta-area .discount-badge {
    display: inline-block;
    margin-left: 10px;
}
.price-box { margin-bottom: 20px; }
.price-box p { margin: 0 0 5px 0; font-weight: 700; }
.secure-checkout-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 15px;
}
.final-cta-area .secure-checkout-note {
    color: #ffffff;
}

/* --- SECTION 6: FOOTER / FINAL PUSH --- */
.final-push {
    background-color: #fff;
    padding-bottom: 120px; /* Space for mobile CTA bar */
}
.faq-headline {
    font-size: 2.2rem;
    margin-bottom: 40px;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
    margin-bottom: 50px;
}
.faq-item {
    background: var(--section-bg-light);
    padding: 20px;
    border-radius: 8px;
}
.faq-item h4 { margin: 0 0 10px 0; font-size: 1.2rem; }
.final-push-copy {
    font-size: 1.4rem;
    font-weight: 700;
    max-width: 600px;
    margin: 50px auto 0;
    line-height: 1.6;
    color: var(--text-color);
}

/* FAQ CTA Button */
.faq-cta {
    margin-top: 40px;
}

/* LEGAL FOOTER */
.site-footer {
    background-color: #0e1624;
    color: #cbd5e1;
    text-align: center;
    padding: 50px 20px;
    font-size: 0.9rem;
}
.legal-container a { color: #cbd5e1; text-decoration: underline; }
.legal-container a:hover { color: #ffffff; }
.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}
.legal-disclaimer { max-width: 800px; margin: 10px auto 0; line-height: 1.5; }
@media (max-width: 767px) {
    .footer-logo { height: 50px; }
    .legal-disclaimer { font-size: 0.8rem; }
}

/* --- MOBILE STICKY CTA BAR --- */
.mobile-cta-bar {
    position: fixed;
    bottom: -120px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 20px;
    text-align: center;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.08);
    transition: bottom 0.4s ease-in-out;
    backdrop-filter: blur(8px);
    z-index: 1000;
}
.mobile-cta-bar.visible { bottom: 0; }
.mobile-cta-bar .cta-button { width: 90%; max-width: 400px; }

/* Hide sticky mobile CTA bar */
.mobile-cta-bar{display:none!important;}

/* --- MEDIA QUERIES --- */
@media (min-width: 768px) {
    body { font-size: 18px; }
    .section-headline { font-size: 3.2rem; }
    .hero-headline { font-size: 4.5rem; }
    .pain-points-grid { grid-template-columns: repeat(3, 1fr); }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .step-card { flex-direction: column; text-align: center; align-items: center; }
    .faq-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 992px) {
    .container { max-width: 960px; }
    .logo-strip img { width: 90%; }
} 

/* --- MOBILE LOGO STRIP SCROLL --- */
@media (max-width: 767px) {
    .logo-strip{
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
        /* Hide scrollbar on mobile */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    /* Hide scrollbar in WebKit browsers */
    .logo-strip::-webkit-scrollbar{
        display:none;
    }
    .logo-strip img{
        height:auto;
        width:800px; /* wider than viewport so user can swipe */
        max-width:none;
    }
} 

/* --- EXPANDED LOGO STRIP FOR MEDIUM & LARGE SCREENS --- */
@media (min-width: 768px) {
    .logo-strip{
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    .logo-strip::-webkit-scrollbar{ display:none; }
    .logo-strip img{
        max-width: none;
        width: 1200px; /* wider than viewport to enlarge logos */
    }
}
@media (min-width: 992px) {
    .logo-strip img{
        width: 1600px; /* even larger for desktops */
    }
} 

/* Lighter highlight for words inside dark-overlay cards */
.pain-point .highlight-word {
    color: var(--pink-accent); /* CTA pink */
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
} 

/* Highlight in step cards */
.step-card .highlight-word {
    color: var(--pink-accent);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Bold description text inside step cards */
.step-card.data-bg p,
.step-card.mapa-bg p,
.step-card.badge-bg p {
    font-weight: 700;
}

/* Spacing for CTA in pain section */
.pain-cta {
    display: inline-block;
    margin: 40px auto 20px;
} 

/* --- STEP CARD MOBILE LAYOUT FIX --- */
@media (max-width: 767px) {
    .step-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .step-card .step-number {
        margin-bottom: 15px;
    }
} 

/* --- OFFER BENEFITS LIST --- */
.offer-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}
.offer-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.05rem;
}
.offer-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    margin-right: 18px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.offer-benefits li strong {
    color: var(--primary-color);
    white-space: nowrap;
}
.offer-benefits .bonus-item {
    font-weight: 700;
    color: var(--pink-accent);
} 

@media (max-width: 767px) {
    .offer-icon {
        width: 40px;
        height: 40px;
        margin-right: 14px;
    }
    .offer-benefits li {
        gap: 14px;
    }
} 

/* Remove neon glow for highlighted words in offer list */
.offer-benefits .highlight-word {
    text-shadow: none;
    font-weight: 800;
} 

/* --- OFFER CONTENT FLEX --- */
.offer-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.offer-benefits {
    flex: 2 1 auto; /* Increase flex-grow for more space */
    min-width: 0;
}

.offer-side {
    flex: 1 1 300px; /* Slightly reduce image column */
    max-width: 380px;
}

.offer-side-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.bonus-copy {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 1.05rem;
    text-align: left;
    max-width: 340px;
}

.offer-icon-small {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

@media (max-width: 767px) {
    .offer-content {
        flex-direction: column;
        align-items: center;
    }
    .offer-image {
        flex: none;
    }
    .offer-image img {
        max-width: 260px;
        margin-top: 20px;
    }
    .offer-side {
        flex: none;
        width: 100%;
    }
    .bonus-copy {
        max-width: 100%;
        justify-content: center;
        gap: 14px;
        font-size: 1rem;
    }
    .offer-icon-small {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
} 

.pink-highlight {
    color: var(--pink-accent);
    font-weight: 900;
}

/* Keep bonus copy highlights purple but no glow */
.bonus-copy .highlight-word {
    color: var(--primary-color);
    text-shadow: none;
    font-weight: 900;
} 

/* slightly reduce icon size on very narrow screens */
@media (max-width: 480px) {
    .offer-icon, .offer-icon-small {
        width: 36px;
        height: 36px;
    }
    .offer-benefits li {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }
} 

@media (max-width: 480px) {
    .offer-benefits .highlight-word {
        color: inherit; /* remove purple on very small screens to prevent awkward breaks */
    }
} 

/* ThriveCart modal */
.checkout-modal{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.75);display:flex;align-items:center;justify-content:center;z-index:2000;}
.checkout-modal-content{background:#fff;border-radius:8px;max-width:680px;width:90%;padding:20px;position:relative;}
.checkout-close{position:absolute;top:10px;right:15px;font-size:1.8rem;cursor:pointer;color:#333;} 

/* Modal responsiveness */
.checkout-modal{
    justify-content:center; /* keep horizontal center */
    -webkit-overflow-scrolling:touch;
    overscroll-behavior:contain;
}
.checkout-modal-content{
    max-height:calc(100vh - 80px);
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior:contain;
} 

/* New testimonial grid layout */
.testimonial-grid{display:grid;grid-template-columns:1fr;gap:40px;margin-bottom:40px;}
@media(min-width:768px){.testimonial-grid{grid-template-columns:1fr 1fr;}}
.testimonial-card{background:rgba(255,255,255,0.05);padding:40px;border-radius:12px;text-align:center;}
.testimonial-card blockquote{font-size:1.25rem;font-style:italic;line-height:1.5;margin:0 0 20px;}
.testimonial-card figcaption{font-weight:700;font-size:1.1rem;color:#f7b733;} 

/* Hero image card with light overlay */
.hero-image-card{background:rgba(255,255,255,0.08);padding:20px;border-radius:16px;box-shadow:0 10px 30px rgba(0,0,0,0.15);display:flex;justify-content:center;align-items:center;}
@media(max-width:767px){.hero-image-card{padding:10px;}} 

/* --- MARISA SECTION --- */
.marisa-section{background:#d1dbe8;padding:60px 0 0;position:relative;overflow:hidden;}
.marisa-inner{display:flex;align-items:flex-end;gap:40px;max-width:1000px;margin:0 auto;position:relative;}
.marisa-image{flex:0 0 360px;display:flex;justify-content:center;}
.marisa-img{width:100%;height:auto;object-fit:contain;}
.marisa-card{flex:1;background:#fff;padding:60px 50px;border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,0.08);text-align:left;}
.marisa-headline{font-size:2rem;color:#0891b2;font-weight:900;margin-top:0;}
.marisa-sub{font-size:2rem;color:#f59e0b;font-family:'Inter',sans-serif;font-style:italic;margin-top:0;margin-bottom:20px;}
.marisa-signature{width:200px;height:auto;margin-top:20px;margin-left:40px;}
@media(max-width:767px){.marisa-inner{flex-direction:column;align-items:center;text-align:center;}.marisa-image{flex:none;width:70%;max-width:260px;}.marisa-card{padding:40px 25px;}} 

/* Marisa CTA row */
.marisa-cta-row{display:flex;align-items:center;gap:20px;margin-top:25px;}
.marisa-cta-row .marisa-signature{margin-top:0;margin-left:0;width:180px;}
@media(max-width:767px){.marisa-cta-row{flex-direction:column;gap:15px;}.marisa-cta-row .marisa-signature{
    width:160px;
}}
/* Mobile fix for floating image */
@media(max-width:767px){
  .marisa-section{padding-bottom:0;}
  .marisa-inner{padding-bottom:0;}
  .marisa-image{margin-bottom:-30px;}
  .marisa-card{margin-top:-30px;}
} 

/* Offer benefits layout fix */
.offer-benefits{display:block;margin:40px 0 30px;padding:0;list-style:none;}
.offer-benefits li{display:grid;grid-template-columns:52px 1fr;align-items:start;column-gap:18px;margin-bottom:25px;font-size:1.1rem;line-height:1.5;}
.offer-benefits li img{width:52px;height:52px;border-radius:10px;object-fit:cover;box-shadow:0 2px 6px rgba(0,0,0,0.05);}
.offer-benefits li strong{display:block;color:var(--primary-color);margin-bottom:3px;}
@media(min-width:768px){.offer-benefits li{font-size:1.1rem;}} 

.offer-hero-img{margin:40px 0;text-align:center;}
.offer-hero-img img{width:100%;max-width:800px;border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,0.1);} 

.offer-content{display:grid;grid-template-columns:1.5fr 1fr;gap:40px;}
.offer-aside-column{display:flex;flex-direction:column;justify-content:space-between;}
.offer-aside-image{flex-grow:1;display:flex;align-items:flex-end;justify-content:center;}
.offer-aside-image img{width:100%;max-width:420px;height:auto;}
@media(max-width:767px){.offer-content{grid-template-columns:1fr;gap:20px;}.offer-aside-image{margin-top:30px;}} 

@media(max-width:767px){
  .offer-content{grid-template-columns:1fr;padding:0 15px;}
  .offer-box{padding:25px;}
  .offer-benefits-column,.offer-aside-column{width:100%;}
  .offer-aside-image{margin-top:20px;}
  .offer-aside-image img{max-width:100%;}
}

@media(max-width:480px){
  .offer-box{padding:20px 15px;}
  .offer-benefits li{grid-template-columns:44px 1fr;column-gap:12px;font-size:1rem;}
  .offer-benefits li img{width:44px;height:44px;}
  .offer-box h3{font-size:1.5rem;}
} 