:root {
    --rs-bg: #f8f6f2;
    --rs-surface: #ffffff;
    --rs-ink: #1b2430;
    --rs-subtle: #5a6473;
    --rs-brand: #d6451b;
    --rs-brand-soft: #ffefe8;
    --rs-accent: #0b8a84;
    --rs-border: #eadfce;
    --rs-radius: 20px;
    --rs-radius-sm: 12px;
    --rs-shadow: 0 18px 48px rgba(22, 34, 46, 0.08);
    --rs-font-head: "Sora", "Segoe UI", sans-serif;
    --rs-font-body: "Manrope", "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--rs-font-body);
    color: var(--rs-ink);
    background: radial-gradient(circle at 12% 10%, #fff7ed 0, transparent 42%), radial-gradient(circle at 88% 0, #eafaf8 0, transparent 36%), var(--rs-bg);
    line-height: 1.6;
}

a {
    color: var(--rs-brand);
    text-decoration: none;
}

a:hover {
    color: #b93611;
}

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

h1,
h2,
h3,
h4 {
    margin-top: 0;
    font-family: var(--rs-font-head);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.8rem);
}

h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
}

.rs-container {
    width: min(1120px, calc(100% - 2.4rem));
    margin: 0 auto;
}

.rs-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(248, 246, 242, 0.9);
    border-bottom: 1px solid var(--rs-border);
}

.rs-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 1rem;
}

.rs-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.rs-logo-img {
    height: 44px;
    width: auto;
    max-width: 180px;
    display: block;
    object-fit: contain;
}

/* Light mode: show black logo, hide white */
.rs-logo-dark  { display: none !important; }
.rs-logo-light { display: block !important; }

/* Dark mode: show white logo, hide black */
html.dark .rs-logo-dark  { display: block !important; }
html.dark .rs-logo-light { display: none !important; }

.rs-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.45rem;
}

.rs-menu li a {
    color: var(--rs-ink);
    display: inline-block;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    transition: all 0.25s ease;
}

.rs-menu li a:hover,
.rs-menu li.current-menu-item a {
    background: var(--rs-brand-soft);
    color: var(--rs-brand);
}

.rs-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 0;
}

.rs-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--rs-ink);
    margin: 5px 0;
}

.rs-hero,
.rs-page-hero {
    padding: clamp(4.2rem, 8vw, 7rem) 0;
}

.rs-hero-modern {
    position: relative;
    overflow: clip;
}

.rs-hero-modern::before,
.rs-hero-modern::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.rs-hero-modern::before {
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(214, 69, 27, 0.2) 0%, rgba(214, 69, 27, 0) 70%);
    top: -220px;
    right: -80px;
}

.rs-hero-modern::after {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(11, 138, 132, 0.18) 0%, rgba(11, 138, 132, 0) 70%);
    bottom: -180px;
    left: -70px;
}

.rs-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
}

.rs-hero-copy p {
    max-width: 62ch;
}

.rs-trust-inline {
    margin-top: 1rem;
    color: var(--rs-subtle);
    font-weight: 600;
}

.rs-badge {
    display: inline-block;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: var(--rs-brand-soft);
    color: var(--rs-brand);
    font-weight: 700;
    font-size: 0.84rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rs-actions {
    margin-top: 1.8rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.rs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: 0.78rem 1.3rem;
    background: var(--rs-brand);
    color: #fff;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rs-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 10px 24px rgba(214, 69, 27, 0.25);
}

.rs-btn-outline {
    background: transparent;
    color: var(--rs-ink);
    border: 1px solid var(--rs-border);
}

.rs-btn-outline:hover {
    background: #fff;
    color: var(--rs-brand);
    box-shadow: var(--rs-shadow);
}

.rs-hero-card,
.rs-card {
    background: var(--rs-surface);
    border-radius: var(--rs-radius);
    border: 1px solid var(--rs-border);
    box-shadow: var(--rs-shadow);
}

.rs-hero-card {
    padding: 1.4rem;
}

.rs-hero-panel {
    background: linear-gradient(160deg, #ffffff 0%, #fff5ee 100%);
}

.rs-hero-card ul {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
    display: grid;
    gap: 0.8rem;
}

.rs-hero-card li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 600;
}

.rs-hero-kpi {
    margin-top: 1.1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}

.rs-hero-kpi div {
    border: 1px solid var(--rs-border);
    border-radius: var(--rs-radius-sm);
    background: #fff;
    padding: 0.75rem;
    display: grid;
    gap: 0.2rem;
}

.rs-hero-kpi strong {
    font-size: 1.1rem;
    font-family: var(--rs-font-head);
}

.rs-hero-kpi span {
    color: var(--rs-subtle);
    font-size: 0.86rem;
}

.rs-hero-card svg,
.rs-social svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.rs-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.rs-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.rs-service-grid,
.rs-events-grid,
.rs-portfolio-grid,
.rs-team-grid,
.rs-portfolio-preview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.rs-metrics {
    padding-top: 0;
}

.rs-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.rs-metric-card {
    background: #fff;
    border-radius: var(--rs-radius);
    border: 1px solid var(--rs-border);
    padding: 1.2rem;
    box-shadow: var(--rs-shadow);
}

.rs-metric-card h2 {
    margin-bottom: 0.35rem;
    color: var(--rs-accent);
}

.rs-metric-card p {
    margin: 0;
    color: var(--rs-subtle);
}

.rs-choose-grid,
.rs-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.rs-testimonial-card {
    position: relative;
    background: linear-gradient(170deg, #fff 0%, #f4fbfa 100%);
}

.rs-testimonial-card::before {
    content: "";
    width: 34px;
    height: 34px;
    border-radius: 50%;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: radial-gradient(circle at 30% 30%, #1dc7bf, #0b8a84);
}

.rs-testimonial-card p {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.rs-testimonial-card h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--rs-subtle);
    font-family: var(--rs-font-body);
    font-weight: 700;
}

.rs-cta-wrap {
    padding-top: 1.4rem;
}

.rs-cta-banner {
    background: linear-gradient(125deg, #17212d 0%, #0f3d4d 100%);
    color: #fff;
    border-radius: 24px;
    padding: clamp(1.3rem, 4vw, 2.1rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.rs-cta-banner p {
    margin-bottom: 0;
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.85);
}

.rs-card {
    padding: 1.2rem;
}

.rs-light {
    background: linear-gradient(180deg, #fff, #fff7f3);
    border-top: 1px solid var(--rs-border);
    border-bottom: 1px solid var(--rs-border);
}

.rs-thumb {
    margin: -1.2rem -1.2rem 1rem;
    border-radius: var(--rs-radius) var(--rs-radius) 0 0;
    overflow: hidden;
}

.rs-thumb img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.rs-two-col {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1rem;
}

.rs-list {
    margin: 0;
    padding-left: 1.1rem;
}

.rs-list li {
    margin-bottom: 0.45rem;
}

.rs-tabs {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.rs-tab {
    border: 1px solid var(--rs-border);
    background: #fff;
    color: var(--rs-ink);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-weight: 700;
    cursor: pointer;
}

.rs-tab.is-active {
    background: var(--rs-accent);
    border-color: var(--rs-accent);
    color: #fff;
}

.rs-portfolio-item.is-hidden {
    display: none;
}

.rs-video-link {
    display: inline-flex;
    margin-bottom: 0.7rem;
    background: #eafaf8;
    color: #056f6a;
    border-radius: 999px;
    padding: 0.25rem 0.7rem;
    font-weight: 700;
    font-size: 0.85rem;
}

.rs-form {
    display: grid;
    gap: 0.55rem;
}

.rs-form input,
.rs-form textarea,
.rs-form select {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--rs-border);
    padding: 0.75rem 0.8rem;
    font-family: var(--rs-font-body);
}

.rs-message {
    border-radius: 10px;
    padding: 0.65rem 0.8rem;
    font-weight: 600;
}

.rs-success {
    background: #ebfaf4;
    color: #0a6b43;
}

.rs-error {
    background: #fff0eb;
    color: #9b3415;
}

.rs-contact-links {
    display: grid;
    gap: 0.7rem;
}

.rs-footer {
    margin-top: 2rem;
    background: #1f2937;
    color: #d8e0ea;
}

.rs-footer a {
    color: #f3f7fd;
}

.rs-footer-grid {
    padding: 2.6rem 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.rs-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.4rem;
}

.rs-social {
    margin-top: 0.8rem;
    display: flex;
    gap: 0.65rem;
}

.rs-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: grid;
    place-items: center;
}

.rs-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.8rem 0;
    text-align: center;
}

[data-animate] {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .rs-menu-toggle {
        display: block;
    }

    .rs-nav {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--rs-border);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.25s ease;
    }

    .rs-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .rs-menu {
        flex-direction: column;
        padding: 1rem;
        gap: 0.2rem;
    }

    .rs-hero-grid,
    .rs-two-col,
    .rs-service-grid,
    .rs-events-grid,
    .rs-portfolio-grid,
    .rs-team-grid,
    .rs-footer-grid,
    .rs-portfolio-preview {
        grid-template-columns: 1fr;
    }

    .rs-metric-grid,
    .rs-choose-grid,
    .rs-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .rs-cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .rs-section-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===========================================
   HOME — MODERN REDESIGN
   =========================================== */

/* ── HERO DECORATIONS ─────────────────────── */
.rs-hero-modern::before,
.rs-hero-modern::after {
    display: none;
}

.rs-hero-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.rs-deco-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
}

.rs-deco-orb-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(214, 69, 27, 0.18) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: rs-float 9s ease-in-out infinite;
}

.rs-deco-orb-2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(11, 138, 132, 0.14) 0%, transparent 70%);
    bottom: -160px;
    left: -80px;
    animation: rs-float 11s ease-in-out infinite reverse;
}

.rs-deco-orb-3 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(214, 69, 27, 0.08) 0%, transparent 70%);
    top: 45%;
    left: 42%;
    animation: rs-float 14s ease-in-out infinite 2s;
}

.rs-deco-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(27, 36, 48, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 36, 48, 0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

@keyframes rs-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-22px) scale(1.04); }
}

/* ── HERO CONTENT ─────────────────────────── */
.rs-hero-modern .rs-container {
    position: relative;
    z-index: 1;
}

.rs-gradient-text {
    background: linear-gradient(135deg, var(--rs-brand) 0%, #ff7a52 55%, #d6451b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rs-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.rs-badge-dot {
    width: 8px;
    height: 8px;
    color: var(--rs-brand);
    animation: rs-pulse 2s ease-in-out infinite;
}

@keyframes rs-pulse {
    0%, 100% { opacity: 1;   transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.8); }
}

.rs-trust-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.4rem;
}

.rs-trust-dots {
    display: flex;
}

.rs-trust-dot {
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: linear-gradient(135deg, var(--rs-brand), #ff7a52);
    margin-left: -7px;
}

.rs-trust-dot:first-child { margin-left: 0; }

/* Hero panel */
.rs-hero-panel {
    background: linear-gradient(160deg, #ffffff 0%, #fff5ee 100%);
    border-radius: var(--rs-radius);
    border: 1px solid var(--rs-border);
    box-shadow: var(--rs-shadow);
    padding: 1.6rem;
}

.rs-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.rs-panel-title {
    font-family: var(--rs-font-head);
    font-weight: 700;
    font-size: 0.95rem;
}

.rs-panel-live {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #15803d;
    background: #dcfce7;
    border-radius: 999px;
    padding: 0.2rem 0.65rem;
}

.rs-live-dot {
    width: 7px;
    height: 7px;
    background: #16a34a;
    border-radius: 50%;
    display: block;
    animation: rs-live 1.6s ease-in-out infinite;
}

@keyframes rs-live {
    0%, 100% { opacity: 1;  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5); }
    50%       { opacity: 0.7; box-shadow: 0 0 0 5px rgba(22, 163, 74, 0); }
}

.rs-panel-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
    display: grid;
    gap: 0.75rem;
}

.rs-panel-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.93rem;
}

.rs-panel-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.rs-panel-icon svg {
    width: 20px;
    height: 20px;
}

.rs-panel-icon--orange { background: #fff0e8; color: var(--rs-brand); }
.rs-panel-icon--teal   { background: #e6f7f7; color: var(--rs-accent); }
.rs-panel-icon--blue   { background: #eff6ff; color: #2563eb; }

.rs-panel-kpi {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

.rs-kpi-item {
    border: 1px solid var(--rs-border);
    border-radius: var(--rs-radius-sm);
    background: #fff;
    padding: 0.75rem;
    display: grid;
    gap: 0.15rem;
}

.rs-kpi-item strong {
    font-size: 1.1rem;
    font-family: var(--rs-font-head);
    color: var(--rs-brand);
}

.rs-kpi-item span {
    color: var(--rs-subtle);
    font-size: 0.82rem;
}

/* data-animate delay variants */
[data-animate][data-animate-delay="100"] { transition-delay: 0.1s; }
[data-animate][data-animate-delay="150"] { transition-delay: 0.15s; }
[data-animate][data-animate-delay="200"] { transition-delay: 0.2s; }
[data-animate][data-animate-delay="300"] { transition-delay: 0.3s; }

/* ── BUTTONS (extended) ───────────────────── */
.rs-btn-primary {
    background: linear-gradient(135deg, var(--rs-brand) 0%, #e85525 100%);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    box-shadow: 0 4px 18px rgba(214, 69, 27, 0.28);
}

.rs-btn-primary:hover {
    box-shadow: 0 8px 28px rgba(214, 69, 27, 0.42);
    color: #fff;
}

.rs-btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.rs-btn-primary:hover svg {
    transform: translateX(3px);
}

.rs-btn-white {
    background: #fff;
    color: var(--rs-ink);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.rs-btn-white svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.rs-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    color: var(--rs-ink);
}

.rs-btn-white:hover svg {
    transform: translateX(3px);
}

.rs-btn-ghost {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    border: 1.5px solid rgba(255,255,255,0.32);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--rs-font-head);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.rs-btn-ghost:hover {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

.rs-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--rs-brand);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.2s ease;
    white-space: nowrap;
}

.rs-link-arrow svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.rs-link-arrow:hover {
    color: #b93611;
}

.rs-link-arrow:hover svg {
    transform: translateX(4px);
}

/* ── SECTION TAGS & HEADS ─────────────────── */
.rs-section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rs-brand);
    margin-bottom: 0.35rem;
}

.rs-section-head--split {
    align-items: flex-end;
}

.rs-section-head--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

/* ── METRICS (enhanced) ───────────────────── */
.rs-metric-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rs-metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(22, 34, 46, 0.12);
}

.rs-metric-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rs-brand), var(--rs-accent));
    border-radius: var(--rs-radius) var(--rs-radius) 0 0;
}

.rs-metric-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(11, 138, 132, 0.1), rgba(11, 138, 132, 0.04));
    display: grid;
    place-items: center;
    margin-bottom: 0.9rem;
    color: var(--rs-accent);
}

.rs-metric-icon svg {
    width: 22px;
    height: 22px;
}

.rs-metric-number {
    display: flex;
    align-items: baseline;
    gap: 1px;
    margin-bottom: 0.4rem;
}

.rs-metric-number h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1;
    color: var(--rs-accent);
}

.rs-count-suffix {
    font-family: var(--rs-font-head);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--rs-accent);
    line-height: 1;
}

.rs-metric-card p {
    margin: 0;
    color: var(--rs-subtle);
    font-size: 0.88rem;
}

/* ── SERVICES ─────────────────────────────── */
.rs-services-section .rs-section-head {
    align-items: flex-end;
    margin-bottom: 2rem;
}

.rs-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.rs-service-card {
    background: var(--rs-surface);
    border-radius: var(--rs-radius);
    border: 1px solid var(--rs-border);
    padding: 1.7rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rs-service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(214, 69, 27, 0.03) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.rs-service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 56px rgba(22, 34, 46, 0.12);
    border-color: rgba(214, 69, 27, 0.2);
}

.rs-service-card:hover::after {
    opacity: 1;
}

.rs-service-card h3 {
    margin: 1rem 0 0.45rem;
    font-size: 1.05rem;
}

.rs-service-card p {
    margin: 0;
    color: var(--rs-subtle);
    font-size: 0.9rem;
    line-height: 1.68;
}

.rs-service-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    transition: transform 0.3s ease;
}

.rs-service-card:hover .rs-service-icon {
    transform: rotate(-6deg) scale(1.1);
}

.rs-service-icon svg {
    width: 24px;
    height: 24px;
}

/* Stagger service cards */
.rs-service-card:nth-child(1)[data-animate] { transition-delay: 0.05s; }
.rs-service-card:nth-child(2)[data-animate] { transition-delay: 0.12s; }
.rs-service-card:nth-child(3)[data-animate] { transition-delay: 0.19s; }
.rs-service-card:nth-child(4)[data-animate] { transition-delay: 0.26s; }
.rs-service-card:nth-child(5)[data-animate] { transition-delay: 0.33s; }
.rs-service-card:nth-child(6)[data-animate] { transition-delay: 0.40s; }

.rs-icon--orange { background: #fff0e8; color: var(--rs-brand); }
.rs-icon--teal   { background: #e6f7f7; color: var(--rs-accent); }
.rs-icon--blue   { background: #eff6ff; color: #2563eb; }
.rs-icon--purple { background: #f5f3ff; color: #7c3aed; }
.rs-icon--green  { background: #f0fdf4; color: #15803d; }

/* ── WHY CHOOSE US ────────────────────────── */
.rs-why-section {
    background: linear-gradient(180deg, #ffffff, #f8f6f2);
    border-top: 1px solid var(--rs-border);
    border-bottom: 1px solid var(--rs-border);
}

.rs-why-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.2fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
}

.rs-why-header {
    position: sticky;
    top: 100px;
}

.rs-why-header h2 {
    margin-bottom: 0.75rem;
}

.rs-why-header p {
    color: var(--rs-subtle);
    margin: 0;
    line-height: 1.7;
}

.rs-why-grid {
    display: grid;
    gap: 0.85rem;
}

.rs-why-card {
    background: var(--rs-surface);
    border-radius: var(--rs-radius);
    border: 1px solid var(--rs-border);
    padding: 1.4rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rs-why-card:hover {
    transform: translateX(5px);
    box-shadow: var(--rs-shadow);
}

.rs-why-icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--rs-brand-soft), #fff);
    border: 1px solid rgba(214, 69, 27, 0.15);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--rs-brand);
    transition: transform 0.3s ease;
}

.rs-why-card:hover .rs-why-icon {
    transform: scale(1.08) rotate(-4deg);
}

.rs-why-icon svg {
    width: 22px;
    height: 22px;
}

.rs-why-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
}

.rs-why-card p {
    margin: 0;
    color: var(--rs-subtle);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Stagger why cards */
.rs-why-card:nth-child(1)[data-animate] { transition-delay: 0.05s; }
.rs-why-card:nth-child(2)[data-animate] { transition-delay: 0.15s; }
.rs-why-card:nth-child(3)[data-animate] { transition-delay: 0.25s; }
.rs-why-card:nth-child(4)[data-animate] { transition-delay: 0.35s; }

/* ── TESTIMONIALS ─────────────────────────── */
.rs-testimonials-section {
    background: linear-gradient(175deg, #fff7f3 0%, #ffffff 100%);
    border-top: 1px solid var(--rs-border);
}

.rs-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.rs-testimonial-card {
    background: var(--rs-surface);
    border-radius: var(--rs-radius);
    border: 1px solid var(--rs-border);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rs-testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rs-brand), var(--rs-accent));
}

.rs-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(22, 34, 46, 0.1);
}

.rs-testimonial-quote svg {
    width: 30px;
    height: 30px;
    color: var(--rs-brand);
    opacity: 0.25;
}

.rs-star-row {
    display: flex;
    gap: 2px;
}

.rs-star {
    width: 16px;
    height: 16px;
    color: #f59e0b;
}

.rs-testimonial-card p {
    margin: 0;
    color: var(--rs-ink);
    line-height: 1.72;
    font-size: 0.93rem;
    flex: 1;
}

.rs-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--rs-border);
}

.rs-author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rs-brand), #ff7a52);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.rs-testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.rs-testimonial-author span {
    display: block;
    font-size: 0.8rem;
    color: var(--rs-subtle);
}

/* Stagger testimonial cards */
.rs-testimonial-card:nth-child(1)[data-animate] { transition-delay: 0.05s; }
.rs-testimonial-card:nth-child(2)[data-animate] { transition-delay: 0.18s; }
.rs-testimonial-card:nth-child(3)[data-animate] { transition-delay: 0.31s; }

/* ── CTA SECTION ──────────────────────────── */
.rs-cta-section {
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.rs-cta-inner {
    background: linear-gradient(128deg, #0f1d2b 0%, #0a2f3e 45%, #0c3b4d 100%);
    border-radius: 28px;
    padding: clamp(2.2rem, 5vw, 3.6rem);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.rs-cta-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.rs-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(55px);
}

.rs-cta-orb-1 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(214, 69, 27, 0.3) 0%, transparent 70%);
    top: -160px;
    right: -60px;
    animation: rs-float 8s ease-in-out infinite;
}

.rs-cta-orb-2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(11, 138, 132, 0.22) 0%, transparent 70%);
    bottom: -110px;
    left: 22%;
    animation: rs-float 10s ease-in-out infinite reverse 1s;
}

.rs-cta-content {
    position: relative;
    z-index: 1;
}

.rs-cta-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(214, 69, 27, 0.92);
    background: rgba(214, 69, 27, 0.14);
    border: 1px solid rgba(214, 69, 27, 0.25);
    border-radius: 999px;
    padding: 0.22rem 0.75rem;
    margin-bottom: 0.85rem;
}

.rs-cta-content h2 {
    color: #fff;
    margin-bottom: 0.55rem;
    max-width: 480px;
}

.rs-cta-content p {
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
    max-width: 460px;
}

.rs-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: stretch;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* ── HOME RESPONSIVE ──────────────────────── */
@media (max-width: 980px) {
    .rs-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rs-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .rs-why-layout {
        grid-template-columns: 1fr;
    }

    .rs-why-header {
        position: static;
    }

    .rs-cta-inner {
        grid-template-columns: 1fr;
    }

    .rs-cta-actions {
        flex-direction: row;
    }

    .rs-section-head--split {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 640px) {
    .rs-service-grid {
        grid-template-columns: 1fr;
    }

    .rs-metric-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rs-cta-actions {
        flex-direction: column;
    }

    .rs-cta-inner {
        border-radius: 20px;
    }
}

/* ===========================================
   HERO V2  —  NPDigital / HubSpot Style
   =========================================== */

/* Override old hero decorations */
.rs-hero-v2 .rs-deco-orb-3 { display: none; }

/* Larger, more impactful headline */
.rs-hero-v2 h1 {
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: 1.06;
    letter-spacing: -0.025em;
    margin: 1rem 0 1.1rem;
}

/* Hero grid: give visual side more room */
.rs-hero-v2 .rs-hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

/* ── Hero Badge ───────────────────────────── */
.rs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--rs-brand-soft);
    border: 1px solid rgba(214, 69, 27, 0.18);
    border-radius: 999px;
    padding: 0.42rem 1rem 0.42rem 0.7rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--rs-brand);
    letter-spacing: 0.02em;
    margin-bottom: 0;
}

/* Override old rs-badge display for hero-v2 */
.rs-hero-v2 .rs-badge {
    display: none;
}

/* ── Hero Subtext ─────────────────────────── */
.rs-hero-v2 .rs-hero-copy p {
    font-size: 1.05rem;
    color: var(--rs-subtle);
    line-height: 1.72;
    max-width: 54ch;
    margin: 0;
}

/* ── Hero Inline Stats ────────────────────── */
.rs-hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.2rem;
    padding-top: 1.8rem;
    border-top: 1px solid var(--rs-border);
}

.rs-h-stat strong {
    display: block;
    font-size: 1.55rem;
    font-family: var(--rs-font-head);
    font-weight: 800;
    line-height: 1;
    color: var(--rs-ink);
}

.rs-h-stat span {
    display: block;
    font-size: 0.76rem;
    color: var(--rs-subtle);
    margin-top: 0.2rem;
    font-weight: 500;
}

.rs-h-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--rs-border);
    flex-shrink: 0;
}

/* ── Hero Visual (Right side) ─────────────── */
.rs-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.rs-visual-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 69, 27, 0.2) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ── Dashboard Card ───────────────────────── */
.rs-dashboard {
    background: #0f172a;
    border-radius: 22px;
    padding: 1.5rem;
    width: 100%;
    max-width: 420px;
    box-shadow:
        0 40px 100px rgba(15, 23, 42, 0.32),
        0 0 0 1px rgba(255, 255, 255, 0.07);
    position: relative;
    z-index: 1;
}

.rs-dash-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.rs-dash-title {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

/* ── Chart Area ───────────────────────────── */
.rs-dash-chart-area {
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    margin-bottom: 0.4rem;
}

.rs-dash-svg {
    width: 100%;
    height: 80px;
    display: block;
}

.rs-chart-area {
    fill: url(#rs-cg);
}

.rs-chart-line {
    fill: none;
    stroke: var(--rs-brand);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.rs-chart-dot {
    fill: var(--rs-brand);
    filter: drop-shadow(0 0 4px rgba(214, 69, 27, 0.8));
}

.rs-dash-chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 4px 6px;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 500;
}

/* ── Dashboard Metrics ────────────────────── */
.rs-dash-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
    margin: 0.75rem 0;
}

.rs-dash-metric {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 0.6rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.rs-dash-metric-val {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #fff;
    font-family: var(--rs-font-head);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.rs-dash-up {
    color: #34d399;
}

.rs-dash-metric-label {
    display: block;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.68rem;
    margin-top: 0.25rem;
    line-height: 1.3;
}

/* ── Progress Bars ────────────────────────── */
.rs-dash-bars {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.rs-dash-bar-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.rs-dash-bar-row span:last-child {
    min-width: 28px;
    text-align: right;
}

.rs-dash-bar-track {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.rs-dash-bar-fill {
    height: 100%;
    width: var(--bar-w, 75%);
    background: linear-gradient(90deg, var(--rs-brand), #ff7a52);
    border-radius: 999px;
    transform-origin: left;
    transform: scaleX(0);
    animation: rs-bar-fill 1.2s ease-out forwards;
    animation-delay: var(--bar-delay, 0.3s);
}

.rs-bar-fill-teal {
    background: linear-gradient(90deg, var(--rs-accent), #1dc7bf);
}

@keyframes rs-bar-fill {
    to { transform: scaleX(1); }
}

/* ── Floating Chips ───────────────────────── */
.rs-float-chip {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 0.6rem 0.9rem;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--rs-ink);
    z-index: 3;
    white-space: nowrap;
}

.rs-chip-1 {
    top: 12px;
    left: -8px;
    animation: rs-float 4.5s ease-in-out infinite;
}

.rs-chip-2 {
    bottom: 22px;
    right: -8px;
    animation: rs-float 5.5s ease-in-out infinite 1.5s;
}

.rs-chip-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.rs-chip-icon svg {
    width: 14px;
    height: 14px;
}

.rs-chip-icon--green {
    background: #dcfce7;
    color: #16a34a;
}

.rs-chip-icon--orange {
    background: var(--rs-brand-soft);
    color: var(--rs-brand);
}

.rs-float-chip strong {
    display: block;
    font-size: 0.88rem;
    color: var(--rs-ink);
    font-weight: 800;
}

.rs-float-chip span {
    display: block;
    font-size: 0.7rem;
    color: var(--rs-subtle);
    font-weight: 500;
}

/* ===========================================
   CLIENT LOGOS — Infinite Marquee
   =========================================== */

.rs-logos-section {
    padding: 2rem 0 1.8rem;
    background: #ffffff;
    border-top: 1px solid var(--rs-border);
    border-bottom: 1px solid var(--rs-border);
    overflow: hidden;
}

.rs-logos-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--rs-subtle);
    opacity: 0.65;
    margin: 0 0 1.4rem;
}

.rs-logos-outer {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.rs-logos-track {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    width: max-content;
    animation: rs-marquee 32s linear infinite;
}

.rs-logos-track:hover {
    animation-play-state: paused;
}

@keyframes rs-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.rs-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.rs-logo-item a {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.rs-logo-item a:hover {
    opacity: 1;
}

.rs-logo-img {
    height: 42px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.55);
    transition: filter 0.35s ease, transform 0.3s ease;
    display: block;
}

.rs-logo-item:hover .rs-logo-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.06);
}

.rs-logo-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--rs-subtle);
    opacity: 0.5;
    transition: opacity 0.3s ease;
    font-family: var(--rs-font-head);
    letter-spacing: -0.02em;
}

.rs-logo-item:hover .rs-logo-name {
    opacity: 0.9;
}

/* ── Hero V2 Responsive ───────────────────── */
@media (max-width: 980px) {
    .rs-hero-v2 .rs-hero-grid {
        grid-template-columns: 1fr;
    }

    .rs-hero-visual {
        display: none;
    }

    .rs-hero-v2 h1 {
        font-size: clamp(2.4rem, 6vw, 3.6rem);
    }

    .rs-hero-stats {
        gap: 1rem;
    }

    .rs-h-stat strong {
        font-size: 1.3rem;
    }
}

@media (max-width: 640px) {
    .rs-hero-v2 h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .rs-hero-stats {
        gap: 0.75rem;
    }
}

/* ===========================================
   CLIENT LOGOS — Grid Style (ClickUp-inspired)
   =========================================== */

/* Override old marquee styles */
.rs-logos-outer,
.rs-logos-track {
    display: none !important;
}

/* ── Section wrapper ──────────────────────── */
.rs-logos-section {
    padding: 4rem 0 4.5rem;
    background: #ffffff;
    border-top: 1px solid var(--rs-border);
    border-bottom: 1px solid var(--rs-border);
    overflow: visible;
    animation: none;
}

/* ── Intro text ───────────────────────────── */
.rs-logos-intro {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 2.8rem;
}

.rs-logos-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--rs-brand);
    margin: 0 0 0.6rem;
}

.rs-logos-heading {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-family: var(--rs-font-head);
    color: var(--rs-ink);
    margin: 0 0 0.6rem;
    line-height: 1.2;
}

.rs-logos-sub {
    font-size: 0.92rem;
    color: var(--rs-subtle);
    margin: 0;
    line-height: 1.65;
}

/* ── Grid wrapper (outer border + radius) ─── */
.rs-logos-grid-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 0 1px var(--rs-border), var(--rs-shadow);
}

/* ── Grid ─────────────────────────────────── */
.rs-logos-grid {
    display: grid;
    background: var(--rs-border);      /* grid line colour */
    gap: 1px;                           /* gap = visible grid lines */
}

/* Column count helpers */
.rs-logos-cols-1 { grid-template-columns: 1fr; }
.rs-logos-cols-2 { grid-template-columns: repeat(2, 1fr); }
.rs-logos-cols-3 { grid-template-columns: repeat(3, 1fr); }
.rs-logos-cols-4 { grid-template-columns: repeat(4, 1fr); }
.rs-logos-cols-5 { grid-template-columns: repeat(5, 1fr); }

/* ── Logo cell ────────────────────────────── */
.rs-logo-cell {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 120px;
    display: flex;
    align-items: stretch;
}

/* Hover: very subtle brand wash */
.rs-logo-cell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(214, 69, 27, 0.04) 0%,
        rgba(11, 138, 132, 0.03) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.rs-logo-cell:hover::before {
    opacity: 1;
}

/* ── Logo link / wrapper ──────────────────── */
.rs-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    padding: 1.8rem 1.5rem 1.4rem;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 1;
    transition: transform 0.25s ease;
}

.rs-logo-cell:hover .rs-logo-link {
    transform: translateY(-2px);
}

/* ── Logo image wrapper ───────────────────── */
.rs-logo-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.rs-logo-img {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
    filter: grayscale(100%) opacity(0.5);
    transition: filter 0.35s ease, transform 0.3s ease;
}

.rs-logo-cell:hover .rs-logo-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* ── Text fallback (no image) ─────────────── */
.rs-logo-text-fallback {
    font-family: var(--rs-font-head);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--rs-subtle);
    opacity: 0.45;
    transition: opacity 0.3s ease;
    text-align: center;
    letter-spacing: -0.02em;
}

.rs-logo-cell:hover .rs-logo-text-fallback {
    opacity: 0.9;
}

/* ── Visit badge (appears on hover) ──────── */
.rs-logo-visit {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--rs-brand);
    background: var(--rs-brand-soft);
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    white-space: nowrap;
}

.rs-logo-visit svg {
    width: 13px;
    height: 13px;
}

.rs-logo-cell:hover .rs-logo-visit {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 980px) {
    .rs-logos-cols-5 { grid-template-columns: repeat(3, 1fr); }
    .rs-logos-cols-4 { grid-template-columns: repeat(3, 1fr); }

    .rs-logos-grid-wrap {
        border-radius: 16px;
    }
}

@media (max-width: 640px) {
    .rs-logos-cols-5,
    .rs-logos-cols-4,
    .rs-logos-cols-3 { grid-template-columns: repeat(2, 1fr); }

    .rs-logos-section {
        padding: 3rem 0;
    }

    .rs-logos-intro {
        margin-bottom: 2rem;
    }

    .rs-logo-link {
        padding: 1.4rem 1rem 1.1rem;
    }

    .rs-logo-img {
        height: 32px;
    }
}

/* ===========================================
   CLIENT LOGOS — 4-side fade + scroll
   Overrides the previous grid implementation
   =========================================== */

/* Keep section base intact; enhance grid container */
.rs-logos-section {
    padding: 4rem 0 4.5rem;
}

/* ── Fade wrapper (4-side mask via pseudo-elements) ── */
.rs-logos-fade-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 0 1px var(--rs-border);
}

/*
 * White gradient overlays on all 4 sides.
 * ::before  = left + right fade
 * ::after   = top  + bottom fade
 * pointer-events:none so clicks pass through to cells.
 */
.rs-logos-fade-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 20;
    pointer-events: none;
    background: linear-gradient(
        to right,
        #ffffff 0%,
        transparent 12%,
        transparent 88%,
        #ffffff 100%
    );
}

.rs-logos-fade-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 20;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        transparent 12%,
        transparent 88%,
        #ffffff 100%
    );
}

/* ── Grid wrap — clips height when scrolling ── */
.rs-logos-grid-wrap {
    overflow: hidden;
    /* default: no max-height (shows all rows) */
}

/* ── Grid lines via 1px gap on colored parent ── */
.rs-logos-grid {
    display: grid;
    background: var(--rs-border);
    gap: 1px;
}

/* Column helpers (already defined, keep them) */
.rs-logos-cols-1 { grid-template-columns: 1fr; }
.rs-logos-cols-2 { grid-template-columns: repeat(2, 1fr); }
.rs-logos-cols-3 { grid-template-columns: repeat(3, 1fr); }
.rs-logos-cols-4 { grid-template-columns: repeat(4, 1fr); }
.rs-logos-cols-5 { grid-template-columns: repeat(5, 1fr); }

/* ── Logo cell ────────────────────────────── */
.rs-logo-cell {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 120px;
    display: flex;
    align-items: stretch;
}

.rs-logo-cell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(214, 69, 27, 0.05) 0%,
        rgba(11, 138, 132, 0.04) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.rs-logo-cell:hover::before {
    opacity: 1;
}

/* ── Logo link / div wrapper ─────────────── */
.rs-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1.8rem 1.5rem 1.4rem;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 2;
    transition: transform 0.25s ease;
}

.rs-logo-cell:hover .rs-logo-link {
    transform: translateY(-2px);
}

/* ── Logo image ───────────────────────────── */
.rs-logo-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.rs-logo-img {
    height: 42px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
    filter: grayscale(100%) opacity(1);
    transition: filter 0.35s ease, transform 0.3s ease;
}

.rs-logo-cell:hover .rs-logo-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.06);
}

/* ── Text fallback ────────────────────────── */
.rs-logo-text-fallback {
    font-family: var(--rs-font-head);
    font-weight: 800;
    font-size: 1rem;
    color: var(--rs-subtle);
    opacity: 0.45;
    transition: opacity 0.3s ease;
    text-align: center;
    letter-spacing: -0.02em;
}

.rs-logo-cell:hover .rs-logo-text-fallback {
    opacity: 0.9;
}

/* ── Visit badge ─────────────────────────── */
.rs-logo-visit {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--rs-brand);
    background: var(--rs-brand-soft);
    border-radius: 999px;
    padding: 0.18rem 0.55rem;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.rs-logo-visit svg {
    width: 12px;
    height: 12px;
}

.rs-logo-cell:hover .rs-logo-visit {
    opacity: 1;
    transform: translateY(0);
}

/* ── Scrolling mode (>4 rows) ────────────── */
/*
 * When PHP detects >4 rows it adds .rs-logos-scrolling to
 * .rs-logos-fade-wrap. The grid-wrap gets a fixed height of
 * 4 rows and the grid scrolls vertically in an infinite loop.
 * Logos are duplicated in PHP for seamless looping.
 */
.rs-logos-scrolling .rs-logos-grid-wrap {
    /* 4 rows × 120px min-height + 3px gaps */
    max-height: 483px;
    overflow: hidden;
}

.rs-logos-scrolling .rs-logos-grid {
    animation: rs-vscroll 28s linear infinite;
}

.rs-logos-scrolling .rs-logos-grid:hover {
    animation-play-state: paused;
}

@keyframes rs-vscroll {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* Slightly larger top/bottom fade when scrolling */
.rs-logos-scrolling::after {
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        transparent 18%,
        transparent 82%,
        #ffffff 100%
    );
}

/* ── Responsive overrides ────────────────── */
@media (max-width: 980px) {
    .rs-logos-cols-5 { grid-template-columns: repeat(3, 1fr); }
    .rs-logos-cols-4 { grid-template-columns: repeat(3, 1fr); }
    .rs-logos-fade-wrap { border-radius: 16px; }
}

@media (max-width: 640px) {
    .rs-logos-cols-5,
    .rs-logos-cols-4,
    .rs-logos-cols-3 { grid-template-columns: repeat(2, 1fr); }

    .rs-logos-section { padding: 3rem 0; }
    .rs-logos-intro   { margin-bottom: 1.8rem; }

    .rs-logo-link {
        padding: 1.3rem 0.9rem 1rem;
    }

    .rs-logo-img { height: 34px; }

    .rs-logos-fade-wrap::before {
        background: linear-gradient(
            to right,
            #ffffff 0%, transparent 8%,
            transparent 92%, #ffffff 100%
        );
    }
}

/* ═══════════════════════════════════════════════════════════
   HERO V3 — Centred + Marketing Background
   ═══════════════════════════════════════════════════════════ */

/* ── Section shell ────────────────────────── */
.rs-hero-v3 {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: clamp(6rem, 11vw, 9rem) 0 clamp(4rem, 7vw, 6rem);
    min-height: 88vh;
    display: flex;
    align-items: center;
}

/* ── Background decoration ────────────────── */
.rs-hv3-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

/* Soft colour orbs */
.rs-hv3-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.rs-hv3-orb-1 {
    width: 700px;
    height: 700px;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(214, 69, 27, 0.10) 0%, transparent 65%);
}

.rs-hv3-orb-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(11, 138, 132, 0.08) 0%, transparent 65%);
}

.rs-hv3-orb-3 {
    width: 400px;
    height: 400px;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(214, 69, 27, 0.05) 0%, transparent 70%);
}

/* Dot-grid overlays */
.rs-hv3-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    opacity: 0.35;
    color: #d6451b;
}

.rs-hv3-dots-tl {
    top: 60px;
    left: 40px;
}

.rs-hv3-dots-br {
    bottom: 60px;
    right: 40px;
    color: #0b8a84;
}

/* ── Floating marketing icons ─────────────── */
.rs-hv3-icon {
    position: absolute;
    animation: rs-float 5s ease-in-out infinite;
}

/* Positions — scattered around the hero */
.rs-hv3-icon-1 { top: 12%;  left: 6%;   animation-duration: 6s;   animation-delay: 0s;   }
.rs-hv3-icon-2 { top: 8%;   right: 7%;  animation-duration: 5.5s; animation-delay: 0.8s; }
.rs-hv3-icon-3 { bottom: 22%; left: 9%;  animation-duration: 7s;   animation-delay: 1.4s; }
.rs-hv3-icon-4 { bottom: 18%; right: 6%; animation-duration: 5s;   animation-delay: 0.4s; }
.rs-hv3-icon-5 { top: 50%;  left: 3%;   animation-duration: 6.5s; animation-delay: 1s;   transform: translateY(-50%); }
.rs-hv3-icon-6 { top: 48%;  right: 3%;  animation-duration: 5.8s; animation-delay: 1.6s; transform: translateY(-50%); }

.rs-hv3-icon svg {
    width: 48px;
    height: 48px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}

/* ── Centred content wrapper ──────────────── */
.rs-hv3-center {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

/* ── Content block ────────────────────────── */
.rs-hv3-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.6rem;
    max-width: 780px;
}

.rs-hv3-h1 {
    font-family: var(--rs-font-head);
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: var(--rs-dark);
    margin: 0;
}

/* ── Typewriter ───────────────────────────── */
.rs-tw-wrap {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
    min-width: 2ch;
}

.rs-tw-text {
    background: linear-gradient(135deg, var(--rs-brand) 0%, #f06040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.rs-tw-cursor {
    display: inline-block;
    color: var(--rs-brand);
    font-weight: 300;
    margin-left: 2px;
    animation: rs-blink 0.9s step-end infinite;
    -webkit-text-fill-color: var(--rs-brand);
}

@keyframes rs-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

.rs-hv3-sub {
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    color: var(--rs-subtle);
    line-height: 1.75;
    max-width: 580px;
    margin: 0;
}

/* ── CTA buttons ──────────────────────────── */
.rs-hv3-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Ghost button inside the white hero — use dark ink in light mode */
.rs-hv3-btns .rs-btn-ghost {
    color: var(--rs-ink);
    background: rgba(27, 36, 48, 0.06);
    border-color: rgba(27, 36, 48, 0.22);
}

.rs-hv3-btns .rs-btn-ghost svg {
    color: var(--rs-ink);
    opacity: 0.7;
}

.rs-hv3-btns .rs-btn-ghost:hover {
    color: var(--rs-ink);
    background: rgba(27, 36, 48, 0.11);
    border-color: rgba(27, 36, 48, 0.42);
    transform: translateY(-2px);
}

/* Dark mode: hero is black — restore white */
html.dark .rs-hv3-btns .rs-btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.28);
}

html.dark .rs-hv3-btns .rs-btn-ghost svg {
    color: #ffffff;
    opacity: 0.7;
}

html.dark .rs-hv3-btns .rs-btn-ghost:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.55);
}

.rs-hv3-actions .rs-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-family: var(--rs-font-head);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--rs-ink);
    background: rgba(27, 36, 48, 0.06);
    border: 1.5px solid rgba(27, 36, 48, 0.22);
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
    white-space: nowrap;
}

.rs-hv3-actions .rs-btn-ghost svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--rs-ink);
    opacity: 0.7;
}

.rs-hv3-actions .rs-btn-ghost:hover {
    border-color: rgba(27, 36, 48, 0.45);
    color: var(--rs-ink);
    background: rgba(27, 36, 48, 0.1);
}

/* Dark mode: hero is black so restore white ghost style */
html.dark .rs-hv3-actions .rs-btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.28);
}

html.dark .rs-hv3-actions .rs-btn-ghost svg {
    color: #ffffff;
    opacity: 0.7;
}

html.dark .rs-hv3-actions .rs-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.55);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

/* ── Data-animate support ─────────────────── */
.rs-hv3-left[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.rs-hv3-left[data-animate].is-visible {
    opacity: 1;
    transform: none;
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 900px) {
    .rs-hero-v3 {
        min-height: unset;
        padding: 5.5rem 0 3.5rem;
    }

    /* Hide side icons on tablet — leave top/bottom ones */
    .rs-hv3-icon-5,
    .rs-hv3-icon-6 { display: none; }
}

@media (max-width: 600px) {
    .rs-hv3-h1 {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .rs-hv3-btns {
        flex-direction: column;
        width: 100%;
    }

    .rs-hv3-btns .rs-btn-primary,
    .rs-hv3-btns .rs-btn-ghost {
        width: 100%;
        justify-content: center;
    }

    /* Hide all floating icons on mobile */
    .rs-hv3-icon { display: none; }

    .rs-hv3-dots-tl { top: 20px; left: 10px; width: 120px; height: 120px; }
    .rs-hv3-dots-br { bottom: 20px; right: 10px; width: 120px; height: 120px; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════════════════ */

/* ── Page hero ──────────────────────────────────────────── */
.rs-svc-hero {
    position: relative;
    overflow: hidden;
    background: var(--rs-dark, #1b2430);
    padding: clamp(5.5rem, 10vw, 8rem) 0 clamp(4rem, 7vw, 5.5rem);
    text-align: center;
}

.rs-svc-hero-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.rs-svc-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.rs-svc-orb-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -100px;
    background: radial-gradient(circle, rgba(214, 69, 27, 0.25) 0%, transparent 65%);
}

.rs-svc-orb-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -80px;
    background: radial-gradient(circle, rgba(11, 138, 132, 0.20) 0%, transparent 65%);
}

.rs-svc-grid-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rs-svc-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.rs-svc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(214, 69, 27, 0.18);
    border: 1px solid rgba(214, 69, 27, 0.35);
    color: #f09070;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
}

.rs-svc-hero-badge svg {
    width: 13px;
    height: 13px;
}

.rs-svc-hero-h1 {
    font-family: var(--rs-font-head);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: #ffffff;
    margin: 0;
}

.rs-svc-gradient {
    background: linear-gradient(135deg, #f97040 0%, #d6451b 40%, #0b8a84 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rs-svc-hero-sub {
    font-size: clamp(1rem, 1.3vw, 1.125rem);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 600px;
    margin: 0;
}

.rs-svc-hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 1.2rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.rs-svc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.rs-svc-stat strong {
    font-family: var(--rs-font-head);
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.rs-svc-stat span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.rs-svc-stat-div {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

/* ── Section shared styles ────────────────────────────────── */
.rs-svc-section {
    padding: clamp(4rem, 7vw, 6rem) 0;
}

.rs-svc-section-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.rs-svc-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--rs-brand);
    background: var(--rs-brand-soft);
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    margin: 0 0 1rem;
}

.rs-svc-section-h2 {
    font-family: var(--rs-font-head);
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--rs-dark);
    margin: 0 0 1rem;
}

.rs-svc-section-sub {
    font-size: 1rem;
    color: var(--rs-subtle);
    line-height: 1.7;
    margin: 0;
}

/* ── Services cards grid ──────────────────────────────────── */
.rs-svc-cards-section {
    background: #ffffff;
}

.rs-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--rs-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--rs-shadow);
}

.rs-svc-card {
    background: #ffffff;
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    transition: background 0.3s ease;
}

.rs-svc-card--accent {
    background: #fafffe;
}

.rs-svc-card:hover {
    background: var(--rs-brand-soft);
    z-index: 1;
}

.rs-svc-card--accent:hover {
    background: rgba(11, 138, 132, 0.05);
}

.rs-svc-card-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.rs-svc-card-icon svg {
    width: 52px;
    height: 52px;
}

.rs-svc-card-num {
    position: absolute;
    top: 1.8rem;
    right: 1.8rem;
    font-family: var(--rs-font-head);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--rs-border);
}

.rs-svc-card-title {
    font-family: var(--rs-font-head);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--rs-dark);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.rs-svc-card-desc {
    font-size: 0.9rem;
    color: var(--rs-subtle);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.rs-svc-card-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.rs-svc-card-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--rs-subtle);
    font-weight: 500;
}

.rs-svc-card-list svg {
    width: 14px;
    height: 14px;
    color: var(--rs-brand);
    flex-shrink: 0;
}

.rs-svc-card-list .rs-svc-card--accent li svg {
    color: var(--rs-accent);
}

.rs-svc-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--rs-brand);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s ease, color 0.2s ease;
}

.rs-svc-card-link--accent {
    color: var(--rs-accent);
}

.rs-svc-card-link:hover {
    gap: 0.7rem;
}

.rs-svc-card-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ── Process section ────────────────────────────────────────── */
.rs-svc-process-section {
    background: var(--rs-bg);
}

.rs-process-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding-top: 1rem;
}

.rs-process-line {
    position: absolute;
    top: 40px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: linear-gradient(to right, var(--rs-brand) 0%, var(--rs-accent) 100%);
    opacity: 0.25;
    z-index: 0;
}

.rs-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.rs-process-icon {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--rs-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rs-brand);
    flex-shrink: 0;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.rs-process-icon svg {
    width: 28px;
    height: 28px;
}

.rs-process-icon:hover {
    border-color: var(--rs-brand);
    box-shadow: 0 0 0 6px rgba(214, 69, 27, 0.08);
}

.rs-process-step-num {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--rs-brand);
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}

.rs-process-step h4 {
    font-family: var(--rs-font-head);
    font-size: 1rem;
    font-weight: 800;
    color: var(--rs-dark);
    margin: 0;
    letter-spacing: -0.02em;
}

.rs-process-step p {
    font-size: 0.875rem;
    color: var(--rs-subtle);
    line-height: 1.65;
    margin: 0;
}

/* ── Results bar ────────────────────────────────────────────── */
.rs-svc-results-bar {
    background: linear-gradient(135deg, var(--rs-dark) 0%, #0d1824 100%);
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.rs-svc-results-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.rs-svc-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
}

.rs-svc-result strong {
    font-family: var(--rs-font-head);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.04em;
}

.rs-svc-result span {
    font-family: var(--rs-font-head);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 900;
    color: var(--rs-brand);
    line-height: 1;
    letter-spacing: -0.02em;
}

.rs-svc-result p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.rs-svc-result-div {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.10);
    flex-shrink: 0;
}

/* ── Industries section ─────────────────────────────────────── */
.rs-svc-industries-section {
    background: #ffffff;
}

.rs-ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.rs-ind-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    padding: 1.8rem 1rem;
    border-radius: 16px;
    background: var(--rs-bg);
    border: 1px solid transparent;
    text-align: center;
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
    cursor: default;
}

.rs-ind-card:hover {
    border-color: var(--rs-brand);
    background: var(--rs-brand-soft);
    transform: translateY(-4px);
}

.rs-ind-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid var(--rs-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rs-brand);
    transition: background 0.25s, border-color 0.25s;
}

.rs-ind-card:hover .rs-ind-icon {
    background: var(--rs-brand);
    border-color: var(--rs-brand);
    color: #ffffff;
}

.rs-ind-icon svg {
    width: 22px;
    height: 22px;
}

.rs-ind-card span {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--rs-dark);
    line-height: 1.3;
}

/* ── Why Risenstone ─────────────────────────────────────────── */
.rs-svc-why-section {
    background: var(--rs-bg);
}

.rs-svc-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
}

.rs-svc-why-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rs-svc-why-desc {
    font-size: 1rem;
    color: var(--rs-subtle);
    line-height: 1.75;
    margin: 0;
}

.rs-svc-why-right {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rs-svc-why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--rs-border);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.rs-svc-why-item:hover {
    border-color: var(--rs-brand);
    box-shadow: 0 4px 20px rgba(214, 69, 27, 0.08);
}

.rs-svc-why-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--rs-brand-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rs-brand);
    flex-shrink: 0;
    transition: background 0.25s, color 0.25s;
}

.rs-svc-why-item:hover .rs-svc-why-icon {
    background: var(--rs-brand);
    color: #ffffff;
}

.rs-svc-why-icon svg {
    width: 18px;
    height: 18px;
}

.rs-svc-why-item h4 {
    font-family: var(--rs-font-head);
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--rs-dark);
    margin: 0 0 0.25rem;
    letter-spacing: -0.01em;
}

.rs-svc-why-item p {
    font-size: 0.875rem;
    color: var(--rs-subtle);
    margin: 0;
    line-height: 1.6;
}

/* ── Final CTA ──────────────────────────────────────────────── */
.rs-svc-cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1b2430 0%, #0d1824 50%, #122020 100%);
    padding: clamp(4rem, 8vw, 6.5rem) 0;
    text-align: center;
}

.rs-svc-cta-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.rs-svc-cta-deco svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rs-svc-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.rs-svc-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(214, 69, 27, 0.18);
    border: 1px solid rgba(214, 69, 27, 0.35);
    color: #f09070;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
}

.rs-svc-cta-badge svg {
    width: 12px;
    height: 12px;
}

.rs-svc-cta-h2 {
    font-family: var(--rs-font-head);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
}

.rs-svc-cta-sub {
    font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 520px;
    margin: 0;
}

.rs-svc-cta-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

.rs-svc-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 999px;
    background: var(--rs-brand);
    color: #ffffff;
    font-family: var(--rs-font-head);
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    white-space: nowrap;
}

.rs-svc-cta-btn-primary:hover {
    background: #c03a14;
    transform: translateY(-1px);
    color: #ffffff;
}

.rs-svc-cta-btn-primary svg {
    width: 16px;
    height: 16px;
}

.rs-svc-cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.75rem;
    border-radius: 999px;
    border: 1.5px solid rgba(255,255,255,0.32);
    color: #ffffff;
    font-family: var(--rs-font-head);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
    white-space: nowrap;
}

.rs-svc-cta-btn-ghost:hover {
    border-color: rgba(255,255,255,0.7);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .rs-svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rs-ind-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 860px) {
    .rs-process-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .rs-process-line {
        display: none;
    }

    .rs-svc-why-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .rs-ind-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .rs-svc-grid {
        grid-template-columns: 1fr;
    }

    .rs-svc-hero-stats {
        gap: 1rem;
        padding: 1rem;
    }

    .rs-svc-stat-div {
        width: 40px;
        height: 1px;
    }

    .rs-process-track {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rs-svc-results-inner {
        gap: 1.5rem;
    }

    .rs-svc-result-div {
        width: 40px;
        height: 1px;
    }

    .rs-ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rs-svc-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .rs-svc-cta-btn-primary,
    .rs-svc-cta-btn-ghost {
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════
   EVENTS PAGE
   ═══════════════════════════════════════════════════════════ */

.rs-evt-hero {
    position: relative;
    overflow: hidden;
    background: var(--rs-dark, #1b2430);
    padding: clamp(5.5rem, 10vw, 8rem) 0 clamp(4rem, 7vw, 5.5rem);
    text-align: center;
}

.rs-evt-hero-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.rs-evt-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.rs-evt-orb-1 {
    width: 560px; height: 560px;
    top: -180px; left: -80px;
    background: radial-gradient(circle, rgba(214,69,27,0.22) 0%, transparent 65%);
}

.rs-evt-orb-2 {
    width: 440px; height: 440px;
    bottom: -120px; right: -60px;
    background: radial-gradient(circle, rgba(11,138,132,0.18) 0%, transparent 65%);
}

.rs-evt-grid-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rs-evt-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.rs-evt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(214,69,27,0.18);
    border: 1px solid rgba(214,69,27,0.35);
    color: #f09070;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
}

.rs-evt-hero-badge svg { width: 13px; height: 13px; }

.rs-evt-hero-h1 {
    font-family: var(--rs-font-head);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: #ffffff;
    margin: 0;
}

.rs-evt-gradient {
    background: linear-gradient(135deg, #f97040 0%, #d6451b 40%, #0b8a84 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rs-evt-hero-sub {
    font-size: clamp(1rem, 1.3vw, 1.125rem);
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 600px;
    margin: 0;
}

.rs-evt-hero-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.25rem;
}

.rs-evt-meta-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}

.rs-evt-meta-item svg { width: 15px; height: 15px; }

.rs-evt-meta-dot {
    width: 4px; height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

/* Section shared */
.rs-evt-section { padding: clamp(4rem, 7vw, 6rem) 0; }

.rs-evt-section-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.rs-evt-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--rs-brand);
    background: var(--rs-brand-soft);
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    margin: 0 0 1rem;
}

.rs-evt-section-h2 {
    font-family: var(--rs-font-head);
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--rs-dark);
    margin: 0;
}

/* Featured event card */
.rs-evt-featured-section { background: #ffffff; }

.rs-evt-featured-card {
    background: var(--rs-dark, #1b2430);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 480px;
}

.rs-evt-featured-left {
    padding: clamp(2rem, 4vw, 3.5rem);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.rs-evt-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    width: fit-content;
}

.rs-evt-tag--live {
    background: rgba(214,69,27,0.18);
    border: 1px solid rgba(214,69,27,0.35);
    color: #f09070;
}

.rs-evt-tag--sm {
    font-size: 0.7rem;
    background: var(--rs-brand-soft);
    color: var(--rs-brand);
    border: none;
}

.rs-evt-featured-title {
    font-family: var(--rs-font-head);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
}

.rs-evt-featured-desc {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
}

.rs-evt-featured-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rs-evt-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.rs-evt-detail svg {
    width: 16px; height: 16px;
    color: var(--rs-brand);
    flex-shrink: 0;
    margin-top: 2px;
}

.rs-evt-detail strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.1rem;
}

.rs-evt-detail span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

.rs-evt-featured-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.rs-evt-ghost-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    border: 1.5px solid rgba(255,255,255,0.32);
    color: #ffffff;
    font-family: var(--rs-font-head);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s;
    white-space: nowrap;
}

.rs-evt-ghost-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.65);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Trophy right panel */
.rs-evt-featured-right {
    position: relative;
    background: linear-gradient(145deg, rgba(214,69,27,0.12) 0%, rgba(11,138,132,0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}

.rs-evt-trophy-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-evt-trophy-glow {
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 65%);
    filter: blur(20px);
}

.rs-evt-trophy-svg {
    width: 160px; height: 200px;
    position: relative;
    z-index: 1;
    animation: rs-float 5s ease-in-out infinite;
}

.rs-evt-trophy-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: linear-gradient(135deg, #d4af37 0%, #8b6914 100%);
    border-radius: 12px;
    padding: 0.5rem 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    z-index: 2;
}

.rs-evt-trophy-badge strong {
    font-family: var(--rs-font-head);
    font-size: 1.2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.rs-evt-trophy-badge span {
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rs-evt-feat-stat {
    position: absolute;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    z-index: 2;
}

.rs-evt-feat-stat strong {
    font-family: var(--rs-font-head);
    font-size: 1.1rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.rs-evt-feat-stat span {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.rs-evt-feat-stat-1 { top: 20px; left: 20px; }
.rs-evt-feat-stat-2 { bottom: 30px; right: 10px; }

/* Expect section */
.rs-evt-expect-section { background: var(--rs-bg); }

.rs-evt-expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.rs-evt-expect-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--rs-border);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.rs-evt-expect-card:hover {
    border-color: var(--rs-brand);
    box-shadow: 0 6px 24px rgba(214,69,27,0.09);
    transform: translateY(-3px);
}

.rs-evt-expect-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--rs-brand-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rs-brand);
    transition: background 0.25s, color 0.25s;
}

.rs-evt-expect-card:hover .rs-evt-expect-icon {
    background: var(--rs-brand);
    color: #ffffff;
}

.rs-evt-expect-icon svg { width: 22px; height: 22px; }

.rs-evt-expect-card h4 {
    font-family: var(--rs-font-head);
    font-size: 1rem;
    font-weight: 800;
    color: var(--rs-dark);
    margin: 0;
    letter-spacing: -0.01em;
}

.rs-evt-expect-card p {
    font-size: 0.875rem;
    color: var(--rs-subtle);
    line-height: 1.65;
    margin: 0;
}

/* Dynamic events grid */
.rs-evt-list-section { background: #ffffff; }

.rs-evt-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.rs-evt-card {
    border-radius: 16px;
    border: 1px solid var(--rs-border);
    overflow: hidden;
    background: #ffffff;
    transition: box-shadow 0.25s, transform 0.25s;
}

.rs-evt-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.09);
    transform: translateY(-4px);
}

.rs-evt-card-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.rs-evt-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rs-evt-card-title {
    font-family: var(--rs-font-head);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--rs-dark);
    margin: 0;
    letter-spacing: -0.02em;
}

.rs-evt-card-excerpt {
    font-size: 0.875rem;
    color: var(--rs-subtle);
    line-height: 1.65;
    margin: 0;
}

.rs-evt-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--rs-brand);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s;
}

.rs-evt-card-link:hover { gap: 0.7rem; }
.rs-evt-card-link svg { width: 14px; height: 14px; }

/* Who section */
.rs-evt-who-section { background: var(--rs-bg); }

.rs-evt-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

.rs-evt-who-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rs-evt-who-desc {
    font-size: 1rem;
    color: var(--rs-subtle);
    line-height: 1.75;
    margin: 0;
}

.rs-evt-who-right {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rs-evt-who-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--rs-border);
    transition: border-color 0.25s;
}

.rs-evt-who-item:hover { border-color: var(--rs-brand); }

.rs-evt-who-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--rs-brand-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rs-brand);
    flex-shrink: 0;
}

.rs-evt-who-icon svg { width: 18px; height: 18px; }

.rs-evt-who-item h4 {
    font-family: var(--rs-font-head);
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--rs-dark);
    margin: 0 0 0.25rem;
}

.rs-evt-who-item p {
    font-size: 0.875rem;
    color: var(--rs-subtle);
    margin: 0;
    line-height: 1.6;
}

/* Events CTA */
.rs-evt-cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1b2430 0%, #0d1824 50%, #122020 100%);
    padding: clamp(4rem, 8vw, 6rem) 0;
    text-align: center;
}

.rs-evt-cta-deco { position: absolute; inset: 0; pointer-events: none; }

.rs-evt-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.rs-evt-cta-orb-1 {
    width: 400px; height: 400px;
    top: -100px; left: -80px;
    background: radial-gradient(circle, rgba(214,69,27,0.2) 0%, transparent 65%);
}

.rs-evt-cta-orb-2 {
    width: 350px; height: 350px;
    bottom: -80px; right: -60px;
    background: radial-gradient(circle, rgba(11,138,132,0.15) 0%, transparent 65%);
}

.rs-evt-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.rs-evt-cta-icon {
    width: 52px; height: 52px;
    color: var(--rs-brand);
}

.rs-evt-cta-h2 {
    font-family: var(--rs-font-head);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
}

.rs-evt-cta-sub {
    font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 520px;
    margin: 0;
}

.rs-evt-cta-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

/* ── Responsive: Events page ────────────── */
@media (max-width: 900px) {
    .rs-evt-featured-card { grid-template-columns: 1fr; }
    .rs-evt-featured-right { min-height: 260px; }
    .rs-evt-expect-grid { grid-template-columns: repeat(2, 1fr); }
    .rs-evt-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .rs-evt-who-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
    .rs-evt-expect-grid { grid-template-columns: 1fr; }
    .rs-evt-cards-grid { grid-template-columns: 1fr; }
    .rs-evt-featured-actions { flex-direction: column; width: 100%; }
    .rs-evt-ghost-btn { width: 100%; justify-content: center; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   BUSINESS EXCELLENCE AWARDS PAGE  (Dark / Luxury)
   ═══════════════════════════════════════════════════════════ */

/* Global dark override for BEA page */
.rs-bea-page {
    background: #080808;
    color: rgba(255,255,255,0.85);
}

/* ── HERO — LUXURY GRADIENT ANIMATED ──────── */
.rs-bea-hero {
    position: relative;
    overflow: hidden;
    background: #050505;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: clamp(7rem, 12vw, 10rem) 0 clamp(5rem, 8vw, 7rem);
    text-align: center;
}

/* Layered noise texture for premium feel */
.rs-bea-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

/* Radial vignette overlay */
.rs-bea-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 45%, transparent 0%, rgba(5,5,5,0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.rs-bea-hero-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Animated orbs — luxury gold tones */
.rs-bea-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    will-change: transform, opacity;
}

.rs-bea-orb-1 {
    width: 800px; height: 800px;
    top: -300px; left: -200px;
    background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, rgba(184,134,11,0.06) 40%, transparent 65%);
    animation: rs-bea-orb-drift-1 10s ease-in-out infinite;
}

.rs-bea-orb-2 {
    width: 600px; height: 600px;
    bottom: -200px; right: -150px;
    background: radial-gradient(circle, rgba(245,226,122,0.14) 0%, rgba(160,120,32,0.04) 50%, transparent 70%);
    animation: rs-bea-orb-drift-2 13s ease-in-out infinite;
}

.rs-bea-orb-3 {
    width: 450px; height: 450px;
    top: 35%; left: 55%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, rgba(139,105,20,0.03) 50%, transparent 70%);
    animation: rs-bea-orb-drift-3 16s ease-in-out infinite 2s;
}

@keyframes rs-bea-orb-drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    25%      { transform: translate(40px, 30px) scale(1.08); opacity: 1; }
    50%      { transform: translate(-20px, 50px) scale(1.04); opacity: 0.7; }
    75%      { transform: translate(30px, -20px) scale(1.1); opacity: 0.9; }
}

@keyframes rs-bea-orb-drift-2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    33%      { transform: translate(-50px, -30px) scale(1.12); opacity: 1; }
    66%      { transform: translate(30px, -50px) scale(0.95); opacity: 0.6; }
}

@keyframes rs-bea-orb-drift-3 {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
    50%      { transform: translateX(-50%) translateY(-30px) scale(1.15); opacity: 1; }
}

/* Diagonal gold lines */
.rs-bea-lines {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.8;
    animation: rs-bea-lines-pulse 8s ease-in-out infinite;
}

@keyframes rs-bea-lines-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Floating gold particle dust (pseudo-elements on deco) */
.rs-bea-hero-deco::before,
.rs-bea-hero-deco::after {
    content: "";
    position: absolute;
    width: 2px; height: 2px;
    border-radius: 50%;
    background: #d4af37;
    box-shadow:
        120px 80px 0 0 rgba(212,175,55,0.35),
        340px 150px 0 0 rgba(245,226,122,0.25),
        560px 50px 0 0 rgba(212,175,55,0.2),
        780px 200px 0 0 rgba(201,168,76,0.3),
        200px 300px 0 0 rgba(212,175,55,0.15),
        450px 380px 0 0 rgba(245,226,122,0.2),
        680px 340px 0 0 rgba(212,175,55,0.25),
        900px 100px 0 0 rgba(184,134,11,0.2),
        1050px 280px 0 0 rgba(212,175,55,0.3),
        100px 450px 0 0 rgba(245,226,122,0.15),
        320px 520px 0 0 rgba(212,175,55,0.2),
        600px 480px 0 0 rgba(201,168,76,0.25),
        850px 430px 0 0 rgba(212,175,55,0.18),
        1100px 500px 0 0 rgba(245,226,122,0.12),
        50px 600px 0 0 rgba(212,175,55,0.2);
    z-index: 2;
    animation: rs-bea-dust-float 20s linear infinite;
}

.rs-bea-hero-deco::after {
    box-shadow:
        80px 120px 0 0 rgba(212,175,55,0.2),
        260px 60px 0 0 rgba(245,226,122,0.3),
        480px 190px 0 0 rgba(201,168,76,0.18),
        700px 90px 0 0 rgba(212,175,55,0.25),
        170px 380px 0 0 rgba(184,134,11,0.15),
        390px 280px 0 0 rgba(212,175,55,0.22),
        620px 420px 0 0 rgba(245,226,122,0.2),
        830px 340px 0 0 rgba(212,175,55,0.28),
        1010px 160px 0 0 rgba(201,168,76,0.16),
        240px 510px 0 0 rgba(212,175,55,0.24);
    animation: rs-bea-dust-float 25s linear infinite reverse;
    animation-delay: -5s;
}

@keyframes rs-bea-dust-float {
    0%   { transform: translateY(0) translateX(0); opacity: 0.6; }
    25%  { transform: translateY(-15px) translateX(10px); opacity: 1; }
    50%  { transform: translateY(-5px) translateX(-8px); opacity: 0.5; }
    75%  { transform: translateY(-20px) translateX(5px); opacity: 0.9; }
    100% { transform: translateY(0) translateX(0); opacity: 0.6; }
}

/* Hero inner content */
.rs-bea-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Emblem — luxury spin + float */
.rs-bea-hero-emblem {
    animation: rs-bea-emblem-float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 24px rgba(212,175,55,0.25));
}

.rs-bea-hero-emblem svg { width: 88px; height: 88px; }

@keyframes rs-bea-emblem-float {
    0%, 100% { transform: translateY(0) rotate(0deg); filter: drop-shadow(0 0 24px rgba(212,175,55,0.25)); }
    50%      { transform: translateY(-12px) rotate(4deg); filter: drop-shadow(0 0 40px rgba(212,175,55,0.45)); }
}

/* Tag badge — glassmorphism */
.rs-bea-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e8d48b;
    background: rgba(212,175,55,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212,175,55,0.22);
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    box-shadow: 0 0 20px rgba(212,175,55,0.06), inset 0 0 20px rgba(212,175,55,0.04);
    animation: rs-bea-tag-glow 4s ease-in-out infinite;
}

@keyframes rs-bea-tag-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(212,175,55,0.06), inset 0 0 20px rgba(212,175,55,0.04); border-color: rgba(212,175,55,0.22); }
    50%      { box-shadow: 0 0 30px rgba(212,175,55,0.15), inset 0 0 24px rgba(212,175,55,0.08); border-color: rgba(212,175,55,0.4); }
}

.rs-bea-dot {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #d4af37;
    box-shadow: 0 0 8px rgba(212,175,55,0.8);
    animation: rs-bea-dot-pulse 2s ease-in-out infinite;
}

@keyframes rs-bea-dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px rgba(212,175,55,0.8); }
    50%      { opacity: 0.5; transform: scale(0.7); box-shadow: 0 0 16px rgba(212,175,55,0.4); }
}

/* Headline — luxury typography */
.rs-bea-hero-h1 {
    font-family: var(--rs-font-head);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 40px rgba(212,175,55,0.08);
}

/* Gold text — animated shimmer gradient */
.rs-bea-gold-text {
    background: linear-gradient(
        105deg,
        #8b6914 0%,
        #d4af37 20%,
        #f5e27a 40%,
        #fff8dc 50%,
        #f5e27a 60%,
        #d4af37 80%,
        #8b6914 100%
    );
    background-size: 250% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rs-bea-shimmer 5s ease-in-out infinite;
}

@keyframes rs-bea-shimmer {
    0%   { background-position: 100% 0; }
    50%  { background-position: 0% 0; }
    100% { background-position: 100% 0; }
}

/* Subtitle */
.rs-bea-hero-sub {
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    max-width: 600px;
    margin: 0;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

/* Pills — glassmorphism style */
.rs-bea-hero-pills {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    justify-content: center;
}

.rs-bea-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212,175,55,0.12);
    padding: 0.35rem 0.95rem;
    border-radius: 999px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.rs-bea-pill::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.rs-bea-pill:hover {
    border-color: rgba(212,175,55,0.35);
    color: rgba(255,255,255,0.85);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212,175,55,0.08);
}

.rs-bea-pill:hover::before { opacity: 1; }

.rs-bea-pill svg { width: 12px; height: 12px; color: #d4af37; position: relative; z-index: 1; }

/* Action buttons */
.rs-bea-hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.75rem;
}

/* Gold CTA button — luxury with glow */
.rs-bea-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f5e27a 0%, #d4af37 40%, #a07820 100%);
    color: #1a1000;
    font-family: var(--rs-font-head);
    font-size: 0.9375rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(212,175,55,0.2), 0 0 0 0 rgba(212,175,55,0);
    position: relative;
    overflow: hidden;
}

/* Shimmer sweep on button */
.rs-bea-btn-gold::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    transition: none;
    animation: rs-bea-btn-sweep 4s ease-in-out infinite;
}

@keyframes rs-bea-btn-sweep {
    0%, 70%, 100% { left: -100%; }
    40% { left: 150%; }
}

.rs-bea-btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    color: #1a1000;
    box-shadow: 0 8px 32px rgba(212,175,55,0.35), 0 0 60px rgba(212,175,55,0.12);
}

.rs-bea-btn-gold--lg {
    padding: 1.1rem 2.7rem;
    font-size: 1rem;
}

.rs-bea-btn-gold svg { width: 16px; height: 16px; position: relative; z-index: 1; }

/* Ghost button — elegant border glow */
.rs-bea-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 1.85rem;
    border-radius: 999px;
    border: 1.5px solid rgba(212,175,55,0.25);
    color: rgba(212,175,55,0.75);
    font-family: var(--rs-font-head);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.rs-bea-btn-ghost::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(212,175,55,0.06) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.rs-bea-btn-ghost:hover {
    border-color: rgba(212,175,55,0.7);
    color: #e8d48b;
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(212,175,55,0.1), inset 0 0 20px rgba(212,175,55,0.04);
}

.rs-bea-btn-ghost:hover::before { opacity: 1; }

/* Scroll indicator — luxury animated */
.rs-bea-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.rs-bea-scroll-line {
    width: 1px; height: 52px;
    background: linear-gradient(to bottom, rgba(212,175,55,0.7), rgba(212,175,55,0.05));
    position: relative;
    overflow: hidden;
}

.rs-bea-scroll-line::after {
    content: "";
    position: absolute;
    top: -100%; left: 0;
    width: 100%; height: 50%;
    background: linear-gradient(to bottom, transparent, #f5e27a, transparent);
    animation: rs-bea-scroll-drop 2.2s ease-in-out infinite;
}

@keyframes rs-bea-scroll-drop {
    0%   { top: -50%; opacity: 0; }
    30%  { opacity: 1; }
    100% { top: 120%; opacity: 0; }
}

.rs-bea-scroll-hint span {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(212,175,55,0.35);
    animation: rs-bea-scroll-text 2.2s ease-in-out infinite;
}

@keyframes rs-bea-scroll-text {
    0%, 100% { opacity: 0.35; }
    50%      { opacity: 0.7; }
}

/* ── BEA sections shared ───────────────────── */
.rs-bea-section { padding: clamp(4.5rem, 8vw, 7rem) 0; }

.rs-bea-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.rs-bea-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d4af37;
    background: rgba(212,175,55,0.10);
    border: 1px solid rgba(212,175,55,0.20);
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    margin: 0 0 1.2rem;
}

.rs-bea-section-h2 {
    font-family: var(--rs-font-head);
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 1rem;
}

.rs-bea-section-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin: 0;
}

/* ── About section ─────────────────────────── */
.rs-bea-about-section { background: #0d0d0d; }

.rs-bea-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: start;
}

.rs-bea-about-left {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.rs-bea-about-desc {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin: 0;
}

.rs-bea-about-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: rgba(212,175,55,0.06);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 14px;
    margin-top: 0.5rem;
}

.rs-bea-astat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.rs-bea-astat strong {
    font-family: var(--rs-font-head);
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f5e27a 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.03em;
}

.rs-bea-astat span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.rs-bea-astat-div {
    width: 1px; height: 32px;
    background: rgba(212,175,55,0.15);
    flex-shrink: 0;
}

.rs-bea-about-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rs-bea-about-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.12);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.3s, background 0.3s;
}

.rs-bea-about-card:hover {
    border-color: rgba(212,175,55,0.35);
    background: rgba(212,175,55,0.04);
}

.rs-bea-about-card-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(212,175,55,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-bea-about-card-icon svg { width: 24px; height: 24px; }

.rs-bea-about-card h4 {
    font-family: var(--rs-font-head);
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

.rs-bea-about-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    margin: 0;
}

/* ── Benefits section ──────────────────────── */
.rs-bea-benefits-section {
    position: relative;
    background: #080808;
    overflow: hidden;
}

.rs-bea-benefits-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.rs-bea-benefits-orb {
    position: absolute;
    width: 600px; height: 600px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 65%);
    filter: blur(60px);
}

.rs-bea-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(212,175,55,0.12);
    border-radius: 20px;
    overflow: hidden;
}

.rs-bea-benefit {
    background: #0d0d0d;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    position: relative;
    transition: background 0.3s;
}

.rs-bea-benefit:hover {
    background: rgba(212,175,55,0.04);
}

.rs-bea-benefit-num {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--rs-font-head);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: rgba(212,175,55,0.2);
}

.rs-bea-benefit-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    transition: background 0.25s, border-color 0.25s;
}

.rs-bea-benefit:hover .rs-bea-benefit-icon {
    background: rgba(212,175,55,0.15);
    border-color: rgba(212,175,55,0.35);
}

.rs-bea-benefit-icon svg { width: 22px; height: 22px; }

.rs-bea-benefit h4 {
    font-family: var(--rs-font-head);
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.rs-bea-benefit p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
    margin: 0;
}

/* ── Founders section ──────────────────────── */
.rs-bea-founders-section { background: #0d0d0d; }

.rs-bea-company-story {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: rgba(212,175,55,0.04);
    border: 1px solid rgba(212,175,55,0.12);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    margin-bottom: 2.5rem;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
}

.rs-bea-company-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(212,175,55,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rs-bea-company-icon svg { width: 24px; height: 24px; }

.rs-bea-founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.rs-bea-founder-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: border-color 0.3s, background 0.3s;
}

.rs-bea-founder-card:hover {
    border-color: rgba(212,175,55,0.4);
    background: rgba(212,175,55,0.03);
}

.rs-bea-founder-avatar {
    position: relative;
    width: 80px; height: 80px;
    flex-shrink: 0;
}

.rs-bea-founder-initials {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212,175,55,0.25) 0%, rgba(212,175,55,0.05) 100%);
    border: 2px solid rgba(212,175,55,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--rs-font-head);
    font-size: 1.5rem;
    font-weight: 900;
    color: #d4af37;
    letter-spacing: -0.02em;
}

.rs-bea-founder-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.15);
}

.rs-bea-founder-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d4af37;
    opacity: 0.7;
}

.rs-bea-founder-name {
    font-family: var(--rs-font-head);
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0.25rem 0 0;
    letter-spacing: -0.03em;
}

.rs-bea-founder-title {
    font-size: 0.825rem;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
    margin-top: 0.15rem;
}

.rs-bea-founder-bio {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.75;
    margin: 0;
}

.rs-bea-founder-bio em {
    color: rgba(212,175,55,0.7);
    font-style: normal;
    font-weight: 600;
}

.rs-bea-founder-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.rs-bea-founder-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(212,175,55,0.6);
    background: rgba(212,175,55,0.07);
    border: 1px solid rgba(212,175,55,0.15);
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
}

.rs-bea-founder-badges svg {
    width: 10px; height: 10px;
    color: #d4af37;
}

/* ── Who section ───────────────────────────── */
.rs-bea-who-section { background: #080808; }

.rs-bea-who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.rs-bea-who-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212,175,55,0.12);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    transition: border-color 0.3s, background 0.3s, transform 0.25s;
}

.rs-bea-who-card:hover {
    border-color: rgba(212,175,55,0.4);
    background: rgba(212,175,55,0.04);
    transform: translateY(-4px);
}

.rs-bea-who-card svg {
    width: 32px; height: 32px;
    color: #d4af37;
}

.rs-bea-who-card h4 {
    font-family: var(--rs-font-head);
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

.rs-bea-who-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
    margin: 0;
}

/* ── CTA section ───────────────────────────── */
.rs-bea-cta-section {
    position: relative;
    overflow: hidden;
    background: #080808;
    padding: clamp(5rem, 9vw, 7.5rem) 0;
    text-align: center;
}

.rs-bea-cta-deco { position: absolute; inset: 0; pointer-events: none; }

.rs-bea-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.rs-bea-cta-orb-1 {
    width: 500px; height: 500px;
    top: -150px; left: -100px;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 65%);
}

.rs-bea-cta-orb-2 {
    width: 400px; height: 400px;
    bottom: -100px; right: -80px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 65%);
}

.rs-bea-cta-lines {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.rs-bea-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.rs-bea-cta-emblem svg { width: 60px; height: 60px; }

.rs-bea-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d4af37;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.2);
    padding: 0.3rem 1rem;
    border-radius: 999px;
}

.rs-bea-cta-h2 {
    font-family: var(--rs-font-head);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: #ffffff;
    margin: 0;
}

.rs-bea-cta-sub {
    font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 520px;
    margin: 0;
}

.rs-bea-cta-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

.rs-bea-cta-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.825rem;
    color: rgba(255,255,255,0.3);
    max-width: 440px;
    text-align: left;
    line-height: 1.6;
    margin: 0;
}

.rs-bea-cta-note svg {
    width: 14px; height: 14px;
    color: #d4af37;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Responsive: BEA page ──────────────────── */
@media (max-width: 1024px) {
    .rs-bea-benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
    .rs-bea-about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .rs-bea-founders-grid { grid-template-columns: 1fr; }
    .rs-bea-who-grid { grid-template-columns: repeat(2, 1fr); }
    .rs-bea-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .rs-bea-hero-h1 { font-size: clamp(2.4rem, 11vw, 3.5rem); }
    .rs-bea-benefits-grid { grid-template-columns: 1fr; }
    .rs-bea-who-grid { grid-template-columns: 1fr; }
    .rs-bea-hero-actions { flex-direction: column; width: 100%; }
    .rs-bea-btn-gold, .rs-bea-btn-ghost { width: 100%; justify-content: center; }
    .rs-bea-cta-actions { flex-direction: column; width: 100%; }
    .rs-bea-cta-note { text-align: center; justify-content: center; }
    .rs-bea-company-story { flex-direction: column; }
    .rs-bea-about-stats { flex-wrap: wrap; }
    .rs-bea-astat-div { width: 40px; height: 1px; }
}

/* ── Hero gradient animation — luxury multi-color ─────────── */
.rs-bea-hero-gradient-anim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #050505 0%,
        rgba(40, 22, 5, 0.95) 15%,
        rgba(60, 35, 8, 0.85) 30%,
        rgba(15, 10, 5, 0.96) 45%,
        rgba(25, 15, 0, 0.9) 60%,
        rgba(10, 12, 15, 0.95) 75%,
        rgba(35, 20, 5, 0.88) 88%,
        #050505 100%
    );
    background-size: 600% 600%;
    animation: rs-bea-grad 18s ease infinite;
}

/* Secondary glow overlay */
.rs-bea-hero-gradient-anim::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 20% 30%, rgba(212,175,55,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 80% 70%, rgba(184,134,11,0.05) 0%, transparent 70%),
        radial-gradient(ellipse 60% 30% at 50% 50%, rgba(139,105,20,0.04) 0%, transparent 60%);
    animation: rs-bea-grad-overlay 12s ease-in-out infinite alternate;
}

@keyframes rs-bea-grad {
    0%   { background-position: 0% 0%; }
    20%  { background-position: 60% 40%; }
    40%  { background-position: 100% 20%; }
    60%  { background-position: 40% 80%; }
    80%  { background-position: 80% 60%; }
    100% { background-position: 0% 0%; }
}

@keyframes rs-bea-grad-overlay {
    0%   { opacity: 0.5; }
    50%  { opacity: 1; }
    100% { opacity: 0.5; }
}

/* ── Founder photo ─────────────────────────────────────────── */
.rs-bea-founder-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border: 2px solid rgba(212,175,55,0.35);
}

/* ── Video slider section ──────────────────────────────────── */
.rs-bea-videos-section { background: #0a0a0a; }

.rs-bea-vslider-wrap {
    position: relative;
    overflow: hidden;
    padding: 0 0 3rem;
}

.rs-bea-vslider {
    display: flex;
    gap: 1.5rem;
    padding: 0 max(1.2rem, calc((100vw - 1120px) / 2));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    transition: transform 0.5s ease;
}

.rs-bea-vslider::-webkit-scrollbar { display: none; }

.rs-bea-vslide {
    scroll-snap-align: start;
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    cursor: pointer;
}

.rs-bea-vslide-thumb {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #1a1a1a;
    border: 1px solid rgba(212,175,55,0.12);
    transition: border-color 0.3s;
}

.rs-bea-vslide:hover .rs-bea-vslide-thumb {
    border-color: rgba(212,175,55,0.4);
}

.rs-bea-vslide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(0.75);
}

.rs-bea-vslide:hover .rs-bea-vslide-img {
    transform: scale(1.04);
    filter: brightness(0.85);
}

.rs-bea-vslide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.rs-bea-vplay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #a07820 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1000;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 0 0 0 rgba(212,175,55,0.4);
}

.rs-bea-vplay-btn svg {
    width: 24px;
    height: 24px;
    margin-left: 3px;
}

.rs-bea-vslide:hover .rs-bea-vplay-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 12px rgba(212,175,55,0.15);
}

.rs-bea-vslide-award {
    position: absolute;
    bottom: 10px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: #d4af37;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(212,175,55,0.25);
    z-index: 1;
    pointer-events: none;
}

.rs-bea-vslide-award svg { width: 10px; height: 10px; }

.rs-bea-vslide-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.rs-bea-vslide-info strong {
    font-family: var(--rs-font-head);
    font-size: 0.9375rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.rs-bea-vslide-info span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* Arrows */
.rs-bea-varrow {
    position: absolute;
    top: calc(50% - 3rem);
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(20,20,20,0.9);
    border: 1px solid rgba(212,175,55,0.25);
    color: #d4af37;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    backdrop-filter: blur(8px);
}

.rs-bea-varrow:hover {
    background: rgba(212,175,55,0.15);
    border-color: #d4af37;
    transform: translateY(-50%) scale(1.08);
}

.rs-bea-varrow svg { width: 18px; height: 18px; }

.rs-bea-varrow--prev { left: 16px; }
.rs-bea-varrow--next { right: 16px; }

/* Dots */
.rs-bea-vdots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.rs-bea-vdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212,175,55,0.2);
    border: none;
    cursor: pointer;
    transition: background 0.25s, width 0.25s;
    padding: 0;
}

.rs-bea-vdot.is-active {
    background: #d4af37;
    width: 24px;
    border-radius: 999px;
}

/* Lightbox modal */
.rs-bea-vmodal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.rs-bea-vmodal.is-open {
    opacity: 1;
    pointer-events: all;
}

.rs-bea-vmodal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    cursor: pointer;
}

.rs-bea-vmodal-wrap {
    position: relative;
    z-index: 1;
    width: min(900px, calc(100vw - 2rem));
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.2);
    transform: scale(0.92);
    transition: transform 0.3s ease;
}

.rs-bea-vmodal.is-open .rs-bea-vmodal-wrap { transform: scale(1); }

.rs-bea-vmodal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s;
}

.rs-bea-vmodal-close:hover { background: rgba(212,175,55,0.25); }
.rs-bea-vmodal-close svg { width: 18px; height: 18px; }

.rs-bea-vmodal-player {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}

.rs-bea-vmodal-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ── Registration form section ─────────────────────────────── */
.rs-bea-form-section { background: #0d0d0d; }

.rs-bea-form-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: start;
}

.rs-bea-form-left {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    position: sticky;
    top: 6rem;
}

.rs-bea-form-desc {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    margin: 0;
}

.rs-bea-form-promises {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 0.5rem;
}

.rs-bea-promise {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.rs-bea-promise svg {
    width: 16px;
    height: 16px;
    color: #d4af37;
    flex-shrink: 0;
}

/* Form right */
.rs-bea-form-right {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.rs-bea-form { display: flex; flex-direction: column; gap: 1.1rem; }

.rs-bea-form-row { display: flex; gap: 1rem; }
.rs-bea-form-row--2 > .rs-bea-field { flex: 1; min-width: 0; }

.rs-bea-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}

.rs-bea-field label {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rs-bea-field label span { color: #d4af37; }

.rs-bea-field input,
.rs-bea-field select,
.rs-bea-field textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: rgba(255,255,255,0.85);
    font-family: var(--rs-font-body);
    font-size: 0.9rem;
    width: 100%;
    outline: none;
    transition: border-color 0.25s, background 0.25s;
    -webkit-appearance: none;
    appearance: none;
}

.rs-bea-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23d4af37'%3E%3Cpath fill-rule='evenodd' d='M5.22 8.22a.75.75 0 0 1 1.06 0L10 11.94l3.72-3.72a.75.75 0 1 1 1.06 1.06l-4.25 4.25a.75.75 0 0 1-1.06 0L5.22 9.28a.75.75 0 0 1 0-1.06Z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    background-size: 18px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.rs-bea-field select option { background: #1a1a1a; color: #fff; }

.rs-bea-field input::placeholder,
.rs-bea-field textarea::placeholder { color: rgba(255,255,255,0.2); }

.rs-bea-field input:focus,
.rs-bea-field select:focus,
.rs-bea-field textarea:focus {
    border-color: rgba(212,175,55,0.5);
    background: rgba(212,175,55,0.04);
}

.rs-bea-field textarea { resize: vertical; min-height: 120px; }

.rs-bea-form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    font-size: 1rem;
}

/* Success / error states */
.rs-bea-form-success {
    text-align: center;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.rs-bea-form-success svg { width: 56px; height: 56px; }

.rs-bea-form-success h4 {
    font-family: var(--rs-font-head);
    font-size: 1.4rem;
    font-weight: 900;
    color: #d4af37;
    margin: 0;
}

.rs-bea-form-success p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
    line-height: 1.65;
}

.rs-bea-form-error-msg {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(214,69,27,0.12);
    border: 1px solid rgba(214,69,27,0.3);
    color: #f09070;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.rs-bea-form-error-msg svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Responsive */
@media (max-width: 860px) {
    .rs-bea-form-grid { grid-template-columns: 1fr; }
    .rs-bea-form-left { position: static; }
    .rs-bea-vslide { flex: 0 0 280px; }
}

@media (max-width: 540px) {
    .rs-bea-form-row--2 { flex-direction: column; }
    .rs-bea-vslide { flex: 0 0 260px; }
    .rs-bea-varrow { display: none; }
}

/* ══════════════════════════════════════════════════════════════════
   CONTACT US PAGE
   ══════════════════════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────────────────────── */
.rs-ct-hero {
    position: relative;
    background-color: #1b2430; /* explicit fallback — no variable dependency */
    overflow: hidden;
    padding: 120px 0 110px;
    text-align: center;
}

.rs-ct-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.rs-ct-hero-orb--1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(214,69,27,0.22) 0%, transparent 70%);
}

.rs-ct-hero-orb--2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(11,138,132,0.18) 0%, transparent 70%);
}

.rs-ct-hero-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    height: 220px;
    opacity: 0.6;
    pointer-events: none;
}

.rs-ct-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.rs-ct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(214,69,27,0.12);
    border: 1px solid rgba(214,69,27,0.3);
    color: #f09070;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 999px;
}

.rs-ct-hero-title {
    font-family: var(--rs-font-head);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0;
    max-width: 700px;
}

.rs-ct-brand-text {
    background: linear-gradient(135deg, #d6451b 0%, #f07a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rs-ct-gold-text {
    background: linear-gradient(135deg, #d4af37 0%, #f5e27a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rs-ct-hero-sub {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    max-width: 540px;
    line-height: 1.7;
    margin: 0;
}

.rs-ct-hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.rs-ct-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
}

.rs-ct-pill svg { color: #0b8a84; flex-shrink: 0; }

.rs-ct-hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.rs-ct-scroll-dot {
    animation: rs-ct-scroll 1.9s ease-in-out infinite;
}

@keyframes rs-ct-scroll {
    0%   { transform: translateY(0); opacity: 1; }
    60%  { transform: translateY(12px); opacity: 0.25; }
    100% { transform: translateY(0); opacity: 1; }
}

/* -- Stats Bar ---------------------------------------------------------------- */
.rs-ct-stats-bar {
    background: #d6451b;
    padding: 0;
}

.rs-ct-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.rs-ct-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 1.5rem 3rem;
    text-align: center;
}

.rs-ct-stat-num-wrap {
    display: flex;
    align-items: baseline;
    gap: 1px;
}

.rs-ct-stat-num {
    font-family: var(--rs-font-head);
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.rs-ct-stat-suffix {
    font-family: var(--rs-font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.75);
    line-height: 1;
}

.rs-ct-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.rs-ct-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

/* -- Main Contact Section ----------------------------------------------------- */
.rs-ct-main { background: #f7f5f2; }

.rs-ct-main-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
}

/* -- Form Column -------------------------------------------------------------- */
.rs-ct-form-col {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e8e2d8;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.rs-ct-form-header { margin-bottom: 1.75rem; }

.rs-ct-form-header h2 {
    font-family: var(--rs-font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: #1b2430;
    margin: 0 0 0.4rem;
}

.rs-ct-form-header p { color: #777; font-size: 0.9rem; margin: 0; }

/* Alerts */
.rs-ct-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
}

.rs-ct-alert div { display: flex; flex-direction: column; gap: 0.15rem; }
.rs-ct-alert strong { font-weight: 700; display: block; }

.rs-ct-alert--success {
    background: #edfaf7;
    border: 1px solid #9ee8d4;
    color: #0a6e5a;
}
.rs-ct-alert--success svg { color: #0b8a84; flex-shrink: 0; margin-top: 1px; }

.rs-ct-alert--error {
    background: #fff3f0;
    border: 1px solid #f5c4b6;
    color: #a0320e;
}
.rs-ct-alert--error svg { color: #d6451b; flex-shrink: 0; margin-top: 1px; }

/* Form fields */
.rs-ct-form { display: flex; flex-direction: column; gap: 1.1rem; }

.rs-ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.rs-ct-field { display: flex; flex-direction: column; gap: 0.35rem; }

.rs-ct-field label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #333;
}

.rs-ct-req { color: #d6451b; }

.rs-ct-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.rs-ct-field-icon {
    position: absolute;
    left: 0.85rem;
    color: #bbb;
    pointer-events: none;
}

.rs-ct-form-col .rs-ct-input-wrap input,
.rs-ct-form-col .rs-ct-input-wrap select { padding-left: 2.6rem; }

.rs-ct-form input,
.rs-ct-form select,
.rs-ct-form textarea {
    width: 100%;
    padding: 0.72rem 1rem;
    border: 1.5px solid #e2ddd5;
    border-radius: 10px;
    font-family: var(--rs-font-body);
    font-size: 0.9rem;
    color: #1b2430;
    background: #faf9f7;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.rs-ct-form input::placeholder,
.rs-ct-form textarea::placeholder { color: #bbb; }

.rs-ct-form input:focus,
.rs-ct-form select:focus,
.rs-ct-form textarea:focus {
    outline: none;
    border-color: #d6451b;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(214,69,27,0.1);
}

.rs-ct-form textarea { resize: vertical; }
.rs-ct-select-wrap { position: relative; }

.rs-ct-chevron {
    position: absolute;
    right: 0.85rem;
    color: #aaa;
    pointer-events: none;
}

.rs-ct-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #d6451b;
    color: #fff;
    font-family: var(--rs-font-head);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(214,69,27,0.28);
    margin-top: 0.25rem;
    width: 100%;
}

.rs-ct-submit:hover {
    background: #c03a15;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(214,69,27,0.35);
}

/* -- Info Column -------------------------------------------------------------- */
.rs-ct-info-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 100px;
}

.rs-ct-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #ffffff;
    border: 1px solid #e8e2d8;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.rs-ct-info-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    transform: translateY(-2px);
}

.rs-ct-info-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rs-ct-info-icon-wrap--brand { background: rgba(214,69,27,0.1); color: #d6451b; }
.rs-ct-info-icon-wrap--teal  { background: rgba(11,138,132,0.1); color: #0b8a84; }

.rs-ct-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
}

.rs-ct-info-text h4 {
    font-family: var(--rs-font-head);
    font-size: 0.92rem;
    font-weight: 700;
    color: #1b2430;
    margin: 0;
}

.rs-ct-info-text a {
    color: #d6451b;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

.rs-ct-info-text a:hover { text-decoration: underline; }

.rs-ct-info-strong {
    font-size: 0.85rem;
    color: #333;
    font-weight: 600;
}

.rs-ct-info-text span:not(.rs-ct-info-strong) {
    font-size: 0.8rem;
    color: #999;
}

/* Social card */
.rs-ct-social-card {
    background: #1b2430;
    border-radius: 16px;
    padding: 1.5rem;
}

.rs-ct-social-card h4 {
    font-family: var(--rs-font-head);
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.9rem;
}

.rs-ct-social-list { display: flex; flex-direction: column; gap: 0.6rem; }

.rs-ct-social-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    padding: 0.65rem 0.9rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.rs-ct-social-item:hover {
    background: rgba(214,69,27,0.14);
    border-color: rgba(214,69,27,0.3);
    transform: translateX(4px);
}

.rs-ct-social-ig {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.rs-ct-social-item div { display: flex; flex-direction: column; gap: 0.08rem; flex: 1; }
.rs-ct-social-item strong { font-size: 0.8rem; font-weight: 700; color: #fff; }
.rs-ct-social-item span  { font-size: 0.73rem; color: rgba(255,255,255,0.4); }
.rs-ct-social-arrow      { color: rgba(255,255,255,0.25); flex-shrink: 0; }

/* -- Section Head ------------------------------------------------------------ */
.rs-ct-section-head { text-align: center; margin-bottom: 3rem; }

.rs-ct-section-head h2 {
    font-family: var(--rs-font-head);
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #1b2430;
    margin: 0.5rem 0 0.75rem;
}

.rs-ct-section-head p { color: #666; font-size: 1rem; max-width: 520px; margin: 0 auto; }

.rs-ct-section-badge {
    display: inline-block;
    background: rgba(214,69,27,0.1);
    color: #d6451b;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
}

/* -- Process ----------------------------------------------------------------- */
.rs-ct-process { background: #1b2430; }

.rs-ct-process .rs-ct-section-head h2 { color: #fff; }
.rs-ct-process .rs-ct-section-head p  { color: rgba(255,255,255,0.55); }
.rs-ct-process .rs-ct-section-badge   { background: rgba(214,69,27,0.15); color: #f09070; }

.rs-ct-process-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    padding-top: 1rem;
}

.rs-ct-process-line {
    position: absolute;
    top: 62px;
    left: calc(12.5% + 14px);
    right: calc(12.5% + 14px);
    height: 1px;
    background: linear-gradient(90deg, #d6451b 0%, #0b8a84 100%);
    opacity: 0.4;
    z-index: 0;
}

.rs-ct-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.rs-ct-process-badge {
    font-family: var(--rs-font-head);
    font-size: 0.68rem;
    font-weight: 800;
    color: #d6451b;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.rs-ct-process-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(214,69,27,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f09070;
    margin-bottom: 1.1rem;
}

.rs-ct-process-step h4 {
    font-family: var(--rs-font-head);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.4rem;
}

.rs-ct-process-step p {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin: 0;
}

/* -- FAQ --------------------------------------------------------------------- */
.rs-ct-faq { background: #f7f5f2; }

.rs-ct-faq-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 4rem;
    align-items: start;
}

.rs-ct-faq-head { position: sticky; top: 100px; }

.rs-ct-faq-head h2 {
    font-family: var(--rs-font-head);
    font-size: 1.75rem;
    font-weight: 800;
    color: #1b2430;
    margin: 0.5rem 0 0.75rem;
    line-height: 1.25;
}

.rs-ct-faq-head p { color: #666; font-size: 0.9rem; line-height: 1.6; margin: 0 0 1.5rem; }

.rs-ct-faq-email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #d6451b;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
}

.rs-ct-faq-email-link:hover { text-decoration: underline; }

.rs-ct-faq-list {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8e2d8;
    background: #fff;
}

.rs-ct-faq-item { border-bottom: 1px solid #eee; }
.rs-ct-faq-item:last-child { border-bottom: none; }

.rs-ct-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.1rem 1.4rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--rs-font-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: #1b2430;
    text-align: left;
    transition: color 0.2s;
}

.rs-ct-faq-q:hover { color: #d6451b; }
.rs-ct-faq-q[aria-expanded="true"] { color: #d6451b; }

.rs-ct-faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: #ccc;
}

.rs-ct-faq-q[aria-expanded="true"] .rs-ct-faq-icon {
    transform: rotate(180deg);
    color: #d6451b;
}

.rs-ct-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.rs-ct-faq-a.is-open {
    max-height: 200px;
    padding-bottom: 1.1rem;
}

.rs-ct-faq-a p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
    padding: 0 1.4rem;
}

/* -- Final CTA --------------------------------------------------------------- */
.rs-ct-cta {
    background-color: #1b2430;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rs-ct-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.rs-ct-cta-orb--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(214,69,27,0.28) 0%, transparent 65%);
}

.rs-ct-cta-orb--2 {
    width: 350px;
    height: 350px;
    bottom: -80px;
    left: -60px;
    background: radial-gradient(circle, rgba(11,138,132,0.22) 0%, transparent 65%);
}

.rs-ct-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
}

.rs-ct-cta-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(214,69,27,0.12);
    border: 1px solid rgba(214,69,27,0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f09070;
    margin-bottom: 0.25rem;
}

.rs-ct-cta h2 {
    font-family: var(--rs-font-head);
    font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.rs-ct-cta p {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    max-width: 440px;
    margin: 0;
    line-height: 1.65;
}

.rs-ct-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.rs-ct-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--rs-font-head);
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.85rem 1.8rem;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.rs-ct-cta-btn--primary {
    background: #d6451b;
    color: #fff;
    box-shadow: 0 4px 20px rgba(214,69,27,0.35);
}

.rs-ct-cta-btn--primary:hover {
    background: #c03a15;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(214,69,27,0.42);
}

.rs-ct-cta-btn--ghost {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    border: 1.5px solid rgba(255,255,255,0.32);
}

.rs-ct-cta-btn--ghost:hover {
    background: rgba(255,255,255,0.16);
    transform: translateY(-2px);
    color: #ffffff;
    border-color: rgba(255,255,255,0.6);
}

/* -- Responsive -------------------------------------------------------------- */
@media (max-width: 1100px) {
    .rs-ct-main-grid { grid-template-columns: 1fr; }
    .rs-ct-info-col  { position: static; }
}

@media (max-width: 900px) {
    .rs-ct-process-track { grid-template-columns: repeat(2, 1fr); }
    .rs-ct-process-line  { display: none; }
    .rs-ct-faq-grid      { grid-template-columns: 1fr; }
    .rs-ct-faq-head      { position: static; }
    .rs-ct-stat-divider  { display: none; }
    .rs-ct-stat-item     { padding: 1.25rem 1.75rem; }
}

@media (max-width: 600px) {
    .rs-ct-hero           { padding: 90px 0 80px; }
    .rs-ct-process-track  { grid-template-columns: 1fr; }
    .rs-ct-form-row       { grid-template-columns: 1fr; }
    .rs-ct-stats-inner    { flex-direction: column; }
}


/* ══════════════════════════════════════════════════════════════════
   ABOUT US PAGE
   ══════════════════════════════════════════════════════════════════ */

/* ── Scroll animation ─────────────────────────────────────────── */
@keyframes rs-ab-scroll {
    0%   { transform: translateY(0); opacity: 1; }
    60%  { transform: translateY(12px); opacity: 0.2; }
    100% { transform: translateY(0); opacity: 1; }
}

/* ── Hero ─────────────────────────────────────────────────────── */
.rs-ab-hero {
    position: relative;
    background-color: #1b2430;
    overflow: hidden;
    padding: 120px 0 110px;
    text-align: center;
}

.rs-ab-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.rs-ab-hero-orb--1 {
    width: 500px;
    height: 500px;
    top: -160px;
    left: -100px;
    background: radial-gradient(circle, rgba(214,69,27,0.28) 0%, transparent 65%);
}

.rs-ab-hero-orb--2 {
    width: 400px;
    height: 400px;
    bottom: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(11,138,132,0.2) 0%, transparent 65%);
}

.rs-ab-hero-dots {
    position: absolute;
    top: 0;
    right: 0;
    width: 240px;
    height: 240px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.rs-ab-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.rs-ab-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(214,69,27,0.14);
    border: 1px solid rgba(214,69,27,0.32);
    color: #f09070;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 999px;
}

.rs-ab-hero-title {
    font-family: var(--rs-font-head);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin: 0;
    max-width: 700px;
}

.rs-ab-brand-text {
    background: linear-gradient(135deg, #e85520 0%, #ff7a45 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rs-ab-gold-text {
    background: linear-gradient(135deg, #d4af37 0%, #f5e27a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rs-ab-hero-sub {
    color: rgba(255,255,255,0.62);
    font-size: 1.05rem;
    max-width: 560px;
    line-height: 1.72;
    margin: 0;
}

.rs-ab-hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.rs-ab-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.78);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 999px;
}

.rs-ab-hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.rs-ab-scroll-dot { animation: rs-ab-scroll 1.9s ease-in-out infinite; }

/* ── Story ────────────────────────────────────────────────────── */
.rs-ab-story { background: #fff; }

.rs-ab-story-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: center;
}

.rs-ab-story-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rs-ab-story-text h2 {
    font-family: var(--rs-font-head);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #1b2430;
    margin: 0;
    line-height: 1.2;
}

.rs-ab-story-text p {
    color: #555;
    font-size: 0.96rem;
    line-height: 1.75;
    margin: 0;
}

.rs-ab-story-tags {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.rs-ab-story-tags span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #444;
}

.rs-ab-story-tags svg { color: #0b8a84; flex-shrink: 0; }

.rs-ab-story-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rs-ab-story-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    border: 1.5px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s;
}

.rs-ab-story-card:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

.rs-ab-story-card--1 {
    background: rgba(214,69,27,0.05);
    border-color: rgba(214,69,27,0.2);
    color: #d6451b;
}

.rs-ab-story-card--2 {
    background: rgba(11,138,132,0.05);
    border-color: rgba(11,138,132,0.2);
    color: #0b8a84;
}

.rs-ab-story-card--3 {
    background: rgba(27,36,48,0.04);
    border-color: rgba(27,36,48,0.15);
    color: #1b2430;
}

.rs-ab-story-card > div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.rs-ab-story-card strong {
    font-family: var(--rs-font-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: #1b2430;
}

.rs-ab-story-card span {
    font-size: 0.8rem;
    color: #888;
}

/* ── Stats ────────────────────────────────────────────────────── */
.rs-ab-stats {
    background: #d6451b;
    padding: 0;
}

.rs-ab-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.rs-ab-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 1.5rem 3rem;
    text-align: center;
}

.rs-ab-stat-num-wrap { display: flex; align-items: baseline; gap: 1px; }

.rs-ab-stat-num {
    font-family: var(--rs-font-head);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.rs-ab-stat-sup {
    font-family: var(--rs-font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.7);
    line-height: 1;
}

.rs-ab-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.rs-ab-stat-div {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

/* ── Section Heads ────────────────────────────────────────────── */
.rs-ab-section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.rs-ab-section-head h2 {
    font-family: var(--rs-font-head);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #1b2430;
    margin: 0.5rem 0 0.75rem;
    line-height: 1.2;
}

.rs-ab-section-head p {
    color: #666;
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

.rs-ab-section-badge {
    display: inline-block;
    background: rgba(214,69,27,0.1);
    color: #d6451b;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
}

.rs-ab-section-badge--light {
    background: rgba(214,69,27,0.15);
    color: #f09070;
}

/* ── Mission / Vision / Values ────────────────────────────────── */
.rs-ab-mvv { background: #f7f5f2; }

.rs-ab-mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: #e2ddd5;
    border-radius: 20px;
    overflow: hidden;
}

.rs-ab-mvv-card {
    background: #fff;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rs-ab-mvv-card--mission .rs-ab-mvv-icon { background: rgba(214,69,27,0.08); color: #d6451b; }
.rs-ab-mvv-card--vision  .rs-ab-mvv-icon { background: rgba(11,138,132,0.08); color: #0b8a84; }
.rs-ab-mvv-card--values  .rs-ab-mvv-icon { background: rgba(27,36,48,0.06); color: #1b2430; }

.rs-ab-mvv-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rs-ab-mvv-card h3 {
    font-family: var(--rs-font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: #1b2430;
    margin: 0;
}

.rs-ab-mvv-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.rs-ab-mvv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rs-ab-mvv-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.rs-ab-mvv-list svg { color: #0b8a84; flex-shrink: 0; }

/* ── Services ─────────────────────────────────────────────────── */
.rs-ab-services { background: #1b2430; }

.rs-ab-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
}

.rs-ab-svc-card {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: background 0.2s;
}

.rs-ab-svc-card:hover { background: rgba(255,255,255,0.06); }

.rs-ab-svc-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-ab-svc-icon--brand { background: rgba(214,69,27,0.14); color: #f09070; }
.rs-ab-svc-icon--teal  { background: rgba(11,138,132,0.14); color: #5ecbc7; }

.rs-ab-svc-card h3 {
    font-family: var(--rs-font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.rs-ab-svc-card p {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin: 0;
}

.rs-ab-svc-cta {
    text-align: center;
    margin-top: 2rem;
}

.rs-ab-svc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #f09070;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(214,69,27,0.35);
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.rs-ab-svc-link:hover {
    background: rgba(214,69,27,0.14);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Team / Founders ─────────────────────────────────────────── */
.rs-ab-team { background: #fff; }

.rs-ab-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.rs-ab-founder-card {
    background: #fff;
    border: 1px solid #e8e2d8;
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
}

.rs-ab-founder-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.09);
    transform: translateY(-4px);
}

.rs-ab-founder-photo-wrap {
    position: relative;
    background: #f7f5f2;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rs-ab-founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rs-ab-founder-initials {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--rs-font-head);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.rs-ab-founder-initials--brand { background: linear-gradient(135deg, #d6451b, #c03a15); }
.rs-ab-founder-initials--teal  { background: linear-gradient(135deg, #0b8a84, #087a75); }

.rs-ab-founder-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: #d6451b;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
}

.rs-ab-founder-badge--teal { background: #0b8a84; }

.rs-ab-founder-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rs-ab-founder-body h3 {
    font-family: var(--rs-font-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: #1b2430;
    margin: 0;
}

.rs-ab-founder-body p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.rs-ab-founder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.25rem;
}

.rs-ab-founder-tags span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    background: #f3f1ee;
    border: 1px solid #e2ddd5;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
}

/* ── Timeline ─────────────────────────────────────────────────── */
.rs-ab-timeline { background: #1b2430; }

.rs-ab-timeline-track {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 180px;
}

.rs-ab-timeline-track::before {
    content: '';
    position: absolute;
    left: 158px;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background: linear-gradient(to bottom, #d6451b 0%, rgba(11,138,132,0.6) 100%);
    opacity: 0.35;
}

.rs-ab-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 1.5rem;
    padding: 0 0 2.5rem;
    align-items: flex-start;
}

.rs-ab-timeline-item:last-child { padding-bottom: 0; }

.rs-ab-tl-year {
    position: absolute;
    left: -176px;
    top: 2px;
    width: 160px;
    text-align: right;
    font-family: var(--rs-font-head);
    font-size: 0.95rem;
    font-weight: 800;
    color: #d6451b;
}

.rs-ab-tl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(214,69,27,0.5);
    margin-top: 4px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.rs-ab-tl-dot--active {
    background: #d6451b;
    border-color: #d6451b;
    box-shadow: 0 0 0 5px rgba(214,69,27,0.18);
}

.rs-ab-tl-content { padding-bottom: 0; }

.rs-ab-tl-content h4 {
    font-family: var(--rs-font-head);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.35rem;
}

.rs-ab-tl-content p {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin: 0;
}

/* ── Why Choose Us ────────────────────────────────────────────── */
.rs-ab-why { background: #f7f5f2; }

.rs-ab-why-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: start;
}

.rs-ab-why-left {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rs-ab-why-left h2 {
    font-family: var(--rs-font-head);
    font-size: clamp(1.75rem, 3vw, 2.3rem);
    font-weight: 800;
    color: #1b2430;
    margin: 0;
    line-height: 1.2;
}

.rs-ab-why-left p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.rs-ab-why-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #d6451b;
    color: #fff;
    font-family: var(--rs-font-head);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.8rem 1.6rem;
    border-radius: 10px;
    text-decoration: none;
    align-self: flex-start;
    margin-top: 0.5rem;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(214,69,27,0.25);
}

.rs-ab-why-cta:hover {
    background: #c03a15;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(214,69,27,0.32);
}

.rs-ab-why-right {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e8e2d8;
}

.rs-ab-why-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: #fff;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.rs-ab-why-item:last-child { border-bottom: none; }
.rs-ab-why-item:hover { background: #faf9f7; }

.rs-ab-why-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rs-ab-why-icon--brand { background: rgba(214,69,27,0.1); color: #d6451b; }
.rs-ab-why-icon--teal  { background: rgba(11,138,132,0.1); color: #0b8a84; }

.rs-ab-why-item h4 {
    font-family: var(--rs-font-head);
    font-size: 1rem;
    font-weight: 700;
    color: #1b2430;
    margin: 0 0 0.3rem;
}

.rs-ab-why-item p {
    font-size: 0.86rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* ── Final CTA ────────────────────────────────────────────────── */
.rs-ab-cta {
    background-color: #1b2430;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rs-ab-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.rs-ab-cta-orb--1 {
    width: 420px;
    height: 420px;
    top: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(214,69,27,0.28) 0%, transparent 65%);
}

.rs-ab-cta-orb--2 {
    width: 350px;
    height: 350px;
    bottom: -80px;
    left: -60px;
    background: radial-gradient(circle, rgba(11,138,132,0.22) 0%, transparent 65%);
}

.rs-ab-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
}

.rs-ab-cta h2 {
    font-family: var(--rs-font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.rs-ab-cta p {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    max-width: 440px;
    margin: 0;
}

.rs-ab-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.rs-ab-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--rs-font-head);
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.85rem 1.8rem;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.rs-ab-cta-btn--primary {
    background: #d6451b;
    color: #fff;
    box-shadow: 0 4px 20px rgba(214,69,27,0.35);
}

.rs-ab-cta-btn--primary:hover {
    background: #c03a15;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(214,69,27,0.42);
}

.rs-ab-cta-btn--ghost {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    border: 1.5px solid rgba(255,255,255,0.32);
}

.rs-ab-cta-btn--ghost:hover {
    background: rgba(255,255,255,0.16);
    transform: translateY(-2px);
    color: #ffffff;
    border-color: rgba(255,255,255,0.6);
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1050px) {
    .rs-ab-story-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
    .rs-ab-why-grid      { grid-template-columns: 1fr; }
    .rs-ab-why-left      { position: static; }
    .rs-ab-timeline-track { padding-left: 130px; }
    .rs-ab-timeline-track::before { left: 110px; }
    .rs-ab-tl-year       { left: -126px; width: 112px; }
}

@media (max-width: 860px) {
    .rs-ab-mvv-grid      { grid-template-columns: 1fr; gap: 1.5px; }
    .rs-ab-svc-grid      { grid-template-columns: repeat(2, 1fr); }
    .rs-ab-team-grid     { grid-template-columns: 1fr; }
    .rs-ab-stat-div      { display: none; }
    .rs-ab-stats-inner   { gap: 0; }
    .rs-ab-stat-item     { padding: 1.25rem 1.75rem; }
}

@media (max-width: 600px) {
    .rs-ab-hero          { padding: 90px 0 80px; }
    .rs-ab-svc-grid      { grid-template-columns: 1fr; }
    .rs-ab-timeline-track { padding-left: 0; }
    .rs-ab-timeline-track::before { display: none; }
    .rs-ab-timeline-item { grid-template-columns: 1fr; padding-left: 0; }
    .rs-ab-tl-year       { position: static; text-align: left; margin-bottom: 0.25rem; }
    .rs-ab-tl-dot        { display: none; }
    .rs-ab-stats-inner   { flex-direction: column; }
}


/* ══════════════════════════════════════════════════════════════════
   GLOBAL RESPONSIVE & SPACING FIXES
   ══════════════════════════════════════════════════════════════════ */

/* ── Logo ─────────────────────────────────────────────────────── */
.rs-logo-img {
    height: 44px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* ── Global section spacing fix ───────────────────────────────── */
.rs-section { padding: clamp(2.5rem, 5vw, 5rem) 0; }

/* ── Container padding on small screens ───────────────────────── */
.rs-container { width: min(1120px, calc(100% - 2rem)); }

/* ══════════════════════════════════════════════════════════════════
   TABLET  — max 1024px
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    /* Services page */
    .rs-svc-hero-stats       { flex-wrap: wrap; gap: 1.5rem; }
    .rs-svc-grid             { grid-template-columns: repeat(2, 1fr); }
    .rs-svc-process-grid     { grid-template-columns: repeat(2, 1fr); }
    .rs-svc-industries-grid  { grid-template-columns: repeat(3, 1fr); }
    .rs-svc-why-grid         { grid-template-columns: 1fr; gap: 2rem; }
    .rs-svc-why-left         { position: static; }
    .rs-svc-why-cards        { grid-template-columns: repeat(2, 1fr); }

    /* Events page */
    .rs-ev-featured-inner    { grid-template-columns: 1fr; }
    .rs-ev-expect-grid       { grid-template-columns: repeat(2, 1fr); }
    .rs-ev-audience-grid     { grid-template-columns: 1fr; }

    /* BEA page */
    .rs-bea-about-grid       { grid-template-columns: 1fr; }
    .rs-bea-benefits-grid    { grid-template-columns: repeat(2, 1fr); }
    .rs-bea-form-grid        { grid-template-columns: 1fr; }
    .rs-bea-form-left        { position: static; }

    /* Contact page */
    .rs-ct-main-grid         { grid-template-columns: 1fr; }
    .rs-ct-info-col          { position: static; }
    .rs-ct-faq-grid          { grid-template-columns: 1fr; }
    .rs-ct-faq-head          { position: static; }

    /* About page */
    .rs-ab-story-grid        { grid-template-columns: 1fr; gap: 2.5rem; }
    .rs-ab-why-grid          { grid-template-columns: 1fr; gap: 2rem; }
    .rs-ab-why-left          { position: static; }
    .rs-ab-timeline-track    { padding-left: 120px; }
    .rs-ab-timeline-track::before { left: 100px; }
    .rs-ab-tl-year           { left: -116px; width: 104px; font-size: 0.85rem; }
}

/* ══════════════════════════════════════════════════════════════════
   MOBILE LANDSCAPE / SMALL TABLET  — max 768px
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Header */
    .rs-logo-img             { height: 36px; max-width: 150px; }
    .rs-header-inner         { min-height: 64px; }

    /* ── Home hero ── */
    .rs-hv3-left             { padding: 3rem 0; }
    .rs-hv3-title            { font-size: clamp(2rem, 7vw, 3rem); }

    /* ── Services ── */
    .rs-svc-hero             { padding: 80px 0 60px; }
    .rs-svc-grid             { grid-template-columns: 1fr; }
    .rs-svc-hero-stats       { gap: 1rem; }
    .rs-svc-process-grid     { grid-template-columns: 1fr; }
    .rs-svc-industries-grid  { grid-template-columns: repeat(2, 1fr); }
    .rs-svc-why-cards        { grid-template-columns: 1fr; }
    .rs-svc-cta-actions      { flex-direction: column; align-items: center; }

    /* ── Events ── */
    .rs-ev-hero              { padding: 80px 0 60px; }
    .rs-ev-featured-stats    { flex-wrap: wrap; gap: 0.75rem; }
    .rs-ev-grid              { grid-template-columns: 1fr; }
    .rs-ev-expect-grid       { grid-template-columns: 1fr; }
    .rs-ev-cta-actions       { flex-direction: column; align-items: center; }

    /* ── BEA ── */
    .rs-bea-hero             { padding: 80px 0 60px; }
    .rs-bea-hero-pills       { flex-wrap: wrap; gap: 0.4rem; }
    .rs-bea-hero-title       { font-size: clamp(2rem, 7vw, 3.2rem); }
    .rs-bea-benefits-grid    { grid-template-columns: 1fr; }
    .rs-bea-apply-grid       { grid-template-columns: 1fr; }
    .rs-bea-founders-grid    { grid-template-columns: 1fr; }
    .rs-bea-vslide           { flex: 0 0 280px; }

    /* ── Contact ── */
    .rs-ct-hero              { padding: 80px 0 70px; }
    .rs-ct-hero-title        { font-size: clamp(2rem, 7vw, 2.8rem); }
    .rs-ct-hero-pills        { flex-wrap: wrap; gap: 0.4rem; }
    .rs-ct-form-row          { grid-template-columns: 1fr; }
    .rs-ct-process-track     { grid-template-columns: repeat(2, 1fr); }
    .rs-ct-process-line      { display: none; }
    .rs-ct-stat-divider      { display: none; }
    .rs-ct-stats-inner       { flex-wrap: wrap; justify-content: center; }
    .rs-ct-stat-item         { padding: 1.1rem 1.5rem; min-width: 120px; }
    .rs-ct-cta-actions       { flex-direction: column; align-items: center; }

    /* ── About ── */
    .rs-ab-hero              { padding: 80px 0 70px; }
    .rs-ab-hero-title        { font-size: clamp(2rem, 7vw, 3rem); }
    .rs-ab-mvv-grid          { grid-template-columns: 1fr; }
    .rs-ab-svc-grid          { grid-template-columns: repeat(2, 1fr); }
    .rs-ab-team-grid         { grid-template-columns: 1fr; }
    .rs-ab-stat-div          { display: none; }
    .rs-ab-stats-inner       { flex-wrap: wrap; justify-content: center; }
    .rs-ab-stat-item         { padding: 1.1rem 1.5rem; min-width: 120px; }
    .rs-ab-cta-actions       { flex-direction: column; align-items: center; }

    /* General grids */
    .rs-metric-grid          { grid-template-columns: repeat(2, 1fr); }
    .rs-footer-grid          { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ══════════════════════════════════════════════════════════════════
   MOBILE PORTRAIT  — max 540px
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 540px) {
    /* Header */
    .rs-logo-img             { height: 32px; max-width: 130px; }
    .rs-header-inner         { min-height: 58px; }

    /* ── Global sections ── */
    .rs-section              { padding: 2.5rem 0; }

    /* ── Home hero ── */
    .rs-hv3-left             { padding: 2.5rem 0; text-align: center; }
    .rs-hv3-actions          { justify-content: center; }
    .rs-hv3-bg-icon          { display: none; }

    /* ── Services ── */
    .rs-svc-hero             { padding: 70px 0 50px; }
    .rs-svc-hero-title       { font-size: clamp(1.8rem, 8vw, 2.6rem); }
    .rs-svc-hero-stats       { display: none; }
    .rs-svc-cta-actions      { width: 100%; }
    .rs-svc-cta-actions a    { width: 100%; justify-content: center; }
    .rs-svc-industries-grid  { grid-template-columns: repeat(2, 1fr); }
    .rs-svc-card             { padding: 1.5rem; }

    /* ── Events ── */
    .rs-ev-hero              { padding: 70px 0 50px; }
    .rs-ev-hero-title        { font-size: clamp(1.8rem, 8vw, 2.6rem); }
    .rs-ev-cta-actions a     { width: 100%; justify-content: center; }

    /* ── BEA ── */
    .rs-bea-hero             { padding: 70px 0 50px; }
    .rs-bea-hero-title       { font-size: clamp(1.8rem, 8vw, 2.6rem); }
    .rs-bea-about-cards      { grid-template-columns: 1fr; }
    .rs-bea-vslide           { flex: 0 0 260px; }
    .rs-bea-varrow           { display: none; }
    .rs-bea-form-row--2      { flex-direction: column; }

    /* ── Contact ── */
    .rs-ct-hero              { padding: 70px 0 60px; }
    .rs-ct-hero-title        { font-size: clamp(1.8rem, 8vw, 2.6rem); }
    .rs-ct-hero-pills        { display: none; }
    .rs-ct-form-col          { padding: 1.5rem; }
    .rs-ct-process-track     { grid-template-columns: 1fr; }
    .rs-ct-cta h2            { font-size: 1.75rem; }
    .rs-ct-cta-actions a     { width: 100%; justify-content: center; }
    .rs-ct-stats-inner       { flex-direction: column; align-items: center; }

    /* ── About ── */
    .rs-ab-hero              { padding: 70px 0 60px; }
    .rs-ab-hero-title        { font-size: clamp(1.8rem, 8vw, 2.6rem); }
    .rs-ab-svc-grid          { grid-template-columns: 1fr; }
    .rs-ab-timeline-track    { padding-left: 0; }
    .rs-ab-timeline-track::before { display: none; }
    .rs-ab-timeline-item     { grid-template-columns: 1fr; gap: 0.5rem; }
    .rs-ab-tl-year           { position: static; text-align: left; width: auto; font-size: 0.85rem; }
    .rs-ab-tl-dot            { display: none; }
    .rs-ab-stats-inner       { flex-direction: column; align-items: center; }
    .rs-ab-cta h2            { font-size: 1.75rem; }
    .rs-ab-cta-actions a     { width: 100%; justify-content: center; }

    /* ── General ── */
    .rs-metric-grid          { grid-template-columns: 1fr; }
    .rs-choose-grid          { grid-template-columns: 1fr; }
    .rs-testimonial-grid     { grid-template-columns: 1fr; }
    .rs-hero-grid            { grid-template-columns: 1fr; }
    .rs-two-col              { grid-template-columns: 1fr; }
    .rs-service-grid         { grid-template-columns: 1fr; }
    .rs-cta-banner           { text-align: center; }
    .rs-cta-banner .rs-btn   { width: 100%; justify-content: center; }
}

/* ── Fix hero nav z-index on mobile ───────────────────────────── */
@media (max-width: 980px) {
    .rs-nav { z-index: 200; }
    .rs-logo-img { height: 38px; }
}


/* ═══════════════════════════════════════════════════════════
   PORTFOLIO PAGE
   ═══════════════════════════════════════════════════════════ */

/* Wide container override */
.rs-container--wide {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ── Hero ─────────────────────────────────────────────────── */
.rs-pf-hero {
    background-color: #1b2430;
    padding: 7rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rs-pf-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(214,69,27,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.rs-pf-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.rs-pf-hero .rs-eyebrow {
    color: var(--rs-brand);
    margin-bottom: 0.75rem;
}

.rs-pf-hero-title {
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.1;
    margin: 0.25rem 0 1.1rem;
}

.rs-pf-hero-title .rs-text-brand {
    color: var(--rs-brand);
}

.rs-pf-hero-sub {
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* ── Feed Section ─────────────────────────────────────────── */
.rs-pf-feed {
    background: #f7f5f2;
    padding: 3.5rem 0 5rem;
}

/* ── Filter Tabs ──────────────────────────────────────────── */
.rs-pf-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

/* ── Grid ─────────────────────────────────────────────────── */
.rs-pf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    align-items: start;
}

/* ── Card ─────────────────────────────────────────────────── */
.rs-pf-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    background-color: #1b2430;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rs-pf-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.rs-pf-item:focus {
    outline: 2px solid var(--rs-brand);
    outline-offset: 3px;
}

/* Aspect ratios — 4 supported formats */
.rs-pf-item[data-ratio="9x16"] {
    grid-column: span 1;
    aspect-ratio: 9 / 16;
}

.rs-pf-item[data-ratio="16x9"] {
    grid-column: span 1;
    aspect-ratio: 16 / 9;
}

.rs-pf-item[data-ratio="1x1"] {
    grid-column: span 1;
    aspect-ratio: 1 / 1;
}

.rs-pf-item[data-ratio="4x3"] {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
}

/* Fallback for items with no ratio */
.rs-pf-item:not([data-ratio]),
.rs-pf-item[data-ratio=""] {
    grid-column: span 1;
    aspect-ratio: 1 / 1;
}

/* ── Thumbnail ────────────────────────────────────────────── */
.rs-pf-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.rs-pf-item:hover .rs-pf-thumb {
    transform: scale(1.05);
}

.rs-pf-thumb-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1b2430 0%, #2e3f52 100%);
}

/* ── Bottom Gradient Overlay ──────────────────────────────── */
.rs-pf-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.28) 38%,
        transparent 62%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0.9rem 1rem;
    transition: background 0.3s ease;
}

.rs-pf-item:hover .rs-pf-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.38) 45%,
        rgba(0, 0, 0, 0.1) 75%
    );
}

/* ── Play Button ──────────────────────────────────────────── */
.rs-pf-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.90);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b2430;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, background 0.25s;
}

.rs-pf-play svg {
    margin-left: 3px; /* optical centering for play triangle */
}

.rs-pf-item:hover .rs-pf-play {
    transform: translate(-50%, -50%) scale(1.12);
    background: #ffffff;
}

/* ── Meta (client name + tag) ─────────────────────────────── */
.rs-pf-meta {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
}

.rs-pf-client {
    color: #ffffff;
    font-family: var(--rs-font-head);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rs-pf-tag {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.7rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 0.18rem 0.52rem;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* ── Hidden state (filter) ────────────────────────────────── */
.rs-pf-item.is-hidden {
    display: none;
}

/* ── Empty state ──────────────────────────────────────────── */
.rs-pf-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 2rem;
    color: var(--rs-dark);
}

.rs-pf-empty-icon {
    color: rgba(27, 36, 48, 0.28);
    margin-bottom: 1.25rem;
}

.rs-pf-empty p {
    color: rgba(27, 36, 48, 0.55);
    font-size: 1rem;
    line-height: 1.7;
}

.rs-pf-empty strong {
    color: var(--rs-dark);
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   PORTFOLIO LIGHTBOX MODAL
   ══════════════════════════════════════════════════════════ */
.rs-pf-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.rs-pf-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.rs-pf-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
    cursor: pointer;
}

.rs-pf-modal-wrap {
    position: relative;
    z-index: 1;
    width: 92vw;
    max-width: 1000px;
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Portrait (9:16) modal is narrower */
.rs-pf-modal.is-portrait .rs-pf-modal-wrap {
    max-width: 400px;
}

.rs-pf-modal-close {
    position: absolute;
    top: -46px;
    right: 0;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.rs-pf-modal-close:hover {
    background: rgba(255, 255, 255, 0.26);
    transform: scale(1.1);
}

.rs-pf-modal-content {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    max-height: 88vh;
}

/* Video embed */
.rs-pf-modal-content iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: none;
}

.rs-pf-modal.is-portrait .rs-pf-modal-content iframe {
    aspect-ratio: 9 / 16;
}

/* Image lightbox */
.rs-pf-modal-content img {
    width: 100%;
    height: auto;
    max-height: 86vh;
    object-fit: contain;
    display: block;
}

/* ══════════════════════════════════════════════════════════
   PORTFOLIO RESPONSIVE
   ══════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1100px) {
    .rs-pf-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rs-pf-item[data-ratio="16x9"],
    .rs-pf-item[data-ratio="4x3"] {
        grid-column: span 2;
    }

    .rs-pf-item[data-ratio="9x16"],
    .rs-pf-item[data-ratio="1x1"] {
        grid-column: span 1;
    }
}

/* Mobile landscape */
@media (max-width: 768px) {
    .rs-pf-hero {
        padding: 5rem 0 3.5rem;
    }

    .rs-pf-feed {
        padding: 2.5rem 0 3.5rem;
    }

    .rs-pf-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .rs-pf-item[data-ratio="16x9"],
    .rs-pf-item[data-ratio="4x3"] {
        grid-column: span 2;
    }

    .rs-pf-item[data-ratio="9x16"],
    .rs-pf-item[data-ratio="1x1"] {
        grid-column: span 1;
    }

    .rs-pf-modal-wrap {
        width: 96vw;
    }

    .rs-pf-modal.is-portrait .rs-pf-modal-wrap {
        max-width: 320px;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .rs-pf-grid {
        gap: 4px;
    }

    .rs-pf-play {
        width: 42px;
        height: 42px;
    }

    .rs-pf-play svg {
        width: 22px;
        height: 22px;
    }

    .rs-pf-client {
        font-size: 0.78rem;
    }

    .rs-pf-tag {
        display: none;
    }

    .rs-pf-modal-close {
        top: -40px;
        width: 32px;
        height: 32px;
    }
}


/* ── Home Page — Portfolio Preview Slider ──────────────────── */

/* Slider outer wrapper */
.rs-hm-pf-slider-wrap {
    position: relative;
}

/* Arrow buttons — hidden on desktop, shown on tablet/mobile */
.rs-hm-pf-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #1b2430;
    box-shadow: 0 4px 16px rgba(0,0,0,0.16);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.rs-hm-pf-arrow:hover {
    background: var(--rs-brand);
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.rs-hm-pf-prev { left: -18px; }
.rs-hm-pf-next { right: -18px; }

/* Desktop: plain 3-column grid */
.rs-hm-pf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: start;
}

/* All home cards: 16:9 */
.rs-hm-pf-card {
    aspect-ratio: 16 / 9 !important;
    grid-column: span 1 !important;
}

.rs-hm-pf-empty {
    grid-column: 1 / -1;
    color: rgba(27,36,48,0.5);
    font-size: 0.95rem;
}

/* ── Tablet & Mobile: horizontal scroll slider ─────────────── */
@media (max-width: 1024px) {
    .rs-hm-pf-slider-wrap {
        padding: 0 8px;
    }

    .rs-hm-pf-arrow {
        display: flex;
    }

    .rs-hm-pf-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding-bottom: 8px;
        /* hide scrollbar */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .rs-hm-pf-grid::-webkit-scrollbar {
        display: none;
    }

    /* Each card: ~80% width so the next card peeks */
    .rs-hm-pf-card {
        flex: 0 0 78%;
        scroll-snap-align: start;
        aspect-ratio: 16 / 9 !important;
    }
}

@media (max-width: 640px) {
    .rs-hm-pf-card {
        flex: 0 0 88%;
    }

    .rs-hm-pf-prev { left: -12px; }
    .rs-hm-pf-next { right: -12px; }
}



/* ═══════════════════════════════════════════════════════════
   THEME SWITCHER  (always visible in footer)
   ═══════════════════════════════════════════════════════════ */

.rs-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.rs-theme-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 3px;
    flex-shrink: 0;
}

.rs-theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.28rem 0.8rem;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--rs-font-body);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    white-space: nowrap;
    line-height: 1;
}

.rs-theme-btn:hover {
    color: #ffffff;
}

.rs-theme-btn.is-active {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

@media (max-width: 480px) {
    .rs-footer-bottom-inner { flex-direction: column; gap: 0.75rem; }
    .rs-theme-btn { padding: 0.28rem 0.55rem; font-size: 0.7rem; }
}

/* ═══════════════════════════════════════════════════════════
   DARK MODE  — Vercel-inspired neutral palette
   ═══════════════════════════════════════════════════════════

   Palette:
     bg           #000000   page background
     surface-1    #0f0f0f   section background (was white/cream)
     surface-2    #161616   cards, panels, form wrappers
     surface-3    #1c1c1c   elevated / hover
     border       #2a2a2a   dividers, input edges
     text-hi      #ededed   headings
     text-md      #a1a1a1   body copy
     text-lo      #666666   labels, captions
     brand        #d6451b   (unchanged)
     accent       #0b8a84   (unchanged)
   ═══════════════════════════════════════════════════════════ */

html.dark {
    --rs-bg:         #000000;
    --rs-surface:    #161616;
    --rs-ink:        #ededed;
    --rs-subtle:     #a1a1a1;
    --rs-border:     #2a2a2a;
    --rs-brand-soft: rgba(214, 69, 27, 0.16);
    --rs-shadow:     0 0 0 1px #2a2a2a, 0 8px 32px rgba(0, 0, 0, 0.6);
}

/* ── Smooth transitions on theme switch ───────────────────── */
html {
    transition: background-color 0.25s ease;
}

body,
.rs-header,
.rs-footer,
section,
.rs-card,
.rs-metric-card,
.rs-testimonial-card,
.rs-why-item,
input, select, textarea {
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

/* ── Base ─────────────────────────────────────────────────── */
html.dark body {
    background: #000000;
    color: #ededed;
    /* Remove the warm radial gradient */
    background-image: none;
}

html.dark h1,
html.dark h2,
html.dark h3,
html.dark h4,
html.dark h5,
html.dark h6 {
    color: #ededed;
}

html.dark p {
    color: #a1a1a1;
}

html.dark li {
    color: #a1a1a1;
}

html.dark a:not(.rs-btn):not(.rs-tab) {
    color: #a1a1a1;
}

html.dark a:not(.rs-btn):not(.rs-tab):hover {
    color: #ededed;
}

html.dark strong {
    color: #ededed;
}

/* ── Header / nav ─────────────────────────────────────────── */
html.dark .rs-header {
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid #1f1f1f;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

html.dark .rs-nav .rs-menu > li > a {
    color: #a1a1a1;
}

html.dark .rs-nav .rs-menu > li > a:hover {
    color: #ededed;
}

html.dark .rs-menu-toggle span {
    background: #ededed;
}

html.dark .rs-nav.is-open {
    background: #0f0f0f;
    border-top: 1px solid #1f1f1f;
}

/* ── HOME HERO  (was white, must be dark) ─────────────────── */
html.dark .rs-hero-v3 {
    background: #000000 !important;
}

html.dark .rs-hv3-orb-1 {
    background: radial-gradient(circle, rgba(214, 69, 27, 0.18) 0%, transparent 65%);
}

html.dark .rs-hv3-orb-2 {
    background: radial-gradient(circle, rgba(11, 138, 132, 0.14) 0%, transparent 65%);
}

html.dark .rs-hv3-orb-3 {
    background: radial-gradient(circle, rgba(214, 69, 27, 0.08) 0%, transparent 70%);
}

html.dark .rs-hv3-dots {
    opacity: 0.18;
}

html.dark .rs-hv3-icon {
    opacity: 0.55;
}

/* Heading inside hero — white in dark mode */
html.dark .rs-hv3-heading {
    color: #ededed;
}

html.dark .rs-hv3-sub {
    color: #a1a1a1;
}

/* ── Page hero (inner pages) ──────────────────────────────── */
html.dark .rs-page-hero {
    background: #0f0f0f !important;
}

html.dark .rs-page-hero h1,
html.dark .rs-page-hero p {
    color: #ededed;
}

/* ── Light sections → dark surface ───────────────────────── */

/* HOME */
html.dark .rs-logos-section,
html.dark .rs-section.rs-metrics,
html.dark .rs-section.rs-services-section,
html.dark .rs-section.rs-light,
html.dark .rs-hm-pf-section {
    background: #0f0f0f !important;
    border-color: #1f1f1f !important;
}

html.dark .rs-section.rs-why-section {
    background: #0a0a0a !important;
    border-color: #1f1f1f !important;
}

html.dark .rs-section.rs-testimonials-section {
    background: #0f0f0f !important;
    border-color: #1f1f1f !important;
}

/* Dark hero sections — slightly deeper */
html.dark .rs-section.rs-cta-section,
html.dark [class*="rs-"][class*="-cta"],
html.dark [class*="rs-"][class*="-hero"]:not(.rs-hero-v3) {
    background-color: #050505 !important;
}

/* CONTACT */
html.dark .rs-ct-main  { background: #0f0f0f !important; }
html.dark .rs-ct-faq   { background: #0a0a0a !important; }
html.dark .rs-ct-hero  { background-color: #000000 !important; }
html.dark .rs-ct-process { background-color: #050505 !important; }
html.dark .rs-ct-cta   { background-color: #050505 !important; }
html.dark .rs-ct-stats-bar { /* brand orange — keep as-is */ }

/* ABOUT */
html.dark .rs-ab-story  { background: #0f0f0f !important; }
html.dark .rs-ab-mvv    { background: #0a0a0a !important; }
html.dark .rs-ab-team   { background: #0f0f0f !important; }
html.dark .rs-ab-why    { background: #0a0a0a !important; }
html.dark .rs-ab-hero   { background-color: #000000 !important; }
html.dark .rs-ab-services { background-color: #050505 !important; }
html.dark .rs-ab-timeline { background-color: #050505 !important; }
html.dark .rs-ab-cta    { background-color: #050505 !important; }

/* SERVICES */
html.dark .rs-svc-hero            { background-color: #000000 !important; }
html.dark .rs-svc-section         { background: #0f0f0f !important; }
html.dark .rs-svc-section.rs-svc-process-section { background: #0a0a0a !important; }
html.dark .rs-svc-section.rs-svc-why-section     { background: #0a0a0a !important; }
html.dark .rs-svc-cta-section     { background-color: #050505 !important; }
html.dark .rs-svc-results-bar     { /* brand orange — keep */ }

/* EVENTS */
html.dark .rs-evt-featured-section,
html.dark .rs-evt-list-section    { background: #0f0f0f !important; }

/* PORTFOLIO */
html.dark .rs-pf-hero  { background-color: #000000 !important; }
html.dark .rs-pf-feed  { background: #0a0a0a !important; }

/* ── Cards & panels ───────────────────────────────────────── */
html.dark .rs-card,
html.dark .rs-metric-card,
html.dark .rs-hero-card,
html.dark .rs-testimonial-card,
html.dark .rs-why-item,
html.dark .rs-panel,
html.dark .rs-svc-card,
html.dark .rs-svc-ind-card,
html.dark .rs-evt-card,
html.dark .rs-ab-mvv-card,
html.dark .rs-ab-why-item,
html.dark .rs-ab-team-card {
    background: #161616 !important;
    border-color: #2a2a2a !important;
    box-shadow: none !important;
}

html.dark .rs-card:hover,
html.dark .rs-why-item:hover,
html.dark .rs-ab-why-item:hover,
html.dark .rs-svc-card:hover {
    background: #1c1c1c !important;
    border-color: #3a3a3a !important;
}

html.dark .rs-card h3,
html.dark .rs-metric-card h2,
html.dark .rs-metric-card h3,
html.dark .rs-why-item h3,
html.dark .rs-panel-title {
    color: #ededed;
}

html.dark .rs-card p,
html.dark .rs-metric-card p,
html.dark .rs-why-item p,
html.dark .rs-panel-list li {
    color: #a1a1a1;
}

/* Panel icons */
html.dark .rs-panel-icon--orange { background: rgba(214,69,27,0.18); }
html.dark .rs-panel-icon--teal   { background: rgba(11,138,132,0.18); }
html.dark .rs-panel-icon--blue   { background: rgba(37,99,235,0.18); }
html.dark .rs-icon--orange       { background: rgba(214,69,27,0.18); }

/* ── CONTACT — form card (the main white card) ────────────── */
html.dark .rs-ct-form-col {
    background: #161616 !important;
    border-color: #2a2a2a !important;
}

html.dark .rs-ct-info-card {
    background: #161616 !important;
    border-color: #2a2a2a !important;
}

html.dark .rs-ct-info-card h3 { color: #ededed; }
html.dark .rs-ct-info-card p  { color: #a1a1a1; }

html.dark .rs-ct-form-col h2,
html.dark .rs-ct-form-col h3,
html.dark .rs-ct-form-col > p {
    color: #ededed;
}

html.dark .rs-ct-form-col label,
html.dark .rs-ct-label {
    color: #a1a1a1 !important;
}

html.dark .rs-ct-alert--success {
    background: rgba(11,138,132,0.12);
    border-color: rgba(11,138,132,0.3);
    color: #5fd4cf;
}

html.dark .rs-ct-alert--error {
    background: rgba(214,69,27,0.12);
    border-color: rgba(214,69,27,0.3);
    color: #f87455;
}

/* ── Form fields ──────────────────────────────────────────── */
html.dark input[type="text"],
html.dark input[type="email"],
html.dark input[type="tel"],
html.dark input[type="url"],
html.dark input[type="number"],
html.dark select,
html.dark textarea,
html.dark .rs-ct-form input,
html.dark .rs-ct-form select,
html.dark .rs-ct-form textarea {
    background: #0f0f0f !important;
    border-color: #2a2a2a !important;
    color: #ededed !important;
    caret-color: var(--rs-brand);
}

html.dark input:focus,
html.dark select:focus,
html.dark textarea:focus {
    border-color: var(--rs-brand) !important;
    outline: none;
}

html.dark input::placeholder,
html.dark textarea::placeholder {
    color: #555 !important;
}

html.dark select option {
    background: #161616;
    color: #ededed;
}

html.dark .rs-ct-input-icon {
    color: #555;
}

/* ── FAQ ──────────────────────────────────────────────────── */
html.dark .rs-ct-faq-item {
    border-color: #2a2a2a;
}

html.dark .rs-ct-faq-q {
    color: #ededed;
    background: transparent;
}

html.dark .rs-ct-faq-q:hover {
    color: #ffffff;
}

html.dark .rs-ct-faq-a {
    color: #a1a1a1;
}

/* ── Tabs ─────────────────────────────────────────────────── */
html.dark .rs-tabs,
html.dark .rs-pf-tabs {
    border-color: #2a2a2a;
}

html.dark .rs-tab {
    background: transparent;
    color: #666;
    border-color: #2a2a2a;
}

html.dark .rs-tab:hover {
    color: #ededed;
    border-color: #3a3a3a;
    background: #161616;
}

html.dark .rs-tab.is-active {
    background: var(--rs-brand);
    color: #ffffff;
    border-color: var(--rs-brand);
}

/* ── Section tags / eyebrows ──────────────────────────────── */
html.dark .rs-section-tag,
html.dark .rs-eyebrow {
    color: var(--rs-brand);
    background: rgba(214, 69, 27, 0.14);
}

html.dark .rs-section-head h2 { color: #ededed; }
html.dark .rs-section-head p  { color: #a1a1a1; }

html.dark .rs-link-arrow       { color: #666; }
html.dark .rs-link-arrow:hover { color: var(--rs-brand); }

/* ── Buttons ──────────────────────────────────────────────── */
html.dark .rs-btn-outline {
    border-color: #3a3a3a;
    color: #a1a1a1;
    background: transparent;
}

html.dark .rs-btn-outline:hover {
    background: #161616;
    border-color: #555;
    color: #ededed;
}

/* ── Client logo grid ─────────────────────────────────────── */
html.dark .rs-logo-item img,
html.dark .rs-logos-grid img {
    filter: brightness(0) invert(1);
    opacity: 0.35;
    transition: opacity 0.2s;
}

html.dark .rs-logo-item:hover img,
html.dark .rs-logos-grid a:hover img {
    opacity: 0.7;
}

/* Logo fade edges */
html.dark .rs-logos-fade-wrap::before {
    background: linear-gradient(to right, #0f0f0f, transparent) !important;
}

html.dark .rs-logos-fade-wrap::after {
    background: linear-gradient(to left, #0f0f0f, transparent) !important;
}

/* ── Testimonials ─────────────────────────────────────────── */
html.dark .rs-testimonial-card {
    background: #161616 !important;
    border-color: #2a2a2a !important;
}

html.dark .rs-testimonial-card h4,
html.dark .rs-testimonial-card .rs-tname { color: #ededed; }
html.dark .rs-testimonial-card p { color: #a1a1a1; }
html.dark .rs-testimonial-card .rs-role  { color: #666; }

/* ── About page specifics ─────────────────────────────────── */
html.dark .rs-ab-founder-initials {
    background: #1c1c1c;
    color: #a1a1a1;
}

html.dark .rs-ab-timeline-item::before,
html.dark .rs-ab-timeline::before {
    background: #2a2a2a;
}

/* ── Social icons ─────────────────────────────────────────── */
html.dark .rs-social a {
    border-color: #2a2a2a;
    color: #666;
}

html.dark .rs-social a:hover {
    border-color: var(--rs-brand);
    color: var(--rs-brand);
}

/* ── Footer ───────────────────────────────────────────────── */
html.dark .rs-footer {
    background: #0a0a0a;
    border-top: 1px solid #1f1f1f;
}

html.dark .rs-footer h3            { color: #ededed; }
html.dark .rs-footer p             { color: #666; }
html.dark .rs-footer a             { color: #666; }
html.dark .rs-footer-menu a        { color: #666; }
html.dark .rs-footer a:hover,
html.dark .rs-footer-menu a:hover  { color: #ededed; }

html.dark .rs-footer-bottom {
    background: #050505;
    border-top: 1px solid #1a1a1a;
}

html.dark .rs-footer-bottom p { color: #444; }

/* ── Portfolio feed tabs ──────────────────────────────────── */
html.dark .rs-pf-tabs .rs-tab {
    background: #161616;
    border-color: #2a2a2a;
    color: #666;
}

html.dark .rs-pf-tabs .rs-tab.is-active {
    background: var(--rs-brand);
    color: #fff;
    border-color: var(--rs-brand);
}

/* ── Scrollbar ────────────────────────────────────────────── */
html.dark ::-webkit-scrollbar        { width: 7px; height: 7px; }
html.dark ::-webkit-scrollbar-track  { background: #0a0a0a; }
html.dark ::-webkit-scrollbar-thumb  { background: #2a2a2a; border-radius: 4px; }
html.dark ::-webkit-scrollbar-thumb:hover { background: #3a3a3a; }

