/*
Theme Name:  Big Jam Consultant
Theme URI:   https://bigjamconsultant.com
Author:      Big Jam Consultant
Description: Official theme for Big Jam Consultant — Author Discoverability & Growth Agency.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: big-jam
*/

/* ─── GOOGLE FONTS ────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700;800&family=Public+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ─── BRAND VARIABLES ─────────────────────────────────────────── */
:root {
    --bj-green:      #184D38;
    --bj-gold:       #AA8248;
    --bj-white:      #ffffff;
    --bj-dark:       #0f1a14;
    --bj-grey-bg:    #F5F5F3;
    --bj-grey-text:  #5A6055;
    --bj-border:     #E2E4DF;
    --bj-gold-light: rgba(170,130,72,0.12);
    --bj-green-dim:  rgba(24,77,56,0.08);

    --font-heading:  'JetBrains Mono', 'Courier New', monospace;
    --font-body:     'Public Sans', 'Helvetica Neue', sans-serif;

    --container:     1280px;
    --radius:        6px;
    --transition:    0.3s ease;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--bj-dark);
    background: var(--bj-white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── GLOBAL SVG ICON RULES ──────────────────────────────────── */
[class*="rr-"] span[aria-hidden="true"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: inherit;
}
[class*="rr-"] span[aria-hidden="true"] svg {
    width: 20px;
    height: 20px;
    color: inherit;
    stroke: currentColor;
    flex-shrink: 0;
    display: block;
}
.rr-service-icon span[aria-hidden="true"],
.rr-why-icon span[aria-hidden="true"],
.rr-contact-item-icon span[aria-hidden="true"],
.rr-deliverable-icon span[aria-hidden="true"] {
    width: 28px; height: 28px; color: inherit;
}
.rr-service-icon span[aria-hidden="true"] svg { width: 28px; height: 28px; }
.rr-why-icon span[aria-hidden="true"] svg,
.rr-contact-item-icon span[aria-hidden="true"] svg { width: 24px; height: 24px; }
.rr-footer-social span[aria-hidden="true"] { width: 18px; height: 18px; }
.rr-footer-social span[aria-hidden="true"] svg { width: 18px; height: 18px; }
.rr-testimonial-stars span[aria-hidden="true"] { width: 18px; height: 18px; display: inline-flex; }
.rr-testimonial-stars span[aria-hidden="true"] svg {
    width: 18px; height: 18px;
    fill: var(--bj-gold);
    stroke: none;
}

/* ─── GLOBAL UTILITIES ───────────────────────────────────────── */
.rr-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

.rr-section { padding: 100px 0; }

.rr-eyebrow {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--bj-gold);
    margin-bottom: 16px;
    display: inline-block;
    position: relative;
}
.rr-eyebrow::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--bj-gold);
    animation: eyebrowLine 3s ease-in-out infinite;
    will-change: width;
}
@keyframes eyebrowLine {
    0%, 100% { width: 0; }
    50%       { width: 100%; }
}

.rr-section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.rr-section-sub {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--bj-grey-text);
    line-height: 1.75;
    max-width: 600px;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.rr-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Shimmer on primary */
.rr-btn--primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    animation: btnShimmer 3s ease-in-out infinite;
    will-change: left;
}
@keyframes btnShimmer {
    0%        { left: -100%; }
    60%, 100% { left: 160%; }
}

.rr-btn--primary {
    background: var(--bj-gold);
    color: var(--bj-white);
    border-color: var(--bj-gold);
}
.rr-btn--primary:hover {
    background: transparent;
    color: var(--bj-gold);
}

.rr-btn--outline {
    background: transparent;
    border-color: rgba(255,255,255,0.35);
    color: var(--bj-white);
}
.rr-btn--outline:hover {
    border-color: var(--bj-gold);
    color: var(--bj-gold);
}

.rr-btn--outline-white {
    background: transparent;
    border-color: rgba(255,255,255,0.4);
    color: var(--bj-white);
}
.rr-btn--outline-white:hover {
    border-color: var(--bj-gold);
    color: var(--bj-gold);
}

.rr-btn--dark {
    background: var(--bj-green);
    color: var(--bj-white);
    border-color: var(--bj-green);
}
.rr-btn--dark:hover {
    background: var(--bj-gold);
    border-color: var(--bj-gold);
    color: var(--bj-white);
}

/* ─── HEADER ─────────────────────────────────────────────────── */
.rr-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--bj-green);
    transition: box-shadow var(--transition), background var(--transition);
    padding: 0 40px;
}
.rr-header.scrolled {
    box-shadow: 0 4px 32px rgba(24,77,56,0.35);
    background: rgba(24,77,56,0.97);
    backdrop-filter: blur(12px);
}

.rr-header-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.rr-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.rr-logo img { height: 38px; width: auto; }
.rr-logo-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--bj-white);
    line-height: 1;
    letter-spacing: -0.02em;
}
.rr-logo-text span { color: var(--bj-gold); }

/* Nav links */
.rr-nav { display: flex; align-items: center; gap: 32px; }
.rr-nav a {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    transition: color var(--transition);
    position: relative;
}
.rr-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--bj-gold);
    transition: width var(--transition);
}
.rr-nav a:hover { color: var(--bj-gold); }
.rr-nav a:hover::after { width: 100%; }

/* Active states */
.rr-nav .current-menu-item > a,
.rr-nav .current-menu-ancestor > a,
.rr-nav .menu-item a[aria-current="page"] {
    color: var(--bj-gold);
}
.rr-nav .current-menu-item > a::after,
.rr-nav .current-menu-ancestor > a::after,
.rr-nav .menu-item a[aria-current="page"]::after { width: 100%; }

/* Nav CTA button */
.rr-nav-cta {
    background: var(--bj-gold) !important;
    color: var(--bj-white) !important;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
}
.rr-nav-cta::after { display: none !important; }
.rr-nav-cta:hover {
    background: var(--bj-white) !important;
    color: var(--bj-gold) !important;
}

/* Hamburger */
.rr-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.rr-hamburger span {
    display: block;
    width: 26px; height: 2px;
    background: var(--bj-white);
    transition: all var(--transition);
    border-radius: 2px;
}
.rr-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.rr-hamburger.open span:nth-child(2) { opacity: 0; }
.rr-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.rr-mobile-nav {
    display: none;
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: var(--bj-green);
    padding: 32px 40px;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    border-top: 1px solid rgba(170,130,72,0.2);
}
.rr-mobile-nav.open { display: flex; }
.rr-mobile-nav a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bj-white);
    transition: color var(--transition);
}
.rr-mobile-nav a:hover { color: var(--bj-gold); }

/* ─── NAV DROPDOWN ───────────────────────────────────────────── */
.rr-nav .menu-item-has-children { position: relative; }
.rr-nav .menu-item-has-children > a {
    padding-right: 18px;
}
.rr-nav .menu-item-has-children > a::before {
    content: '▾';
    position: absolute;
    right: 0;
    font-size: 10px;
    transition: transform var(--transition);
    color: rgba(255,255,255,0.5);
    bottom: -3px;
}
.rr-nav .menu-item-has-children > a::after { display: none; }
.rr-nav .menu-item-has-children:hover > a::before {
    transform: rotate(180deg);
    color: var(--bj-gold);
}

.rr-nav .sub-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--bj-white);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(24,77,56,0.2);
    min-width: 260px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.15s;
    z-index: 1001;
    border: 1px solid var(--bj-border);
    list-style: none;
}
/* Invisible bridge fills the gap so mouse doesn't lose hover */
.rr-nav .menu-item-has-children::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -10px;
    right: -10px;
    height: 12px;
    background: transparent;
}
.rr-nav .sub-menu::before {
    content: '';
    position: absolute;
    top: -7px; left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top: none;
    border-bottom-color: var(--bj-white);
}
.rr-nav .menu-item-has-children:hover > .sub-menu,
.rr-nav .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}
.rr-nav .sub-menu li { list-style: none; }
.rr-nav .sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bj-green);
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}
.rr-nav .sub-menu li a::after { display: none !important; }
.rr-nav .sub-menu li a::before { display: none !important; }
.rr-nav .sub-menu li a:hover { background: var(--bj-grey-bg); color: var(--bj-gold); }
.rr-nav .sub-menu li:first-child a {
    color: var(--bj-gold);
    font-weight: 700;
    border-bottom: 1px solid var(--bj-border);
    margin-bottom: 4px;
    padding-bottom: 12px;
}

/* Mobile sub-menu */
.rr-mobile-nav .sub-menu {
    display: flex;
    flex-direction: column;
    padding-left: 16px;
    margin-top: 8px;
    gap: 8px;
    border-left: 2px solid rgba(170,130,72,0.3);
    list-style: none;
}
.rr-mobile-nav .sub-menu li { list-style: none; }
.rr-mobile-nav .sub-menu li a {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}
.rr-mobile-nav .sub-menu li a:hover { color: var(--bj-gold); }

/* ═══════════════════════════════════════════════════════════
   HOME HERO — Starrdam style: full-bleed image + overlay
   Massive headline + single CTA + stat badge + icon tiles
   ═══════════════════════════════════════════════════════════ */
.rr-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    background: var(--bj-green);
}

/* Full bleed background image */
.rr-hero-fullbg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
    animation: kenBurns 20s ease-in-out infinite alternate;
}
@keyframes kenBurns {
    0%   { transform: scale(1.0); }
    100% { transform: scale(1.07); }
}
.rr-hero-fullbg--fallback {
    background: linear-gradient(135deg, #184D38 0%, #0f2d21 100%);
    animation: none;
}

/* Dark green overlay */
.rr-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(10,18,14,0.93) 0%,
        rgba(24,77,56,0.82) 50%,
        rgba(10,18,14,0.95) 100%
    );
    z-index: 1;
}

/* Main content — fills from top, pushes tiles to bottom */
.rr-hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 40px 80px;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}

/* Stat badge — top right */
.rr-hero-stat-badge {
    position: absolute;
    top: 100px;
    right: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.rr-hero-stat-badge-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--bj-white);
    line-height: 1;
    letter-spacing: -0.02em;
}
.rr-hero-stat-badge-label {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}
.rr-hero-stat-badge-icon {
    color: var(--bj-gold);
    font-size: 18px;
    display: inline-flex;
    align-items: center;
}

.rr-hero-eyebrow {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bj-gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.rr-hero-eyebrow::before,
.rr-hero-eyebrow::after {
    content: '';
    display: block;
    width: 32px; height: 1px;
    background: var(--bj-gold);
    opacity: 0.6;
}

/* MASSIVE headline — Starrdam style */
.rr-hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(52px, 8vw, 110px);
    font-weight: 800;
    color: var(--bj-white);
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.rr-hero-headline span { color: var(--bj-gold); }

.rr-hero-sub {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 20px;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 560px;
}

.rr-hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* Scroll hint */
.rr-hero-scroll-hint {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.35);
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceDown 2.2s ease-in-out infinite;
    cursor: pointer;
    font-size: 16px;
}
@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
    50%       { transform: translateX(-50%) translateY(8px); opacity: 0.9; }
}

/* ── SERVICE TILES BAR — bottom of hero (Starrdam icon row) ─── */
.rr-hero-tiles {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: transparent;
    margin-top: auto;
}

.rr-hero-tile {
    background: var(--bj-green);
    border-top: 1px solid rgba(170,130,72,0.2);
    border-right: 1px solid rgba(170,130,72,0.1);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    cursor: default;
    text-decoration: none;
}
.rr-hero-tile--static { pointer-events: none; }
.rr-hero-tile:last-child { border-right: none; }

.rr-hero-tile-icon {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bj-gold);
    opacity: 1;
}
.rr-hero-tile-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.rr-hero-tile-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bj-white);
}

.rr-hero-tile-sub {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}

/* ─── TRUST BAR ──────────────────────────────────────────────── */
.rr-trust-bar {
    background: var(--bj-white);
    border-top: 1px solid var(--bj-border);
    border-bottom: 1px solid var(--bj-border);
    padding: 22px 0;
    overflow: hidden;
}
.rr-trust-bar-inner {
    display: flex;
    align-items: center;
}
.rr-trust-label {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bj-grey-text);
    white-space: nowrap;
    padding: 0 40px;
    flex-shrink: 0;
    border-right: 1px solid var(--bj-border);
}
.rr-trust-scroll {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.rr-trust-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: trustScroll 22s linear infinite;
    width: max-content;
}
.rr-trust-track:hover { animation-play-state: paused; }
@keyframes trustScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.rr-trust-item {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--bj-green);
    white-space: nowrap;
    opacity: 0.55;
    transition: opacity var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}
.rr-trust-item:hover { opacity: 1; }
.rr-trust-item svg { width: 20px; height: 20px; flex-shrink: 0; }
.rr-trust-item img { height: 26px; width: auto; filter: grayscale(1); opacity: 0.6; }

/* ─── PROBLEM SECTION GRID ───────────────────────────────────── */
.rr-problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
/* Desktop: text left (order 1), stats right (order 2) — matches HTML order */
.rr-problem-text  { order: 1; }
.rr-problem-stats { order: 2; }

/* Service hero CTAs: centered on desktop */
.rr-service-hero-ctas {
    justify-content: center;
}

/* ─── SERVICES SECTION ───────────────────────────────────────── */
.rr-services {
    background: var(--bj-white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.rr-services-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.rr-services-shape--tl {
    top: -60px; left: -60px;
    width: 300px; height: 300px;
}
.rr-services-shape--br {
    bottom: -40px; right: -40px;
    width: 260px; height: 260px;
}

/* Subtle background texture */
.rr-services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, var(--bj-border) 1px, transparent 0);
    background-size: 32px 32px;
    opacity: 0.4;
    pointer-events: none;
}

.rr-services-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}
.rr-services-header .rr-section-sub { margin: 0 auto; }

.rr-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.rr-service-card {
    background: var(--bj-white);
    border: 1px solid var(--bj-border);
    border-radius: 8px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.rr-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--bj-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.rr-service-card:hover {
    box-shadow: 0 20px 60px rgba(24,77,56,0.1);
    transform: translateY(-4px);
    border-color: transparent;
}
.rr-service-card:hover::before { transform: scaleX(1); }

.rr-service-icon {
    width: 58px; height: 58px;
    background: var(--bj-grey-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background var(--transition), color var(--transition);
    color: var(--bj-green);
    flex-shrink: 0;
}
.rr-service-card:hover .rr-service-icon {
    background: var(--bj-gold-light);
    color: var(--bj-gold);
}
.rr-service-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; }

.rr-service-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--bj-green);
    margin-bottom: 12px;
}

.rr-service-body {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--bj-grey-text);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.rr-service-bullets {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}
.rr-service-bullets li {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--bj-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}
.rr-service-bullets li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--bj-gold);
    flex-shrink: 0;
}

.rr-service-link {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bj-green);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition);
    margin-top: auto;
}
.rr-service-link:hover { color: var(--bj-gold); }
.rr-service-link::after { content: '→'; transition: transform var(--transition); }
.rr-service-link:hover::after { transform: translateX(4px); }

/* ─── WHY US (dark section) ──────────────────────────────────── */
.rr-why {
    background: var(--bj-green);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.rr-why::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(170,130,72,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.rr-why::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(170,130,72,0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: floatOrb 10s ease-in-out infinite;
    animation-delay: -4s;
    will-change: transform;
}
@keyframes floatOrb {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-24px) scale(1.04); }
}

.rr-why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.rr-why-inner.no-image {
    grid-template-columns: 1fr;
    max-width: 100%;
}
.rr-why-inner.rr-why-centered.no-image {
    max-width: 100%;
    grid-template-columns: 1fr;
}

.rr-why-left .rr-eyebrow { color: var(--bj-gold); }
.rr-why-left .rr-section-title { color: var(--bj-white); }
.rr-why-left .rr-section-sub { color: rgba(255,255,255,0.6); }

.rr-why-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.rr-why-image img {
    width: 100%; height: 500px;
    object-fit: cover;
    border-radius: 8px;
}
.rr-why-image-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--bj-gold);
    color: var(--bj-white);
    padding: 14px 22px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rr-why-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.rr-why-item {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(170,130,72,0.15);
    border-radius: 8px;
    padding: 28px 24px;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.rr-why-item:hover {
    border-color: rgba(170,130,72,0.4);
    background: rgba(255,255,255,0.07);
}

.rr-why-icon {
    width: 48px; height: 48px;
    border-radius: 8px;
    background: rgba(170,130,72,0.12);
    border: 1px solid rgba(170,130,72,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--bj-gold);
    align-self: flex-start;
}
.rr-why-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; }

.rr-why-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--bj-white);
    margin-bottom: 4px;
}
.rr-why-body {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

.rr-why-cta { margin-top: 40px; }

.rr-why-centered { text-align: center; }
.rr-why-centered .rr-why-grid { width: 100%; max-width: 100%; text-align: left; }
.rr-why-centered .rr-why-item { text-align: left; }
.rr-why-centered .rr-section-sub { max-width: 680px; margin: 0 auto; }
.rr-why-centered .rr-why-cta { display: flex; justify-content: center; margin-top: 40px; }
.rr-why-centered.no-image .rr-why-left { width: 100%; max-width: 100%; }

/* ─── PROCESS SECTION ────────────────────────────────────────── */
.rr-process {
    background: var(--bj-grey-bg);
    padding: 120px 0;
}
.rr-process-header {
    text-align: center;
    margin-bottom: 70px;
}
.rr-process-header .rr-section-sub { margin: 0 auto; }

.rr-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.rr-process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12.5%; right: 12.5%;
    height: 1px;
    background: var(--bj-border);
    z-index: 0;
}

.rr-process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.rr-step-number {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--bj-green);
    color: var(--bj-gold);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 2px solid var(--bj-border);
    transition: border-color var(--transition), box-shadow var(--transition);
    animation: ringPulse 3.5s ease-in-out infinite;
    will-change: box-shadow;
}
.rr-process-step:nth-child(2) .rr-step-number { animation-delay: -0.87s; }
.rr-process-step:nth-child(3) .rr-step-number { animation-delay: -1.75s; }
.rr-process-step:nth-child(4) .rr-step-number { animation-delay: -2.62s; }
.rr-process-step:hover .rr-step-number { border-color: var(--bj-gold); }
@keyframes ringPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(170,130,72,0); }
    50%       { box-shadow: 0 0 0 8px rgba(170,130,72,0.1); }
}

.rr-step-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--bj-green);
    margin-bottom: 10px;
}
.rr-step-body {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--bj-grey-text);
    line-height: 1.7;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.rr-testimonials {
    background: var(--bj-white);
    padding: 120px 0;
}
.rr-testimonials-header {
    text-align: center;
    margin-bottom: 70px;
}
.rr-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.rr-testimonial-card {
    background: var(--bj-grey-bg);
    border: 1px solid var(--bj-border);
    border-radius: 8px;
    padding: 36px 32px;
    transition: all var(--transition);
    position: relative;
}
.rr-testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(24,77,56,0.1);
    border-color: var(--bj-gold);
    transform: translateY(-2px);
}
.rr-testimonial-stars {
    color: var(--bj-gold);
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.rr-testimonial-quote {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 16px;
    line-height: 1.75;
    color: var(--bj-dark);
    margin-bottom: 28px;
}
.rr-testimonial-quote::before {
    content: '"';
    color: var(--bj-gold);
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 0;
    vertical-align: -14px;
    margin-right: 4px;
    font-style: normal;
}
.rr-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--bj-border);
    padding-top: 20px;
}
.rr-testimonial-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bj-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bj-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    overflow: hidden;
}
.rr-testimonial-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--bj-green);
}
.rr-testimonial-role {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--bj-grey-text);
}

/* ─── STATS SECTION (inline) ─────────────────────────────────── */
.rr-stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(170,130,72,0.2);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: border-color var(--transition);
    animation: statPulse 4s ease-in-out infinite;
    will-change: box-shadow;
}
.rr-stat-card:nth-child(2) { animation-delay: -1s; }
.rr-stat-card:nth-child(3) { animation-delay: -2s; }
.rr-stat-card:nth-child(4) { animation-delay: -3s; }
.rr-stat-card:hover { border-color: var(--bj-gold); }
@keyframes statPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(170,130,72,0); }
    50%       { box-shadow: 0 0 0 6px rgba(170,130,72,0.06); }
}
.rr-stat-number {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    color: var(--bj-gold);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}
.rr-stat-label {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    line-height: 1.4;
}

/* Hero stats wrapper */
.rr-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.rr-hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.rr-hero-badge {
    background: rgba(170,130,72,0.1);
    border: 1px solid rgba(170,130,72,0.25);
    border-radius: var(--radius);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.rr-hero-badge-icon {
    width: 44px; height: 44px;
    background: var(--bj-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--bj-white);
}
.rr-hero-badge-icon svg { width: 20px; height: 20px; }
.rr-hero-badge-text { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5; }
.rr-hero-badge-text strong { display: block; color: var(--bj-white); font-size: 15px; margin-bottom: 2px; }

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.rr-cta-banner {
    background: var(--bj-green);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.rr-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(170,130,72,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.rr-cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
}
.rr-cta-banner-eyebrow { color: var(--bj-gold); background: transparent !important; }
.rr-cta-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--bj-white);
    margin-bottom: 16px;
}
.rr-cta-banner-sub {
    font-family: var(--font-body);
    font-size: 17px;
    color: rgba(255,255,255,0.62);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.7;
}
.rr-cta-banner-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}
.rr-cta-banner-inner.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.rr-cta-banner-inner.centered .rr-cta-banner-sub {
    margin-left: auto;
    margin-right: auto;
}
.rr-cta-banner-inner.centered .rr-cta-banner-actions { justify-content: center; }

/* ─── PARTNERS SECTION ───────────────────────────────────────── */
.rr-partners {
    background: var(--bj-grey-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.rr-partners-header { text-align: center; margin-bottom: 60px; }
.rr-partners-header .rr-section-sub { margin: 0 auto; }
.rr-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.rr-partner-item {
    background: var(--bj-white);
    border: 1px solid var(--bj-border);
    border-radius: 8px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition);
    cursor: default;
    min-height: 100px;
}
.rr-partner-item:hover {
    box-shadow: 0 8px 30px rgba(24,77,56,0.08);
    border-color: var(--bj-gold);
    transform: translateY(-2px);
}
.rr-partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.rr-partner-logo svg,
.rr-partner-logo img {
    height: 34px; width: auto; max-width: 110px;
    filter: grayscale(1) contrast(0.6) brightness(1.1);
    opacity: 0.5;
    transition: filter var(--transition), opacity var(--transition);
}
.rr-partner-item:hover .rr-partner-logo svg,
.rr-partner-item:hover .rr-partner-logo img { filter: none; opacity: 1; }

/* ─── CONTACT SECTION ─────────────────────────────────────────── */
.rr-contact {
    background: var(--bj-grey-bg);
    padding: 120px 0;
}
.rr-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}
.rr-contact-left .rr-section-title { color: var(--bj-green); }
.rr-contact-info {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
}
.rr-contact-item { display: flex; align-items: flex-start; gap: 14px; }
.rr-contact-item:last-child { grid-column: 1 / -1; }
.rr-contact-item-icon {
    width: 42px; height: 42px;
    background: var(--bj-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--bj-white);
}
.rr-contact-item-icon svg, .rr-contact-item-icon img {
    width: 20px; height: 20px;
    filter: brightness(0) invert(1);
}
.rr-contact-item-label {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bj-grey-text);
    margin-bottom: 4px;
}
.rr-contact-item-value {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--bj-green);
}
.rr-contact-form-wrap {
    background: var(--bj-white);
    border-radius: 8px;
    padding: 48px 44px;
    box-shadow: 0 8px 40px rgba(24,77,56,0.07);
}
.rr-form-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--bj-green);
    margin-bottom: 8px;
}
.rr-form-sub {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--bj-grey-text);
    margin-bottom: 32px;
}
.rr-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.rr-form-row.full { grid-template-columns: 1fr; }
.rr-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.rr-form-group label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bj-green);
}
.rr-form-group input,
.rr-form-group select,
.rr-form-group textarea {
    padding: 13px 15px;
    border: 1.5px solid var(--bj-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--bj-dark);
    transition: border-color var(--transition);
    background: var(--bj-white);
    outline: none;
}
.rr-form-group input:focus,
.rr-form-group select:focus,
.rr-form-group textarea:focus { border-color: var(--bj-gold); }
.rr-form-group textarea { resize: vertical; min-height: 120px; }

/* ─── FAQ SECTION ────────────────────────────────────────────── */
.rr-faq { background: var(--bj-white); padding: 120px 0; }
.rr-faq-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}
.rr-faq-list { display: flex; flex-direction: column; gap: 14px; }
.rr-faq-item {
    border: 1px solid var(--bj-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}
.rr-faq-item.open, .rr-faq-item:hover { border-color: var(--bj-gold); }
.rr-faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--bj-green);
    text-align: left;
    gap: 16px;
    transition: color var(--transition);
}
.rr-faq-question:hover { color: var(--bj-gold); }
.rr-faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--bj-grey-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all var(--transition);
    color: var(--bj-green);
    font-family: var(--font-heading);
    font-weight: 300;
}
.rr-faq-item.open .rr-faq-icon {
    background: var(--bj-gold);
    color: var(--bj-white);
    transform: rotate(45deg);
}
.rr-faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--bj-grey-text);
    line-height: 1.75;
}
.rr-faq-item.open .rr-faq-answer { display: block; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.rr-footer {
    background: var(--bj-green);
    padding: 80px 0 0;
}
.rr-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rr-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.rr-footer-logo img { height: 34px; }
.rr-footer-logo-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--bj-white);
    letter-spacing: -0.02em;
}
.rr-footer-logo-text span { color: var(--bj-gold); }
.rr-footer-tagline {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    max-width: 280px;
    margin-bottom: 24px;
}
.rr-footer-socials { display: flex; gap: 10px; }
.rr-footer-social {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.45);
    transition: all var(--transition);
}
.rr-footer-social svg { width: 15px; height: 15px; }
.rr-footer-social:hover {
    border-color: var(--bj-gold);
    color: var(--bj-gold);
    background: rgba(170,130,72,0.06);
    transform: translateY(-2px);
}
.rr-footer-col-title {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bj-gold);
    margin-bottom: 24px;
}
.rr-footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.rr-footer-col ul li a {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}
.rr-footer-col ul li a:hover { color: var(--bj-white); }
.rr-footer-col ul li.current-menu-item a,
.rr-footer-col ul li a[aria-current="page"] { color: var(--bj-gold); font-weight: 600; }
.rr-footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.rr-footer-copy {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}
.rr-footer-legal { display: flex; gap: 24px; }
.rr-footer-legal a {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    transition: color var(--transition);
}
.rr-footer-legal a:hover { color: var(--bj-white); }

/* ═══════════════════════════════════════════════════════════
   INNER PAGE HERO — Tilted animated image grid
   Used as page title for all inner pages
   ═══════════════════════════════════════════════════════════ */
.rr-page-hero {
    background: var(--bj-green);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
}
.rr-page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 90px;
    background: var(--bj-white);
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 3;
}
.rr-phero-grid {
    position: absolute;
    inset: -40% -20%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    transform: rotate(-8deg);
    z-index: 0;
    pointer-events: none;
}
.rr-phero-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    will-change: transform;
}
.rr-phero-col:nth-child(1) { animation: pheroScroll 18s linear infinite; }
.rr-phero-col:nth-child(2) { animation: pheroScroll 22s linear infinite; animation-delay: -6s; }
.rr-phero-col:nth-child(3) { animation: pheroScroll 20s linear infinite; animation-delay: -12s; }
.rr-phero-col:nth-child(4) { animation: pheroScroll 24s linear infinite; animation-delay: -4s; }
.rr-phero-col:nth-child(5) { animation: pheroScroll 19s linear infinite; animation-delay: -9s; }
@keyframes pheroScroll {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
.rr-phero-item {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 8px;
    object-fit: cover;
    opacity: 0.18;
    flex-shrink: 0;
    display: block;
}
.rr-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        150deg,
        rgba(15,26,20,0.88) 0%,
        rgba(24,77,56,0.72) 40%,
        rgba(15,26,20,0.90) 100%
    );
    z-index: 1;
}
.rr-page-hero .rr-container { position: relative; z-index: 2; width: 100%; }
.rr-page-hero-content { text-align: center; }
.rr-page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--bj-white);
    margin-bottom: 20px;
    line-height: 1.05;
}
.rr-page-hero-sub {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}
.rr-phero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
    flex-wrap: wrap;
}
.rr-phero-stat { padding: 0 48px; text-align: center; position: relative; }
.rr-phero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 10%; bottom: 10%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}
.rr-phero-stat-number {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--bj-gold);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}
.rr-phero-stat-label {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* Contact page arc → grey */
.page-template-template-contact .rr-page-hero::after,
.page-contact .rr-page-hero::after { background: var(--bj-grey-bg); }
.rr-page-hero + * { margin-top: 50px; }

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.rr-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.rr-reveal.visible { opacity: 1; transform: translateY(0); }
.rr-reveal-delay-1 { transition-delay: 0.1s; }
.rr-reveal-delay-2 { transition-delay: 0.2s; }
.rr-reveal-delay-3 { transition-delay: 0.3s; }
.rr-reveal-delay-4 { transition-delay: 0.4s; }

/* ─── SECURITY OVERLAY (Cloudflare Turnstile) ────────────────── */
#rr-security-overlay {
    position: fixed;
    inset: 0;
    background: var(--bj-green);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rr-security-box {
    text-align: center;
    padding: 48px 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(170,130,72,0.2);
    border-radius: 10px;
    max-width: 420px;
    width: 90%;
}
.rr-security-logo { margin-bottom: 20px; display: flex; justify-content: center; }
.rr-security-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--bj-white);
    margin-bottom: 8px;
}
.rr-security-sub {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 28px;
}
.rr-security-widget { display: flex; justify-content: center; margin-bottom: 16px; }
.rr-security-note {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    min-height: 20px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .rr-container { padding: 0 24px; }
    .rr-services-grid { grid-template-columns: repeat(2, 1fr); }
    .rr-why-inner { grid-template-columns: 1fr; }
    .rr-process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .rr-process-steps::before { display: none; }
    .rr-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .rr-contact-inner { grid-template-columns: 1fr; }
    .rr-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .rr-faq-inner { grid-template-columns: 1fr; }
    .rr-partners-grid { grid-template-columns: repeat(3, 1fr); }
    .rr-hero-tiles { grid-template-columns: repeat(2, 1fr); }
    .rr-phero-grid { grid-template-columns: repeat(4, 1fr); }
    .rr-phero-col:nth-child(5) { display: none; }
    .rr-phero-stat { padding: 0 28px; }

    /* Problem section: single column on tablet and mobile */
    .rr-problem-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .rr-problem-stats { order: 1 !important; }
    .rr-problem-text  { order: 2 !important; }
}

@media (max-width: 768px) {
    .rr-section { padding: 70px 0; }
    .rr-container { padding: 0 20px; }
    .rr-section-title { font-size: clamp(24px, 7vw, 34px); }
    .rr-section-sub { font-size: 15px; max-width: 100%; }
    .rr-btn { padding: 13px 22px; font-size: 12px; }
    .rr-eyebrow { font-size: 10px; letter-spacing: 0.2em; }

    /* Header */
    .rr-header { padding: 0 20px; }
    .rr-header-inner { height: 64px; }
    .rr-logo-text { font-size: 16px; }
    .rr-nav { display: none; }
    .rr-hamburger { display: flex; }
    .rr-mobile-nav { top: 64px; padding: 24px 20px; gap: 16px; }

    /* Hero */
    .rr-hero-content { padding: 100px 20px 60px; }
    .rr-hero-headline { font-size: clamp(36px, 10vw, 60px); }
    .rr-hero-sub { font-size: 16px; margin-bottom: 32px; }
    .rr-hero-ctas { flex-direction: column; gap: 12px; width: 100%; }
    .rr-hero-ctas .rr-btn { width: 100%; justify-content: center; }
    .rr-hero-stat-badge { top: 80px; right: 20px; }
    .rr-hero-stat-badge-number { font-size: 26px; }
    .rr-hero-tiles { grid-template-columns: repeat(2, 1fr); }
    .rr-hero-tile { padding: 20px 12px; gap: 8px; }
    .rr-hero-tile-icon { width: 32px; height: 32px; }
    .rr-hero-tile-icon svg { width: 20px; height: 20px; }
    .rr-hero-tile-label { font-size: 9px; letter-spacing: 0.1em; }
    .rr-hero-scroll-hint { display: none; }

    /* Sections */
    .rr-services { padding: 60px 0; }
    .rr-services-grid { grid-template-columns: 1fr; gap: 18px; }
    .rr-service-card { padding: 28px 22px; }
    .rr-partners-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .rr-partner-item { padding: 20px 14px; min-height: 85px; }
    .rr-why { padding: 60px 0; }
    .rr-why-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
    .rr-why-image img { height: 260px; }
    .rr-process { padding: 60px 0; }
    .rr-process-steps { grid-template-columns: 1fr; gap: 28px; }
    .rr-testimonials { padding: 60px 0; }
    .rr-testimonials-grid { grid-template-columns: 1fr; gap: 18px; }
    .rr-testimonial-card { padding: 26px 22px; }
    .rr-cta-banner { padding: 60px 0; }
    .rr-cta-banner-inner { text-align: left; }
    .rr-cta-banner-actions { flex-direction: column; align-items: stretch; gap: 12px; }
    .rr-cta-banner-actions .rr-btn { width: 100%; justify-content: center; }
    .rr-contact { padding: 60px 0; }
    .rr-contact-info { grid-template-columns: 1fr; gap: 18px; }
    .rr-contact-item:last-child { grid-column: 1; }
    .rr-contact-form-wrap { padding: 28px 20px; }
    .rr-form-row { grid-template-columns: 1fr; gap: 0; }
    .rr-footer { padding: 48px 0 0; }
    .rr-footer-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 36px; }
    .rr-footer-tagline { max-width: 100%; }
    .rr-footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
    .rr-footer-legal { flex-wrap: wrap; justify-content: center; gap: 14px; }

    /* Inner page hero */
    .rr-page-hero { height: 100svh; min-height: 100svh; }
    .rr-page-hero-title { font-size: clamp(26px, 8vw, 40px); }
    .rr-page-hero-sub { font-size: 15px; }
    .rr-page-hero::after { height: 50px; }
    .rr-page-hero + * { margin-top: 30px; }
    .rr-phero-stats { flex-direction: column; gap: 16px; margin-top: 28px; }
    .rr-phero-stat { padding: 0; }
    .rr-phero-stat:not(:last-child)::after { display: none; }
    .rr-phero-stat-number { font-size: 32px; }
    .rr-phero-grid { grid-template-columns: repeat(3, 1fr); transform: rotate(-6deg); }
    .rr-phero-col:nth-child(4), .rr-phero-col:nth-child(5) { display: none; }
}

@media (max-width: 480px) {
    .rr-hero-headline { font-size: clamp(30px, 11vw, 48px); }
    .rr-hero-tiles { grid-template-columns: repeat(2, 1fr); }
    /* removed */ .rr-hero-tile-removed {
        grid-column: span 1;
    }
    .rr-service-card { padding: 24px 18px; }
    .rr-service-title { font-size: 16px; }
    .rr-faq-inner { gap: 40px; }
    .rr-cta-banner-actions { flex-wrap: wrap; }
    .rr-phero-grid { grid-template-columns: repeat(2, 1fr); transform: rotate(-5deg); }
    .rr-phero-col:nth-child(3), .rr-phero-col:nth-child(4) { display: none; }
    .rr-phero-stat-number { font-size: 28px; }
}

/* ─── REDUCE MOTION ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .rr-phero-col, .rr-hero-fullbg, .rr-trust-track,
    .rr-stat-card, .rr-step-number, .rr-hero-scroll-hint,
    .rr-eyebrow::after, .rr-btn--primary::after,
    .rr-why::after { animation: none !important; }

/* ═══════════════════════════════════════════════════════════
   MOBILE ONLY — media queries, zero desktop changes
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* ── HEADER ── */
    .rr-header { padding: 0 20px; }
    .rr-header-inner { height: 64px; }
    .rr-nav { display: none; }
    .rr-hamburger { display: flex; }
    .rr-mobile-nav { top: 64px; padding: 24px 20px; gap: 16px; }
    .rr-logo-text { font-size: 15px; }

    /* ── GLOBAL CONTAINER ── */
    .rr-container { padding: 0 16px; }
    .rr-section { padding: 56px 0; }

    /* ── HERO ── */
    .rr-hero-content { padding: 100px 16px 60px; }
    .rr-hero-headline { font-size: clamp(32px, 10vw, 54px); }
    .rr-hero-sub { font-size: 15px; margin-bottom: 28px; }
    .rr-hero-ctas { flex-direction: column; gap: 12px; width: 100%; }
    .rr-hero-ctas .rr-btn { width: 100%; justify-content: center; }
    .rr-hero-stat-badge { top: 76px; right: 16px; }
    .rr-hero-stat-badge-number { font-size: 24px; }
    .rr-hero-stat-badge-label { font-size: 9px; }
    .rr-hero-tiles { grid-template-columns: repeat(2, 1fr); }
    .rr-hero-tile { padding: 18px 10px; gap: 6px; }
    .rr-hero-tile-sub { display: none; }
    .rr-hero-tile-label { font-size: 9px; }
    .rr-hero-scroll-hint { display: none; }

    /* ── TRUST BAR ── */
    .rr-trust-label { display: none; }

    /* ── HOME — PROBLEM SECTION stats (4-col → 2×2) ── */
    [style*="grid-template-columns:1fr 1fr;gap:20px;margin-bottom:20px"] {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    /* ── HOME — PROBLEM SECTION 2-col layout → 1-col ── */
    [style*="grid-template-columns:1fr 1fr;gap:80px;align-items:center"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    /* ── SERVICES GRID (3-col → 1-col) ── */
    .rr-services-grid { grid-template-columns: 1fr; gap: 16px; }
    .rr-service-card { padding: 26px 20px; }

    /* ── WHY SECTION ── */
    .rr-why { padding: 56px 0; }
    .rr-why-inner { grid-template-columns: 1fr; gap: 32px; }
    .rr-why-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
    .rr-why-item { padding: 22px 18px; }
    .rr-why-image img { height: 240px; }

    /* ── PROCESS ── */
    .rr-process { padding: 56px 0; }
    .rr-process-steps { grid-template-columns: 1fr; gap: 28px; }
    .rr-process-steps::before { display: none; }

    /* ── PARTNERS (4-col → 2-col) ── */
    .rr-partners-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .rr-partner-item { padding: 18px 12px; min-height: 80px; }

    /* ── TESTIMONIALS (3-col → 1-col) ── */
    .rr-testimonials { padding: 56px 0; }
    .rr-testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .rr-testimonial-card { padding: 24px 18px; }

    /* ── CTA BANNER ── */
    .rr-cta-banner { padding: 56px 0; }
    .rr-cta-banner-inner { text-align: left !important; }
    .rr-cta-banner-inner.centered { text-align: left !important; }
    .rr-cta-banner-title { text-align: left !important; }
    .rr-cta-banner-sub { text-align: left !important; margin-left: 0 !important; margin-right: 0 !important; }
    .rr-cta-banner-eyebrow { text-align: left !important; }
    .rr-cta-banner-actions { flex-direction: column; align-items: stretch; gap: 12px; justify-content: flex-start !important; }
    .rr-cta-banner-actions .rr-btn { width: 100%; justify-content: center; }

    /* ── GLOBAL LEFT ALIGN — all eyebrows, titles, subtexts ── */
    .rr-eyebrow { text-align: left !important; }
    .rr-section-title { text-align: left !important; }
    .rr-section-sub { text-align: left !important; margin-left: 0 !important; margin-right: 0 !important; max-width: 100% !important; }
    .rr-services-header { text-align: left !important; }
    .rr-services-header .rr-section-sub { margin: 0 !important; }
    .rr-testimonials-header { text-align: left !important; }
    .rr-partners-header { text-align: left !important; }
    .rr-why-centered { text-align: left !important; }
    .rr-why-centered .rr-section-sub { margin-left: 0 !important; margin-right: 0 !important; }
    .rr-why-centered .rr-why-cta { justify-content: flex-start !important; display: flex !important; }

    /* ── HERO left align ── */
    .rr-hero-content { align-items: flex-start !important; text-align: left !important; }
    .rr-hero-eyebrow { text-align: left !important; justify-content: flex-start !important; }
    .rr-hero-eyebrow::before, .rr-hero-eyebrow::after { display: none !important; }
    .rr-hero-headline { text-align: left !important; }
    .rr-hero-sub { text-align: left !important; }
    .rr-hero-ctas { justify-content: flex-start !important; }
    .rr-hero-stat-badge { margin-bottom: 10px !important; }

    /* ── CONTACT SECTION ── */
    .rr-contact { padding: 56px 0; }
    .rr-contact-inner { grid-template-columns: 1fr; gap: 32px; }
    .rr-contact-info { grid-template-columns: 1fr; gap: 16px; }
    .rr-contact-item:last-child { grid-column: 1; }
    .rr-contact-form-wrap { padding: 28px 18px; }
    .rr-form-row { grid-template-columns: 1fr; gap: 0; }

    /* ── FAQ ── */
    .rr-faq { padding: 56px 0; }
    .rr-faq-inner { grid-template-columns: 1fr; gap: 32px; }

    /* ── FOOTER ── */
    .rr-footer { padding: 48px 0 0; }
    .rr-footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
    .rr-footer-tagline { max-width: 100%; }
    .rr-footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
    .rr-footer-legal { flex-wrap: wrap; justify-content: center; gap: 12px; }

    /* ── INNER PAGE HERO ── */
    .rr-page-hero { height: 100svh; min-height: 100svh; }
    .rr-page-hero::after { height: 48px; }
    .rr-page-hero + * { margin-top: 24px; }
    .rr-page-hero-title { font-size: clamp(24px, 8vw, 38px); }
    .rr-page-hero-sub { font-size: 14px; }
    .rr-phero-grid { grid-template-columns: repeat(3, 1fr); transform: rotate(-6deg); }
    .rr-phero-col:nth-child(4), .rr-phero-col:nth-child(5) { display: none; }
    .rr-phero-stats { flex-direction: column; gap: 14px; margin-top: 24px; }
    .rr-phero-stat { padding: 0; }
    .rr-phero-stat:not(:last-child)::after { display: none; }
    .rr-phero-stat-number { font-size: 30px; }

    /* ── ABOUT PAGE inline grids ── */

    /* Stats bar (4-col → 2×2) */
    [style*="grid-template-columns:repeat(4,1fr);gap:16px"] {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    /* Values grid (4-col → 1-col with spacing) */
    [style*="grid-template-columns:repeat(4,1fr);gap:24px"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Story section (2-col → 1-col) */
    [style*="grid-template-columns:1fr 1fr;gap:80px;align-items:center"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    /* Difference section (2-col → 1-col with spacing) */
    [style*="grid-template-columns:1fr 1fr;gap:28px;max-width:900px"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Team grid (3-col → 1-col with spacing) */
    [style*="grid-template-columns:repeat(3,1fr);gap:28px"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* About story image height */
    [style*="height:500px;object-fit:cover"] {
        height: 240px !important;
    }

    /* ── SERVICE SINGLE inline grids ── */

    /* Overview & content blocks (2-col → 1-col) */
    [style*="grid-template-columns:1fr 1fr;gap:80px;align-items:center"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        direction: ltr !important;
    }
    [style*="grid-template-columns:1fr 1fr;gap:80px;align-items:center"] > * {
        direction: ltr !important;
    }

    /* Deliverables (3-col → 1-col) */
    [style*="grid-template-columns:repeat(3,1fr);gap:24px"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* ── BLOG PAGE inline grids ── */

    /* Featured post (2-col → 1-col) */
    [style*="grid-template-columns:1fr 1fr;gap:0"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    /* Post grid (3-col → 1-col) */
    [style*="grid-template-columns:repeat(3,1fr);gap:24px"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* ── CONTACT PAGE stats (4-col → 2×2) ── */
    [style*="grid-template-columns:repeat(4,1fr);gap:32px"] {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
    }

    /* ── SINGLE POST blog layout (2-col → 1-col, hide sidebar) ── */
    [style*="grid-template-columns:1fr 300px"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    [style*="grid-template-columns:1fr 300px"] aside { display: none; }

    /* Post nav (2-col → 1-col) */
    [style*="grid-template-columns:1fr 1fr;gap:16px"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* Buttons */
    .rr-btn { padding: 13px 20px; font-size: 12px; }
    .rr-section-title { font-size: clamp(22px, 7vw, 32px); }
    .rr-section-sub { font-size: 15px; }
}

@media (max-width: 480px) {
    .rr-container { padding: 0 14px; }
    .rr-hero-headline { font-size: clamp(28px, 11vw, 44px); }
    .rr-hero-tiles { grid-template-columns: repeat(2, 1fr); }
    .rr-page-hero-title { font-size: clamp(20px, 9vw, 32px); }
    .rr-phero-grid { grid-template-columns: repeat(2, 1fr); }
    .rr-phero-col:nth-child(3) { display: none; }
    .rr-section-title { font-size: clamp(20px, 8vw, 28px); }
    .rr-contact-form-wrap { padding: 22px 14px; }
    .rr-footer-grid { gap: 22px; }
}

/* ═══════════════════════════════════════════════════════════
   SHOW / HIDE UTILITIES
   bj-desktop-only = visible on desktop, hidden on mobile
   bj-mobile-only  = visible on mobile, hidden on desktop
   ═══════════════════════════════════════════════════════════ */
.bj-mobile-only  { display: none; }
.bj-desktop-only { display: block; }

/* Problem section desktop grid */
.bj-problem-desktop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Problem section mobile stack */
.bj-problem-mobile-stack {
    display: none;
    flex-direction: column;
    gap: 32px;
}

/* ═══════════════════════════════════════════════════════════
   FRONT PAGE — MOBILE CORRECTIONS
   Scoped strictly to max-width: 768px.
   Desktop untouched.
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Show/hide utilities flip on mobile */
    .bj-mobile-only  { display: flex !important; }
    .bj-desktop-only { display: none !important; }
    .bj-problem-desktop-grid { display: none !important; }
    .bj-problem-mobile-stack { display: flex !important; }

    /* ── PROBLEM GRID: 1 column on mobile, stats on top ── */
    .rr-problem-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .rr-problem-stats { order: 1 !important; }
    .rr-problem-text  { order: 2 !important; }

    /* ── TRUST BAR: hide label only ── */
    .rr-trust-label { display: none !important; }

    /* ── HERO: left-align everything ── */
    .rr-hero-content {
        align-items: flex-start !important;
        text-align: left !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .rr-hero-eyebrow {
        text-align: left !important;
        justify-content: flex-start !important;
    }
    .rr-hero-eyebrow::before,
    .rr-hero-eyebrow::after { display: none !important; }
    .rr-hero-headline { text-align: left !important; }
    .rr-hero-sub { text-align: left !important; }
    .rr-hero-ctas { justify-content: flex-start !important; }
    .rr-hero-stat-badge { margin-bottom: 10px !important; }

    /* ── GLOBAL: every section eyebrow, title, subtext = LEFT ── */
    .rr-eyebrow         { text-align: left !important; }
    .rr-section-title   { text-align: left !important; }
    .rr-section-sub     {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }

    /* Section header wrappers */
    .rr-services-header,
    .rr-testimonials-header,
    .rr-partners-header,
    .rr-why-left,
    .rr-why-centered,
    .rr-cta-banner-inner,
    .rr-cta-banner-inner.centered {
        text-align: left !important;
    }

    /* Sub text inside these wrappers */
    .rr-cta-banner-sub,
    .rr-cta-banner-title,
    .rr-cta-banner-eyebrow {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* CTA banner actions: left-align buttons */
    .rr-cta-banner-actions,
    .rr-cta-banner-inner.centered .rr-cta-banner-actions {
        justify-content: flex-start !important;
    }

    /* Why us CTA button: left */
    .rr-why-centered .rr-why-cta {
        justify-content: flex-start !important;
        display: flex !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE — FINAL DEFINITIVE OVERRIDES
   This block loads LAST so nothing can override it.
   Every rule uses !important to beat base CSS and
   earlier media queries.
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── HERO: left-align all text ── */
    .rr-hero-content {
        align-items: flex-start !important;
        text-align: left !important;
    }
    .rr-hero-eyebrow {
        text-align: left !important;
        justify-content: flex-start !important;
    }
    .rr-hero-eyebrow::before,
    .rr-hero-eyebrow::after { display: none !important; }
    .rr-hero-headline { text-align: left !important; }
    .rr-hero-sub { text-align: left !important; }
    .rr-hero-ctas { justify-content: flex-start !important; }

    /* ── BADGE: 10px bottom margin ── */
    .rr-hero-stat-badge { margin-bottom: 10px !important; }

    /* ── TRUST BAR: hide label ── */
    .rr-trust-label { display: none !important; }

    /* ── ALL EYEBROWS: left ── */
    .rr-eyebrow { text-align: left !important; }

    /* ── ALL SECTION TITLES: left ── */
    .rr-section-title { text-align: left !important; }

    /* ── ALL BODY/SUB TEXT: left, no auto margins ── */
    .rr-section-sub {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }

    /* ── SERVICES HEADER ── */
    .rr-services-header {
        text-align: left !important;
    }
    .rr-services-header .rr-section-sub {
        margin: 0 !important;
    }

    /* ── PROCESS HEADER ── */
    .rr-process-header {
        text-align: left !important;
    }
    .rr-process-header .rr-section-sub {
        margin: 0 !important;
    }

    /* ── TESTIMONIALS HEADER ── */
    .rr-testimonials-header {
        text-align: left !important;
    }

    /* ── PARTNERS HEADER ── */
    .rr-partners-header {
        text-align: left !important;
    }
    .rr-partners-header .rr-section-sub {
        margin: 0 !important;
    }

    /* ── WHY US SECTION ── */
    .rr-why-centered {
        text-align: left !important;
    }
    .rr-why-centered .rr-section-sub {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
    .rr-why-centered .rr-why-cta {
        justify-content: flex-start !important;
        display: flex !important;
    }

    /* ── CTA BANNER ── */
    .rr-cta-banner-inner,
    .rr-cta-banner-inner.centered {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
    .rr-cta-banner-title { text-align: left !important; }
    .rr-cta-banner-sub {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .rr-cta-banner-eyebrow { text-align: left !important; }
    .rr-cta-banner-inner.centered .rr-cta-banner-sub {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .rr-cta-banner-inner.centered .rr-cta-banner-actions {
        justify-content: flex-start !important;
    }
}

    /* ── INNER PAGE HERO: left-align all text ── */
    .rr-page-hero-content {
        text-align: left !important;
    }
    .rr-page-hero-title { text-align: left !important; }
    .rr-page-hero-sub   { text-align: left !important; }

    /* ── ABOUT / SERVICE SECTION HEADERS ── */
    .rr-about-section-header {
        text-align: left !important;
    }
    .rr-about-section-header .rr-eyebrow,
    .rr-about-section-header .rr-section-title {
        text-align: left !important;
    }
    .rr-diff-sub,
    .rr-team-sub {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }

    /* ── ABOUT STORY + SERVICE OVERVIEW: 2-col → 1-col ── */
    .rr-about-story-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    /* ── SERVICE HERO CTAs: left-align ── */
    .rr-service-hero-ctas {
        justify-content: flex-start !important;
    }

    /* ── CONTACT TRUST STRIP: 4-col → 2-col, left-align ── */
    .rr-contact-trust-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }
    .rr-contact-trust-grid > div {
        align-items: flex-start !important;
        text-align: left !important;
    }

    /* ── SINGLE POST HERO: left-align ── */
    .rr-about-section-header {
        text-align: left !important;
    }
    .rr-about-section-header > div {
        justify-content: flex-start !important;
    }

    /* ── PHERO STATS: left on mobile ── */
    .rr-phero-stats {
        align-items: flex-start !important;
    }
    .rr-phero-stat {
        text-align: left !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — GRID CLASSES
   Desktop defined here. Mobile overrides below at 1024px.
   ═══════════════════════════════════════════════════════════ */

/* Stats bar: 4 col desktop */
.bj-about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Story/Mission: 2 col desktop, text left image right */
.bj-about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.bj-story-text  { order: 1; }
.bj-story-image { order: 2; }

/* Values: 4 col desktop */
.bj-about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Difference: 2 col desktop */
.bj-about-diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

/* Team: 4 col desktop, centered text */
.bj-about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.bj-about-team-grid .rr-testimonial-card {
    text-align: center;
}

/* Section headers: centered on desktop */
.rr-about-section-header {
    text-align: center;
    margin-bottom: 64px;
}
.rr-about-section-header .rr-section-sub {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {

    /* Stats: 2x2 */
    .bj-about-stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    /* Story: single col, image first */
    .bj-about-story-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .bj-story-image { order: 1 !important; }
    .bj-story-text  { order: 2 !important; }

    /* Values: single col */
    .bj-about-values-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Difference: single col */
    .bj-about-diff-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* Team: single col */
    .bj-about-team-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .bj-about-team-grid .rr-testimonial-card {
        text-align: left !important;
    }
    .bj-about-team-grid .rr-testimonial-card img,
    .bj-about-team-grid .rr-testimonial-card > div:first-child {
        margin-left: 0 !important;
        margin-right: auto !important;
    }

    /* Section headers: left on mobile */
    .rr-about-section-header {
        text-align: left !important;
    }
    .rr-diff-sub,
    .rr-team-sub {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }

    /* Story image height on mobile */
    .bj-story-image img {
        height: 280px !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   SINGLE SERVICE PAGE — GRID CLASSES
   Desktop defined here. Mobile at 768px below.
   ═══════════════════════════════════════════════════════════ */

/* Overview: 2 col desktop */
.bj-service-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Deliverables: 3 col desktop */
.bj-service-deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {

    /* Overview: 1 col, text first then image */
    .bj-service-overview-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    /* Deliverables: 1 col */
    .bj-service-deliverables-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   BLOG PAGE — GRID CLASSES
   ═══════════════════════════════════════════════════════════ */

/* Featured post: 2 col desktop */
.bj-blog-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* Post grid: 3 col desktop */
.bj-blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {

    /* Featured post: 1 col */
    .bj-blog-featured-grid {
        grid-template-columns: 1fr !important;
    }

    /* Post grid: 1 col */
    .bj-blog-posts-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   HOME HERO — BADGE MOBILE FIX
   Push hero content down so badge doesn't overlap eyebrow
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .rr-hero-stat-badge {
        top: 72px !important;
        right: 16px !important;
    }
    .rr-hero-content {
        padding-top: 160px !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   GLOBAL MOBILE — FINAL LEFT-ALIGN SWEEP
   Covers every remaining centered element across all pages.
   Strictly max-width: 768px — desktop untouched.
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Single post hero — left align title, excerpt, meta */
    .rr-about-section-header {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
    .rr-about-section-header h1,
    .rr-about-section-header p,
    .rr-about-section-header div {
        text-align: left !important;
    }
    .rr-about-section-header > div[style*="justify-content:center"],
    .rr-about-section-header > div[style*="justify-content: center"] {
        justify-content: flex-start !important;
    }

    /* Archive service page process header */
    .rr-process-header {
        text-align: left !important;
    }
    .rr-process-header .rr-eyebrow,
    .rr-process-header .rr-section-title,
    .rr-process-header .rr-section-sub {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Page hero content — all inner pages */
    .rr-page-hero-content {
        text-align: left !important;
    }
    .rr-page-hero-title { text-align: left !important; }
    .rr-page-hero-sub   { text-align: left !important; }
    .rr-phero-stats     { align-items: flex-start !important; }
    .rr-phero-stat      { text-align: left !important; }

    /* All eyebrows globally */
    .rr-eyebrow { text-align: left !important; }

    /* All section titles globally */
    .rr-section-title { text-align: left !important; }

    /* All section subtitles globally */
    .rr-section-sub {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }

    /* Services section header */
    .rr-services-header { text-align: left !important; }
    .rr-services-header .rr-section-sub { margin: 0 !important; }

    /* Testimonials header */
    .rr-testimonials-header { text-align: left !important; }

    /* Partners header */
    .rr-partners-header { text-align: left !important; }
    .rr-partners-header .rr-section-sub { margin: 0 !important; }

    /* Why us */
    .rr-why-centered { text-align: left !important; }
    .rr-why-centered .rr-section-sub {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
    .rr-why-centered .rr-why-cta {
        justify-content: flex-start !important;
        display: flex !important;
    }

    /* CTA banner */
    .rr-cta-banner-inner,
    .rr-cta-banner-inner.centered {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
    .rr-cta-banner-title,
    .rr-cta-banner-sub,
    .rr-cta-banner-eyebrow { text-align: left !important; }
    .rr-cta-banner-inner.centered .rr-cta-banner-sub {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .rr-cta-banner-inner.centered .rr-cta-banner-actions {
        justify-content: flex-start !important;
    }

    /* About section headers */
    .rr-about-section-header { text-align: left !important; }
    .rr-diff-sub, .rr-team-sub {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
}

/* Pagination — centered desktop, left mobile */
.bj-pagination { text-align: center; }
@media (max-width: 768px) {
    .bj-pagination { text-align: left !important; }
}

/* ═══════════════════════════════════════════════════════════
   SINGLE SERVICE PAGE HERO — MOBILE: HIDE BUTTONS & STATS
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .rr-service-hero-ctas { display: none !important; }
    .rr-phero-stats { display: none !important; }
}
