/* ═══════════════════════════════════════════════════════════════════════════
   REBUILD — Athlete Recovery Landing Page
   Samsara Experience · Loaded only on: /product/athlete-team-rebuild/
   Colors: #0C0004 dark · #BA4542 red · #E2B72D gold
   Font:   Montserrat 600/500/300
═══════════════════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────────────────── */
:root {
    --rb-dark:       #0C0004;
    --rb-red:        #BA4542;
    --rb-gold:       #E2B72D;
    --rb-white:      #ffffff;
    --rb-off-white:  #f5f5f5;
    --rb-body-lt:    #3e3d43;
    --rb-muted:      rgba(255,255,255,0.55);
    --rb-border:     rgba(255,255,255,0.1);
    --rb-border-lt:  rgba(12,0,4,0.1);
    --rb-radius:     3px;
    --rb-font:       'Montserrat', sans-serif;
    --rb-pad:        100px 80px;
}

/* ── Base override for this page ────────────────────────────────────────── */
.rebuild-landing {
    font-family: var(--rb-font);
    background: var(--rb-white);
    color: var(--rb-dark);
    overflow-x: hidden;
}
.rebuild-landing #wrapper-navbar { display: none !important; }
.rebuild-landing .wrapper { padding-top: 0 !important; }

/* ── Scroll reveal ──────────────────────────────────────────────────────── */
.rb-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.rb-reveal.rb-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Animations ─────────────────────────────────────────────────────────── */
@keyframes rbFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════
   MINIMAL NAV
═══════════════════════════════════ */
.rb-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    background: rgba(12,0,4,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rb-border);
    height: 73px;
}
.rb-nav__logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}
.rb-nav__logo-img { max-height: 36px; width: auto; }
.rb-nav__logo-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--rb-white);
    letter-spacing: -0.3px;
}
.rb-nav__links {
    display: flex;
    gap: 32px;
    align-items: center;
}
.rb-nav__links a {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}
.rb-nav__links a:hover { color: var(--rb-white); }
.rb-nav__cta {
    display: inline-block;
    background: var(--rb-red);
    color: var(--rb-white) !important;
    padding: 10px 22px;
    border-radius: var(--rb-radius);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s;
}
.rb-nav__cta:hover {
    background: var(--rb-gold);
    color: var(--rb-dark) !important;
}
.rb-nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.rb-nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--rb-white);
    border-radius: 2px;
}
/* Mobile nav drawer */
.rb-nav-mobile {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 73px; left: 0; right: 0;
    background: var(--rb-dark);
    padding: 32px 24px 40px;
    z-index: 99;
    gap: 0;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    border-top: 1px solid var(--rb-border);
}
.rb-nav-mobile--open { transform: translateY(0); }
.rb-nav-mobile a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid var(--rb-border);
    display: block;
    transition: color 0.2s;
}
.rb-nav-mobile a:last-child { border-bottom: none; }
.rb-nav-mobile a:hover { color: var(--rb-white); }
.rb-nav-mobile .rb-btn-primary {
    margin-top: 20px;
    text-align: center;
    justify-content: center;
}

/* ═══════════════════════════════════
   SHARED SECTION STYLES
═══════════════════════════════════ */
.rb-section { padding: var(--rb-pad); }
.rb-section--alt { background: var(--rb-off-white); }
.rb-dark {
    background: var(--rb-dark);
    color: var(--rb-white);
}

.rb-section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rb-gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.rb-section-tag--center { justify-content: center; }
.rb-section-num { color: var(--rb-gold); font-weight: 500; }
.rb-dark .rb-section-tag { color: var(--rb-gold); }
.rb-dark .rb-section-num { color: var(--rb-gold); }

.rb-section h2 {
    font-family: var(--rb-font) !important;
    font-size: clamp(28px, 3.5vw, 46px) !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: var(--rb-dark) !important;
}
.rb-dark h2 { color: var(--rb-white) !important; }
.rb-section h2 em { font-style: italic; color: var(--rb-red); }
.rb-dark h2 em { color: var(--rb-red) !important; }

.rb-lead {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    color: var(--rb-body-lt);
    margin-bottom: 28px;
}
.rb-dark .rb-lead { color: var(--rb-muted); }

/* ═══════════════════════════════════
   BUTTONS
═══════════════════════════════════ */
.rb-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rb-red);
    color: var(--rb-white) !important;
    padding: 16px 32px;
    font-family: var(--rb-font) !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    border-radius: var(--rb-radius);
    transition: background 0.2s, transform 0.2s, color 0.2s;
    white-space: nowrap;
}
.rb-btn-primary:hover {
    background: #8a302e;
    color: var(--rb-white) !important;
    transform: translateY(-2px);
    text-decoration: none !important;
}
.rb-btn-primary--block { width: 100%; justify-content: center; }
.rb-btn-primary--light {
    background: var(--rb-white);
    color: var(--rb-red) !important;
}
.rb-btn-primary--light:hover {
    background: var(--rb-dark);
    color: var(--rb-white) !important;
}
.rb-arrow { transition: transform 0.2s; }
.rb-btn-primary:hover .rb-arrow { transform: translateX(4px); }

.rb-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(12,0,4,0.5);
    font-family: var(--rb-font) !important;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 4px;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.rb-btn-ghost:hover {
    color: var(--rb-dark);
    border-bottom-color: var(--rb-red);
    text-decoration: none;
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.rb-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 73px;
}
.rb-hero__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px 80px 80px;
    position: relative;
    z-index: 2;
    background: var(--rb-white);
}
.rb-hero__content { max-width: 560px; }

.rb-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--rb-gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    animation: rbFadeUp 0.6s ease both;
}
.rb-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--rb-gold);
    flex-shrink: 0;
}

.rb-hero__h1 {
    font-family: var(--rb-font) !important;
    font-size: clamp(40px, 5vw, 68px) !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--rb-dark);
    display: block;
    white-space: nowrap;
    animation: rbFadeUp 0.7s 0.1s ease both;
}
.rb-hero__h1 .rb-accent {
    display: block;
    color: var(--rb-red);
    font-style: italic;
}

.rb-hero__sub {
    font-size: 17px;
    line-height: 1.75;
    color: var(--rb-body-lt);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 440px;
    animation: rbFadeUp 0.7s 0.2s ease both;
}
.rb-hero__ctas {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: rbFadeUp 0.7s 0.3s ease both;
}
.rb-hero__guarantee {
    max-width: 560px;
    padding-top: 32px;
    border-top: 1px solid var(--rb-border-lt);
    animation: rbFadeUp 0.7s 0.4s ease both;
}
.rb-hero__guarantee-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--rb-dark);
    margin: 0 0 8px;
}
.rb-hero__guarantee-body {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(12,0,4,0.65);
    margin: 0;
}
.rb-hero__guarantee-tooltip-wrap {
    position: relative;
    display: inline-block;
    margin-left: 4px;
    vertical-align: middle;
}
.rb-hero__guarantee-info {
    display: inline-flex;
    align-items: center;
    color: rgba(12,0,4,0.35);
    cursor: pointer;
    transition: color 0.2s;
}
.rb-hero__guarantee-info:hover,
.rb-hero__guarantee-info:focus {
    color: var(--rb-red);
}
.rb-hero__guarantee-tooltip {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 280px;
    padding: 12px 14px;
    background: var(--rb-dark);
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10;
    pointer-events: none;
}
.rb-hero__guarantee-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 16px;
    border: 6px solid transparent;
    border-bottom-color: var(--rb-dark);
}
.rb-hero__guarantee-info:hover + .rb-hero__guarantee-tooltip,
.rb-hero__guarantee-info:focus + .rb-hero__guarantee-tooltip {
    display: block;
}

/* Hero right panel */
.rb-hero__right {
    position: relative;
    background: var(--rb-dark);
    overflow: hidden;
}
.rb-hero__overlay {
    position: absolute;
    bottom: 55px;
    left: 55px;
    width: 220px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}
.rb-hero__right-inner {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0C0004 0%, #1a0808 50%, #261010 100%);
}
.rb-hero__fascia-lines {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -30deg,
        transparent, transparent 40px,
        rgba(226,183,45,0.035) 40px, rgba(226,183,45,0.035) 41px
    );
}
.rb-hero__anatomy {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rb-hero__anatomy svg { width: 300px; height: 420px; opacity: 0.9; }

.rb-hero__float-card {
    position: absolute;
    top: 64px;
    right: 36px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(226,183,45,0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 18px 22px;
    border-radius: 4px;
    max-width: 190px;
}
.rb-hero__float-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--rb-white);
    margin-bottom: 6px;
}
.rb-hero__float-body {
    font-size: 12px;
    line-height: 1.55;
    color: rgba(226,183,45,0.7);
    font-weight: 300;
}
.rb-hero__right-label {
    position: absolute;
    bottom: 36px;
    left: 36px;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(226,183,45,0.45);
}

/* ═══════════════════════════════════
   TRUST BAR
═══════════════════════════════════ */
.rb-trust-bar {
    background: var(--rb-off-white);
    border-top: 1px solid rgba(12,0,4,0.07);
    border-bottom: 1px solid rgba(12,0,4,0.07);
    padding: 20px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.rb-trust-item {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(12,0,4,0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}
.rb-trust-mark { color: var(--rb-gold); font-size: 8px; }

/* ═══════════════════════════════════
   PROBLEM
═══════════════════════════════════ */
.rb-problem {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: var(--rb-white);
}
.rb-pain-header {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rb-red);
    margin: 32px 0 0;
}
.rb-pain-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.rb-pain-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    font-weight: 400;
    color: var(--rb-dark);
    line-height: 1.55;
}
.rb-pain-list li::before {
    content: '—';
    color: var(--rb-red);
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 1px;
}
.rb-quote-block {
    background: var(--rb-dark);
    color: var(--rb-white);
    padding: 48px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}
.rb-quote-block::before {
    content: '';
    position: absolute;
    top: -24px; right: -24px;
    width: 80px; height: 80px;
    background: var(--rb-red);
    border-radius: 50%;
    opacity: 0.15;
}
.rb-quote-mark {
    font-size: 72px;
    line-height: 0.7;
    color: var(--rb-red);
    opacity: 0.5;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}
.rb-quote-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    margin-bottom: 24px;
    font-weight: 300;
}
.rb-quote-attr {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--rb-gold);
}

/* ═══════════════════════════════════
   METHOD
═══════════════════════════════════ */
.rb-method { overflow: hidden; position: relative; }
.rb-method::before {
    content: 'REBUILD';
    position: absolute;
    font-size: 180px;
    font-weight: 600;
    color: rgba(255,255,255,0.02);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 8px;
}
.rb-method__header {
    text-align: center;
    max-width: 670px;
    margin: 0 auto 72px;
}
.rb-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1100px;
    margin: 0 auto;
}
.rb-step {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(226,183,45,0.1);
    padding: 44px 32px;
    position: relative;
    transition: background 0.3s;
}
.rb-step:hover { background: rgba(255,255,255,0.06); }
.rb-step__num {
    font-size: 52px;
    font-weight: 600;
    color: rgba(226,183,45,0.3);
    line-height: 1;
    margin-bottom: 20px;
}
.rb-step h3 {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: var(--rb-white) !important;
    margin-bottom: 14px !important;
    letter-spacing: -0.2px;
}
.rb-step__body {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    margin: 0;
}
.rb-step__accent {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rb-red), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.rb-step:hover .rb-step__accent { transform: scaleX(1); }

/* ═══════════════════════════════════
   MEMBERSHIP
═══════════════════════════════════ */
.rb-membership__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 72px;
}
.rb-pricing-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--rb-white);
    border: 1px solid rgba(12,0,4,0.1);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 32px 72px rgba(12,0,4,0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.rb-pricing-card__left { padding: 52px 44px; }
.rb-pricing-card__right {
    background: var(--rb-dark);
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--rb-white);
}
.rb-price-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rb-red);
    margin-bottom: 10px;
}
.rb-price-amount {
    font-size: 56px;
    font-weight: 600;
    line-height: 1;
    color: var(--rb-dark);
    letter-spacing: -1px;
}
.rb-price-period {
    font-size: 13px;
    font-weight: 400;
    color: var(--rb-body-lt);
    margin-top: 6px;
    margin-bottom: 36px;
}
.rb-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.rb-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--rb-dark);
    line-height: 1.5;
}
.rb-feat-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: rgba(186,69,66,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: var(--rb-red);
    font-weight: 700;
    margin-top: 1px;
}
.rb-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--rb-white);
    margin-bottom: 12px;
}
.rb-card-body {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
    margin-bottom: 32px;
}
.rb-guarantee {
    margin-top: 16px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    text-align: center;
}

/* ═══════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════ */
.rb-testimonials__header {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 64px;
}
.rb-test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.rb-test-card {
    background: var(--rb-white);
    padding: 36px 32px;
    border-radius: 4px;
    border: 1px solid rgba(12,0,4,0.08);
}
.rb-test-card--featured {
    background: var(--rb-dark);
    border-color: transparent;
}
.rb-stars {
    color: var(--rb-gold);
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 18px;
}
.rb-test-text {
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
    font-weight: 300;
    color: var(--rb-dark);
    margin-bottom: 24px;
}
.rb-test-card--featured .rb-test-text { color: rgba(255,255,255,0.85); }
.rb-test-author { display: flex; align-items: center; gap: 12px; }
.rb-avatar {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: var(--rb-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--rb-dark);
}
.rb-author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--rb-dark);
}
.rb-test-card--featured .rb-author-name { color: var(--rb-white); }
.rb-author-sub {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(12,0,4,0.4);
    margin-top: 2px;
    text-transform: uppercase;
}
.rb-test-card--featured .rb-author-sub { color: rgba(226,183,45,0.65); }

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
.rb-faq { background: var(--rb-white); }
.rb-faq__inner {
    max-width: 820px;
    margin: 0 auto;
}
.rb-faq__inner h2 { margin-bottom: 48px; }
.rb-faq-item { border-bottom: 1px solid rgba(12,0,4,0.1); }
.rb-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--rb-font) !important;
    font-size: 16px;
    font-weight: 500;
    color: var(--rb-dark);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}
.rb-faq-q:focus,
.rb-faq-q:focus-visible { outline: none; }
.rb-faq-q:hover { color: var(--rb-red); }
.rb-faq-icon {
    font-size: 20px;
    color: var(--rb-red);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}
.rb-faq-q[aria-expanded="true"] .rb-faq-icon { transform: rotate(45deg); }
.rb-faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.rb-faq-a.rb-faq-a--open {
    max-height: 400px;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.rb-faq-a__inner {
    font-size: 14px;
    line-height: 1.8;
    color: var(--rb-body-lt);
    font-weight: 300;
    padding: 0 40px 20px 0;
    max-width: 680px;
}

/* ═══════════════════════════════════
   FINAL CTA
═══════════════════════════════════ */
.rb-final-cta {
    background: var(--rb-red);
    padding: var(--rb-pad);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.rb-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px,
        transparent 1px, transparent 60px
    );
}
.rb-final-cta__inner { position: relative; z-index: 2; }
.rb-final-cta h2 {
    color: var(--rb-white) !important;
    font-weight: 700 !important;
    max-width: 600px;
    margin: 0 auto 20px;
}
.rb-final-cta h2 em {
    color: var(--rb-gold) !important;
    font-style: italic;
    display: block;
}
.rb-final-cta p {
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.rb-footer {
    background: var(--rb-dark);
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.rb-footer__logo-img { max-height: 28px; width: auto; opacity: 0.75; }
.rb-footer__logo-text { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.6); }
.rb-footer__links { display: flex; gap: 28px; }
.rb-footer__links a {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
}
.rb-footer__links a:hover { color: rgba(255,255,255,0.65); }
.rb-footer__copy {
    font-size: 10px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1100px) {
    :root { --rb-pad: 80px 48px; }
    .rb-hero__left { padding: 64px 40px 64px 48px; }
    .rb-trust-bar { padding: 20px 48px; gap: 28px; }
    .rb-footer { padding: 40px 48px; }
}

@media (max-width: 768px) {
    :root { --rb-pad: 64px 24px; }

    /* Nav */
    .rb-nav { padding: 16px 24px; }
    .rb-nav__links, .rb-nav__cta { display: none; }
    .rb-nav__hamburger { display: flex; }
    .rb-nav-mobile { display: flex; }

    /* Hero */
    .rb-hero { grid-template-columns: 1fr; min-height: auto; }
    .rb-hero__left { padding: 56px 24px 48px; }
    .rb-hero__content { max-width: 100%; }
    .rb-hero__right { height: 100vw; min-height: 500px; }
    .rb-hero__guarantee-tooltip { width: 240px; }
    .rb-hero__float-card { top: 20px; right: 16px; max-width: 160px; }

    /* Trust */
    .rb-trust-bar { padding: 20px 24px; gap: 16px; }

    /* Problem */
    .rb-problem { grid-template-columns: 1fr; gap: 40px; }

    /* Method */
    .rb-steps { grid-template-columns: 1fr; }

    /* Pricing */
    .rb-pricing-card { grid-template-columns: 1fr; }
    .rb-pricing-card__left { padding: 36px 28px; }
    .rb-pricing-card__right { padding: 36px 28px; }

    /* Testimonials */
    .rb-test-grid { grid-template-columns: 1fr; }
    .rb-test-card--featured { order: -1; }

    /* Footer */
    .rb-footer { flex-direction: column; align-items: flex-start; padding: 36px 24px; gap: 16px; }
}

@media (max-width: 480px) {
    .rb-hero__h1 { font-size: 36px !important; letter-spacing: -0.5px; }
    .rb-hero__ctas { flex-direction: column; align-items: stretch; }
    .rb-btn-ghost { text-align: center; justify-content: center; }
    .rb-hero__guarantee-tooltip { left: 0; transform: none; }
}

/* ═══════════════════════════════════
   WP ADMIN BAR OFFSET (logged-in users)
═══════════════════════════════════ */
.admin-bar .rb-nav           { top: 32px; }
.admin-bar .rb-nav-mobile    { top: calc(73px + 32px); }

@media screen and (max-width: 782px) {
    .admin-bar .rb-nav        { top: 46px; }
    .admin-bar .rb-nav-mobile { top: calc(73px + 46px); }
}
