/*
 * Real Clear Biogenix — home.css
 * Dark hero · Bebas Neue headlines · Blue accent (#1e82f0)
 * Scoped to body.home (front-page.php)
 */

/* =========================================================
   TOKENS
   ========================================================= */
body.home {
    --v3-dark:       #0a0a0a;
    --v3-navy:       #0a0f1e;
    --v3-navy-2:     #0d1528;
    --v3-light:      #f5f5f5;
    --v3-white:      #ffffff;
    --v3-text:       #111111;
    --v3-muted:      #6b7280;
    --v3-muted-lt:   #9ca3af;
    --v3-blue:       #1e82f0;
    --v3-blue-dk:    #1668cc;
    --v3-blue-lt:    #e6f0fd;
    --v3-border:     #e5e7eb;
    --v3-heading:    'Bebas Neue', 'Impact', 'Arial Narrow', sans-serif;
    --v3-body:       'Inter', system-ui, sans-serif;
    --v3-max:        1200px;
    --v3-px:         40px;
    --v3-shadow-sm:  0 1px 4px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.05);
    --v3-shadow-md:  0 4px 16px rgba(0,0,0,.1), 0 12px 40px rgba(0,0,0,.08);
}

/* =========================================================
   BASE
   ========================================================= */
body.home body,
body.home .rcb-page-wrap,
body.home #rcb-main {
    background: var(--v3-light);
    color: var(--v3-text);
    font-family: var(--v3-body);
}

/* =========================================================
   HERO — full bleed dark, split 55/45
   ========================================================= */
body.home .rcb-hero {
    margin: 0;
    border-radius: 0;
    min-height: 720px;
    background: linear-gradient(to right, rgba(10,10,10,0.85) 0%, rgba(10,15,30,0.72) 45%, rgba(10,15,30,0.35) 100%), url('/wp-content/uploads/2026/06/Gemini-Generated-Image-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: visible;
    border-bottom: none;
    padding: 88px var(--v3-px);
}

body.home .rcb-hero__container {
    max-width: var(--v3-max);
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 64px;
    align-items: center;
    width: 100%;
}

/* Left column = hero copy */
body.home .rcb-hero__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Badge */
body.home .rcb-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--v3-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 28px;
}

/* Headline — Bebas Neue, massive */
body.home .rcb-hero__heading {
    font-family: var(--v3-heading);
    font-size: clamp(72px, 9.5vw, 116px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 24px;
}

body.home .rcb-hero__accent {
    color: var(--v3-blue);
    font-style: normal;
}

/* Subtext */
body.home .rcb-hero__sub {
    font-family: var(--v3-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255,255,255,.6);
    max-width: 440px;
    margin: 0 0 36px;
}

/* CTA row */
body.home .rcb-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
    align-items: center;
}

/* Primary CTA — filled blue */
body.home .rcb-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--v3-blue);
    color: #ffffff;
    font-family: var(--v3-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 4px;
    border: 2px solid var(--v3-blue);
    text-decoration: none;
    white-space: nowrap;
    transition: background .18s, border-color .18s, transform .15s;
    transform: none;
}
body.home .rcb-hero__cta:hover,
body.home .rcb-hero__cta:focus-visible {
    background: var(--v3-blue-dk);
    border-color: var(--v3-blue-dk);
    transform: translateY(-1px);
    outline: none;
}

/* Ghost CTA — outlined white */
body.home .rcb-hero__cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #ffffff;
    font-family: var(--v3-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 12px 26px;
    border: 2px solid rgba(255,255,255,.35);
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color .18s, color .18s;
}
body.home .rcb-hero__cta-ghost:hover {
    border-color: #ffffff;
    color: #ffffff;
}

/* Trust line */
body.home .rcb-hero__trust {
    font-family: var(--v3-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin: 0;
}

/* Right column — product image with subtle surface grounding */
body.home .rcb-hero__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 0;
    gap: 0;
    padding: 0;
}

/* Subtle blurred dark surface behind bottles */
body.home .rcb-hero__visual::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 120px;
    background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(30,130,240,.08) 0%, transparent 70%);
    border-radius: 50% 50% 0 0;
    filter: blur(40px);
    z-index: 2;
}

/* Hide stats on v3 — brief doesn't include them in hero */
body.home .rcb-hero__stats {
    display: none;
}

/* Product image — full width, grounded with subtle shadow, centered */
body.home .rcb-hero__product-img {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 360px;
    max-height: none;
    height: auto;
    object-fit: contain;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    filter: drop-shadow(0 48px 72px rgba(0,0,0,.35));
}

/* =========================================================
   FEATURES — hidden on V3 (trust bar covers same ground)
   ========================================================= */
body.home .rcb-features {
    display: none;
}

/* keep selector for specificity but all hidden */
body.home .rcb-features-UNUSED {
    background: var(--v3-light);
    padding: 80px var(--v3-px);
    border-bottom: none;
    max-width: none;
    margin: 0;
}

body.home .rcb-features__container {
    max-width: var(--v3-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

body.home .rcb-feature {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px 24px;
    background: var(--v3-white);
    border: none;
    border-radius: 8px;
    box-shadow: var(--v3-shadow-sm);
    transition: box-shadow .2s, transform .2s;
}
body.home .rcb-feature:hover {
    box-shadow: var(--v3-shadow-md);
    transform: translateY(-2px);
}

body.home .rcb-feature__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--v3-blue-lt);
    border-radius: 8px;
    color: var(--v3-blue);
    flex-shrink: 0;
}
body.home .rcb-feature__icon svg {
    width: 22px;
    height: 22px;
}

body.home .rcb-feature__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body.home .rcb-feature__heading {
    font-family: var(--v3-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--v3-text);
    margin: 0;
}

body.home .rcb-feature__text {
    font-family: var(--v3-body);
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--v3-muted);
    margin: 0;
}

/* =========================================================
   SECTION LABELS & HEADERS (shared utility)
   ========================================================= */
body.home .rcb-section-label {
    display: inline-block;
    font-family: var(--v3-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--v3-blue);
    padding-bottom: 6px;
    border-bottom: 2px solid var(--v3-blue);
    margin-bottom: 14px;
}

/* Centered variant — replace underline with a centered bar below */
body.home .rcb-section-label--centered {
    display: block;
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 12px;
}
body.home .rcb-section-label--centered::after {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: var(--v3-blue);
    margin: 8px auto 0;
}

/* Light variant (on dark bg) */
body.home .rcb-section-label--light {
    color: rgba(255,255,255,.5);
    border-bottom-color: rgba(255,255,255,.2);
}
body.home .rcb-section-label--light.rcb-section-label--centered::after {
    background: rgba(255,255,255,.2);
}

body.home .rcb-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

body.home .rcb-section-heading {
    font-family: var(--v3-heading);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: .95;
    color: var(--v3-text);
    margin: 0 0 16px;
}

body.home .rcb-section-sub {
    font-family: var(--v3-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--v3-muted);
    margin: 0 auto;
    max-width: 560px;
}

/* =========================================================
   PRODUCTS — white bg, blue accents
   ========================================================= */
body.home .rcb-products {
    background: var(--v3-white);
    padding: 80px var(--v3-px);
    border-bottom: none;
}

body.home .rcb-products__header {
    max-width: var(--v3-max);
    margin: 0 auto 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

body.home .rcb-products__header-left .rcb-section-label {
    margin-bottom: 10px;
}

body.home .rcb-products__heading {
    font-family: var(--v3-heading);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: .95;
    color: var(--v3-text);
    margin: 0;
}

body.home .rcb-products__view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--v3-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--v3-blue);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 1.5px solid var(--v3-blue);
    padding-bottom: 2px;
    transition: opacity .18s;
}
body.home .rcb-products__view-all:hover { opacity: .7; }

/* Tabs */
body.home .rcb-products__tabs {
    max-width: var(--v3-max);
    margin: 0 auto 28px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

body.home .rcb-products__tab {
    font-family: var(--v3-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 4px;
    border: 1.5px solid var(--v3-border);
    background: transparent;
    color: var(--v3-muted);
    cursor: pointer;
    transition: all .15s;
}
body.home .rcb-products__tab:hover,
body.home .rcb-products__tab.is-active {
    border-color: var(--v3-blue);
    color: var(--v3-blue);
    background: var(--v3-blue-lt);
}

/* Grid */
body.home .rcb-products__grid {
    max-width: var(--v3-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

body.home .rcb-product-card {
    background: var(--v3-white);
    border: 1px solid var(--v3-border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--v3-shadow-sm);
    transition: box-shadow .2s, transform .2s;
}
body.home .rcb-product-card:hover {
    box-shadow: var(--v3-shadow-md);
    transform: translateY(-3px);
}
body.home .rcb-product-card.is-hidden { display: none; }

body.home .rcb-product-card__img-wrap {
    display: block;
    position: relative;
    background: var(--v3-white);
    aspect-ratio: 1;
    overflow: visible;
    padding: 20px;
}

body.home .rcb-product-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    left: auto;
    font-family: var(--v3-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--v3-blue);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 1;
}

body.home .rcb-product-card__img {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 0;
    background: transparent;
    transition: transform .35s ease;
    max-width: 100%;
}
body.home .rcb-product-card:hover .rcb-product-card__img {
    transform: scale(1.05);
}

body.home .rcb-product-card__body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

body.home .rcb-product-card__cat {
    font-family: var(--v3-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--v3-blue);
}

body.home .rcb-product-card__name {
    font-family: var(--v3-body);
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -.01em;
}
body.home .rcb-product-card__name a {
    color: var(--v3-text);
    text-decoration: none;
    transition: color .15s;
}
body.home .rcb-product-card__name a:hover {
    color: var(--v3-blue);
}

body.home .rcb-product-card__price {
    font-family: var(--v3-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--v3-text);
    margin-top: auto;
    padding-top: 8px;
}

/* Button — blue outline → fill on hover */
body.home .rcb-product-card__btn {
    display: block;
    text-align: center;
    font-family: var(--v3-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--v3-blue);
    background: transparent;
    border: 1.5px solid var(--v3-blue);
    border-radius: 4px;
    padding: 10px 16px;
    text-decoration: none;
    margin-top: 10px;
    transition: background .18s, color .18s;
}
body.home .rcb-product-card__btn:hover {
    background: var(--v3-blue);
    color: #ffffff;
}

/* =========================================================
   QUALITY — dark navy, strong contrast
   ========================================================= */
body.home .rcb-quality {
    background: var(--v3-navy);
    background-image: linear-gradient(to right, rgba(13,21,40,0) 0%, rgba(13,21,40,1) 60%), url('/wp-content/uploads/2026/06/Imagen-comprimida-TinyPNG.jpg');
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    padding: 80px var(--v3-px);
    border-bottom: none;
}

body.home .rcb-quality__inner {
    max-width: var(--v3-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

body.home .rcb-quality__img-wrap {
    /* display: none; */
}

body.home .rcb-quality__img {
    display: none;
}

body.home .rcb-quality__content { }

body.home .rcb-quality__content .rcb-section-label {
    color: var(--v3-blue);
    border-bottom-color: var(--v3-blue);
}

body.home .rcb-quality__heading {
    font-family: var(--v3-heading);
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: .95;
    color: #ffffff;
    margin: 0 0 20px;
}

body.home .rcb-quality__desc {
    font-family: var(--v3-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255,255,255,.55);
    margin: 0 0 36px;
}

body.home .rcb-quality__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

body.home .rcb-quality__value {
    padding: 20px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 6px;
    background: rgba(255,255,255,.04);
    border-left: 3px solid var(--v3-blue);
}
body.home .rcb-quality__value h4 {
    font-family: var(--v3-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 6px;
}
body.home .rcb-quality__value p {
    font-family: var(--v3-body);
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255,255,255,.45);
    margin: 0;
}

/* =========================================================
   THIRD PARTY VERIFICATION — light bg
   ========================================================= */
body.home .rcb-third-party {
    background: var(--v3-light);
    padding: 80px var(--v3-px);
    border-bottom: none;
    color: var(--v3-text);
}

body.home .rcb-third-party__inner {
    max-width: var(--v3-max);
    margin: 0 auto;
}

body.home .rcb-third-party .rcb-section-heading {
    color: var(--v3-text);
}
body.home .rcb-third-party .rcb-section-sub {
    color: var(--v3-muted);
}

body.home .rcb-third-party__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 0;
}

body.home .rcb-tp-card {
    background: var(--v3-white);
    border: 1px solid var(--v3-border);
    border-radius: 8px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--v3-text);
    transition: box-shadow .2s, transform .2s;
    border-top: 3px solid var(--v3-blue);
}
body.home .rcb-tp-card:hover {
    box-shadow: var(--v3-shadow-md);
    transform: translateY(-2px);
}

body.home .rcb-tp-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--v3-blue-lt);
    border-radius: 8px;
    color: var(--v3-blue);
    flex-shrink: 0;
}
body.home .rcb-tp-card__icon svg {
    width: 20px;
    height: 20px;
}

body.home .rcb-tp-card h3 {
    font-family: var(--v3-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--v3-text);
    margin: 0;
}
body.home .rcb-tp-card p {
    font-family: var(--v3-body);
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--v3-muted);
    margin: 0;
}

/* =========================================================
   FAQ — white bg, clean line dividers only
   ========================================================= */
body.home .rcb-faq {
    background: var(--v3-white);
    padding: 80px var(--v3-px);
    border-bottom: none;
}

body.home .rcb-faq__inner {
    max-width: 720px;
    margin: 0 auto;
}

body.home .rcb-faq .rcb-section-heading {
    color: var(--v3-text);
}

body.home .rcb-faq__grid {
    display: flex !important;
    flex-direction: column;
    gap: 0 !important;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

body.home .rcb-faq__item {
    border: none !important;
    border-bottom: 1px solid var(--v3-border) !important;
    border-radius: 0 !important;
    overflow: visible;
    margin: 0;
    background: transparent;
}
body.home .rcb-faq__item:last-child {
    border-bottom: none !important;
}

body.home .rcb-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--v3-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--v3-text);
    transition: color .15s;
}
body.home .rcb-faq__q:hover,
body.home .rcb-faq__q[aria-expanded="true"] {
    color: var(--v3-blue);
}

body.home .rcb-faq__toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--v3-border);
    border-radius: 50%;
    color: var(--v3-muted);
    transition: all .15s;
}
body.home .rcb-faq__q:hover .rcb-faq__toggle,
body.home .rcb-faq__q[aria-expanded="true"] .rcb-faq__toggle {
    border-color: var(--v3-blue);
    background: var(--v3-blue);
    color: #fff;
}

body.home .rcb-faq__plus  { display: block; }
body.home .rcb-faq__minus { display: none; }
body.home .rcb-faq__q[aria-expanded="true"] .rcb-faq__plus  { display: none; }
body.home .rcb-faq__q[aria-expanded="true"] .rcb-faq__minus { display: block; }

body.home .rcb-faq__a {
    padding: 0 0 20px;
    font-family: var(--v3-body);
    font-size: 14px;
    line-height: 1.75;
    color: var(--v3-muted);
}
body.home .rcb-faq__a p { margin: 0; }

/* =========================================================
   REVIEWS / TESTIMONIALS — light bg
   ========================================================= */
body.home .rcb-reviews {
    background: var(--v3-light);
    padding: 80px var(--v3-px);
    border-bottom: none;
}

body.home .rcb-reviews__inner {
    max-width: var(--v3-max);
    margin: 0 auto;
}

body.home .rcb-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

body.home .rcb-review-card {
    padding: 28px;
    border: none;
    border-radius: 8px;
    background: var(--v3-white);
    box-shadow: var(--v3-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow .2s, transform .2s;
}
body.home .rcb-review-card:hover {
    box-shadow: var(--v3-shadow-md);
    transform: translateY(-2px);
}

body.home .rcb-review-card__stars {
    color: var(--v3-blue);
    font-size: 14px;
    letter-spacing: 3px;
}

body.home .rcb-review-card__text {
    font-family: var(--v3-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--v3-text);
    margin: 0;
    font-style: italic;
}

body.home .rcb-review-card__footer {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--v3-border);
}
body.home .rcb-review-card__name {
    font-family: var(--v3-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--v3-text);
}
body.home .rcb-review-card__title {
    font-family: var(--v3-body);
    font-size: 11px;
    color: var(--v3-muted-lt);
    letter-spacing: .04em;
}

/* =========================================================
   DISCLAIMER
   ========================================================= */
body.home .rcb-disclaimer-banner {
    background: var(--v3-light);
    border-top: 1px solid var(--v3-border);
    border-bottom: none;
    padding: 20px var(--v3-px);
}
body.home .rcb-disclaimer-banner__inner {
    max-width: var(--v3-max);
    margin: 0 auto;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
body.home .rcb-disclaimer-banner__icon {
    color: var(--v3-muted-lt);
    flex-shrink: 0;
    margin-top: 1px;
}
body.home .rcb-disclaimer-banner__text {
    font-family: var(--v3-body);
    font-size: 12px;
    line-height: 1.7;
    color: var(--v3-muted);
    margin: 0;
}
body.home .rcb-disclaimer-banner__text strong {
    color: var(--v3-text);
    font-weight: 700;
}

/* =========================================================
   CTA BANNER — dark navy, full bleed
   ========================================================= */
body.home .rcb-cta-banner {
    background: var(--v3-navy-2);
    padding: clamp(72px, 9vw, 112px) var(--v3-px);
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow for the "screams trust" feel */
body.home .rcb-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(26,111,196,.15) 0%, transparent 70%);
    pointer-events: none;
}

body.home .rcb-cta-banner__inner {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

body.home .rcb-cta-banner .rcb-section-label {
    color: rgba(255,255,255,.4);
    border-bottom-color: rgba(255,255,255,.2);
}

body.home .rcb-cta-banner__heading {
    font-family: var(--v3-heading);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: .95;
    color: #ffffff;
    margin: 0;
}

body.home .rcb-cta-banner__sub {
    font-family: var(--v3-body);
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,.5);
    margin: 0;
    max-width: 460px;
}

body.home .rcb-cta-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--v3-blue);
    color: #ffffff;
    font-family: var(--v3-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 15px 32px;
    border-radius: 4px;
    border: 2px solid var(--v3-blue);
    text-decoration: none;
    margin-top: 4px;
    transition: background .18s, border-color .18s, transform .15s;
}
body.home .rcb-cta-banner__btn:hover {
    background: var(--v3-blue-dk);
    border-color: var(--v3-blue-dk);
    transform: translateY(-1px);
}

/* Reviews "Read More" button — hidden on desktop, shown via mobile MQ */
body.home .rcb-reviews__more-btn {
    display: none;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    body.home .rcb-features__container,
    body.home .rcb-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    body.home .rcb-third-party__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    body.home {
        --v3-px: 20px;
        overflow-x: hidden;
    }

    /* ---- Hero ---- */
    body.home .rcb-hero {
        padding: 56px var(--v3-px) 48px;
        min-height: auto;
        background-attachment: scroll;
    }
    body.home .rcb-hero__container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    body.home .rcb-hero__heading {
        font-size: clamp(52px, 9vw, 72px);
    }
    body.home .rcb-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }
    body.home .rcb-hero__cta,
    body.home .rcb-hero__cta-ghost {
        justify-content: center;
        min-height: 44px;
    }
    /* Product image: below copy, full width, scaled to fit */
    body.home .rcb-hero__visual {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        order: 1;
    }
    body.home .rcb-hero__product-img {
        width: 100%;
        max-width: 100%;
        max-height: none;
        filter: drop-shadow(0 20px 40px rgba(0,0,0,.4));
    }

    /* ---- Product tabs ---- */
    body.home .rcb-products__tab {
        min-height: 44px;
        padding: 10px 14px;
    }

    /* ---- Products grid: always 2 columns ---- */
    body.home .rcb-products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    body.home .rcb-product-card__img-wrap {
        aspect-ratio: unset;
        height: 200px;
        padding: 12px;
        overflow: hidden;
    }
    body.home .rcb-product-card__img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    body.home .rcb-product-card__body {
        padding: 10px 10px 14px;
    }
    body.home .rcb-product-card__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 10px 8px;
    }

    /* ---- Quality: image on top, content below ---- */
    body.home .rcb-quality {
        background-image: none;
        padding: 0;
    }
    body.home .rcb-quality__inner {
        grid-template-columns: 1fr;
        gap: 0;
    }
    body.home .rcb-quality__img-wrap {
        min-height: 240px;
        background-image: url('/wp-content/uploads/2026/06/Imagen-comprimida-TinyPNG.jpg');
        background-size: cover;
        background-position: center;
        border-radius: 0;
    }
    body.home .rcb-quality__content {
        padding: 48px var(--v3-px) 64px;
    }
    /* Keep 2×2 values grid; loosen cramped text */
    body.home .rcb-quality__values {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    body.home .rcb-quality__value {
        padding: 14px;
    }
    body.home .rcb-quality__value p {
        font-size: 12px;
    }

    /* ---- Third party: 2×2 + 5th card full width ---- */
    body.home .rcb-third-party__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    body.home .rcb-tp-card:nth-child(5) {
        grid-column: 1 / -1;
    }
    body.home .rcb-tp-card__icon {
        width: 52px;
        height: 52px;
    }
    body.home .rcb-tp-card__icon svg {
        width: 28px;
        height: 28px;
    }

    /* ---- Section padding: consistent 56px on mobile ---- */
    body.home .rcb-products,
    body.home .rcb-third-party,
    body.home .rcb-faq,
    body.home .rcb-reviews {
        padding-top: 56px;
        padding-bottom: 56px;
    }
    body.home .rcb-cta-banner {
        padding: 56px var(--v3-px);
    }

    /* ---- Reviews: show 3, hide rest until toggle ---- */
    body.home .rcb-reviews__grid {
        grid-template-columns: 1fr;
    }
    body.home .rcb-review-card:nth-child(n+4) {
        display: none;
    }
    body.home .rcb-reviews__grid.is-expanded .rcb-review-card {
        display: flex;
    }
    body.home .rcb-reviews__more-btn {
        display: block;
        margin: 24px auto 0;
        font-family: var(--v3-body);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--v3-blue);
        background: transparent;
        border: 1.5px solid var(--v3-blue);
        border-radius: 4px;
        padding: 12px 28px;
        cursor: pointer;
        min-height: 44px;
        transition: background .18s, color .18s;
    }
    body.home .rcb-reviews__more-btn:hover {
        background: var(--v3-blue);
        color: #fff;
    }
    body.home .rcb-reviews__more-btn.is-hidden {
        display: none;
    }

    /* ---- Features (hidden, keep override) ---- */
    body.home .rcb-features__container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body.home {
        --v3-px: 16px;
    }
    body.home .rcb-hero__heading {
        font-size: clamp(46px, 12vw, 54px);
    }
    /* Products stay 2 columns at small sizes */
    body.home .rcb-products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    /* Third party stays 2 columns at small sizes */
    body.home .rcb-third-party__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
