/* ============================================================
   5Exceptions — 2026 Revamp Design System
   Modern, energetic, AI-augmented brand expression.
   Loaded last in header.php so it overrides styles.css selectively.
   ============================================================ */

/* Smooth scroll & anchor offsets for sticky nav */
html { scroll-behavior: smooth; }
[id].rv-service-row { scroll-margin-top: 100px; }
#what-we-do, #we-offer, #our-work, #testimonials { scroll-margin-top: 80px; }
/* Kill the broken legacy ":target:before" spacer (styles.css) that injected a 100px
   block INSIDE the clicked element and shoved its content down. We use scroll-margin-top
   for anchor offset instead, so this hack is redundant. */
:target::before { content: none !important; display: none !important; height: 0 !important; }
[id] { scroll-margin-top: 100px; }

:root {
    --rv-primary: #f57e00;
    --rv-primary-2: #f7942b;
    --rv-primary-3: #ffb74d;
    --rv-primary-soft: rgba(245, 126, 0, 0.08);
    --rv-primary-glow: rgba(245, 126, 0, 0.35);
    --rv-accent: #f57e00;
    --rv-accent-blue: #00a1e0;
    --rv-heading: #0d1424;
    --rv-bg-dark: #0a0e1a;
    --rv-bg-dark-2: #131a2e;
    --rv-bg-soft: #f8f9fc;
    --rv-bg-card: #ffffff;
    --rv-text-on-dark: #ffffff;
    --rv-text-on-dark-muted: rgba(255, 255, 255, 0.72);
    --rv-text-primary: #0d1424;
    --rv-text-secondary: #5a6478;
    --rv-text-tertiary: #8a93a6;
    --rv-border: #e8ecf2;
    --rv-border-strong: #d4dae4;
    --rv-gradient-primary: linear-gradient(135deg, #f57e00 0%, #f7942b 50%, #ffb74d 100%);
    --rv-gradient-dark: linear-gradient(180deg, #0a0e1a 0%, #131a2e 100%);
    --rv-gradient-hero: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245, 126, 0, 0.35) 0%, transparent 60%), linear-gradient(180deg, #0a0e1a 0%, #131a2e 100%);
    --rv-shadow-sm: 0 2px 8px rgba(13, 20, 36, 0.04);
    --rv-shadow-md: 0 8px 24px rgba(13, 20, 36, 0.08);
    --rv-shadow-lg: 0 20px 50px rgba(13, 20, 36, 0.12);
    --rv-shadow-glow: 0 16px 40px rgba(245, 126, 0, 0.25);
    --rv-radius-sm: 8px;
    --rv-radius-md: 14px;
    --rv-radius-lg: 24px;
    --rv-radius-pill: 999px;
    --rv-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --rv-font-display: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
    --rv-font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---- Global font reset (overrides legacy Poppins rules) --- */
body, p, li, a, span, td, th, label, input, textarea, select, button {
    font-family: var(--rv-font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--rv-font-display);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ---- Override legacy text-align: justify (styles.css:2930) ---- */
section p,
.rv-section p,
.rv-hero p,
.rv-cta-banner p {
    text-align: left;
}

/* ---- Hide the legacy navbar site-wide --------------------- */
.rv-legacy-nav { display: none !important; }

/* ============================================================
   MODERN NAVBAR
   ============================================================ */
.rv-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: transparent;
    transition: background 0.35s var(--rv-ease), padding 0.3s var(--rv-ease), box-shadow 0.3s var(--rv-ease);
}
.rv-navbar.rv-nav-scrolled {
    background: rgba(10, 14, 26, 0.92);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    padding: 12px 0;
}
.rv-nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.rv-nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    line-height: 0;
    margin-top: -2px;
    text-decoration: none !important;
}
.rv-nav-logo img {
    height: 50px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter 0.3s var(--rv-ease), height 0.3s var(--rv-ease);
}
.rv-navbar.rv-nav-scrolled .rv-nav-logo img { height: 44px; }
.rv-navbar.rv-nav-light .rv-nav-logo img { filter: none; }
.rv-nav-drawer {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: flex-end;
}
.rv-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.rv-nav-links li { margin: 0; }
.rv-nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--rv-font-display);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: var(--rv-radius-pill);
    text-decoration: none !important;
    transition: color 0.25s var(--rv-ease), background 0.25s var(--rv-ease);
    letter-spacing: 0.2px;
    white-space: nowrap;
    display: inline-block;
}
.rv-nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}
.rv-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--rv-gradient-primary);
    color: #fff !important;
    padding: 11px 22px;
    border-radius: var(--rv-radius-pill);
    font-family: var(--rv-font-display);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    box-shadow: 0 6px 18px rgba(245, 126, 0, 0.32);
    transition: transform 0.25s var(--rv-ease), box-shadow 0.25s var(--rv-ease);
    white-space: nowrap;
}
.rv-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(245, 126, 0, 0.45);
    color: #fff;
}
.rv-nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px;
    cursor: pointer;
    width: 42px;
    height: 42px;
    position: relative;
}
.rv-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px auto;
    border-radius: 2px;
    transition: transform 0.35s var(--rv-ease), opacity 0.25s var(--rv-ease);
}
.rv-nav-toggle.rv-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rv-nav-toggle.rv-open span:nth-child(2) { opacity: 0; }
.rv-nav-toggle.rv-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1199px) {
    .rv-nav-links a { padding: 9px 11px; font-size: 13.5px; }
    .rv-nav-drawer { gap: 18px; }
}
@media (max-width: 991px) {
    .rv-nav-toggle { display: block; z-index: 2; }
    .rv-nav-drawer {
        position: fixed;
        top: 0; right: 0;
        height: 100vh;
        width: min(86vw, 360px);
        background: var(--rv-gradient-dark);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 100px 32px 40px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.4s var(--rv-ease);
        box-shadow: -20px 0 40px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }
    .rv-nav-drawer.rv-open { transform: translateX(0); }
    .rv-nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin-bottom: 24px;
    }
    .rv-nav-links a {
        font-size: 17px;
        padding: 14px 18px;
        border-radius: 12px;
    }
    .rv-nav-cta {
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    .rv-nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s var(--rv-ease);
    }
    .rv-nav-backdrop.rv-open {
        opacity: 1;
        pointer-events: auto;
    }
}

/* ---- Mega-menu ---------------------------------------------- */
.rv-has-mega { position: relative; }
.rv-mega-trigger { display: inline-flex !important; align-items: center; gap: 5px; }
.rv-chevron { font-size: 9px; transition: transform 0.3s var(--rv-ease); }
.rv-has-mega:hover > .rv-mega-trigger .rv-chevron,
.rv-has-mega.rv-mega-open > .rv-mega-trigger .rv-chevron { transform: rotate(180deg); }

.rv-mega-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 680px;
    background: rgba(16, 20, 36, 0.97);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px 32px 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255,255,255,0.04) inset;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s var(--rv-ease), transform 0.25s var(--rv-ease), visibility 0s 0.25s;
    z-index: 1001;
}
.rv-has-mega:hover > .rv-mega-panel,
.rv-has-mega.rv-mega-open > .rv-mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.25s var(--rv-ease), transform 0.25s var(--rv-ease), visibility 0s 0s;
}
.rv-mega-panel-sm { min-width: 240px; }
.rv-mega-panel-sm .rv-mega-grid-1 { display: block; }

.rv-mega-grid {
    display: grid;
    gap: 24px 28px;
}
.rv-mega-grid-3x2 { grid-template-columns: repeat(3, 1fr); }
.rv-mega-grid-3x3 { grid-template-columns: repeat(3, 1fr); }
.rv-mega-grid-1   { grid-template-columns: 1fr; }

.rv-mega-col h5 {
    margin: 0 0 10px;
    font-family: var(--rv-font-display);
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.rv-mega-col h5 a {
    color: var(--rv-primary) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color 0.2s;
    padding: 0 !important;
    background: none !important;
    border-radius: 0 !important;
    font-size: 13.5px;
}
.rv-mega-col h5 a i { font-size: 14px; }
.rv-mega-col h5 a:hover { color: #fff !important; }

.rv-mega-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.rv-mega-col ul li { margin: 0; }
.rv-mega-col ul a {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 13px;
    font-weight: 400;
    padding: 5px 0 !important;
    display: block;
    text-decoration: none !important;
    background: none !important;
    border-radius: 0 !important;
    white-space: normal;
    line-height: 1.4;
    transition: color 0.2s, padding-left 0.2s;
}
.rv-mega-col ul a:hover {
    color: #fff !important;
    padding-left: 6px !important;
    background: none !important;
}
.rv-mega-col ul a i {
    width: 18px;
    text-align: center;
    margin-right: 6px;
    font-size: 13px;
    color: var(--rv-primary);
}

.rv-mega-foot {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}
.rv-mega-foot a {
    color: var(--rv-primary) !important;
    font-family: var(--rv-font-display);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    background: none !important;
    padding: 6px 0 !important;
    border-radius: 0 !important;
    transition: color 0.2s;
}
.rv-mega-foot a:hover { color: #fff !important; }

/* Position the services panel to center within viewport if it overflows */
.rv-has-mega:first-child + .rv-has-mega > .rv-mega-panel { left: 0; transform: translateX(0) translateY(8px); }
.rv-has-mega:first-child + .rv-has-mega:hover > .rv-mega-panel,
.rv-has-mega:first-child + .rv-has-mega.rv-mega-open > .rv-mega-panel { transform: translateX(0) translateY(0); }

/* Prevent mega panel from going off-screen right */
.rv-has-mega:nth-child(3) > .rv-mega-panel { left: 50%; right: auto; }
.rv-has-mega:nth-child(4) > .rv-mega-panel { left: auto; right: 0; transform: translateX(0) translateY(8px); }
.rv-has-mega:nth-child(4):hover > .rv-mega-panel,
.rv-has-mega:nth-child(4).rv-mega-open > .rv-mega-panel { transform: translateX(0) translateY(0); }

/* ---- Rich mega panel — "simple yet powerful" --------------- */
.rv-mega-panel-rich {
    min-width: 680px;
    padding: 0;
    overflow: hidden;
}
.rv-mega-rich {
    display: grid;
    grid-template-columns: 232px 1fr;
}
.rv-mega-aside {
    display: flex;
    flex-direction: column;
    padding: 28px 26px;
    background: linear-gradient(165deg, rgba(245, 126, 0, 0.16) 0%, rgba(245, 126, 0, 0.02) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.rv-mega-aside-eyebrow {
    font-family: var(--rv-font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--rv-primary);
    margin-bottom: 12px;
}
.rv-mega-aside h4 {
    font-family: var(--rv-font-display);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin: 0 0 10px;
}
.rv-mega-aside p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 auto;
}
.rv-mega-aside-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    font-family: var(--rv-font-display);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--rv-primary) !important;
    text-decoration: none !important;
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    transition: gap 0.25s var(--rv-ease), color 0.2s;
}
.rv-mega-aside-cta:hover { color: #fff !important; gap: 12px; background: none !important; }
.rv-mega-aside-cta i { font-size: 11px; }

.rv-mega-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 18px;
}
.rv-mega-item {
    display: flex !important;
    align-items: center;
    gap: 13px;
    padding: 11px 13px !important;
    border-radius: 12px;
    text-decoration: none !important;
    background: none !important;
    white-space: normal !important;
}
.rv-mega-item:hover { background: rgba(255, 255, 255, 0.06) !important; padding-left: 13px !important; }
.rv-mega-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(245, 126, 0, 0.12);
    color: var(--rv-primary);
    font-size: 16px;
    transition: background 0.25s ease, color 0.25s ease;
}
.rv-mega-item:hover .rv-mega-item-icon {
    background: var(--rv-gradient-primary);
    color: #fff;
}
.rv-mega-item-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.rv-mega-item-text strong {
    font-family: var(--rv-font-display);
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
}
.rv-mega-item-text em {
    font-style: normal;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.3;
}

@media (max-width: 1199px) {
    .rv-mega-panel { min-width: 560px; padding: 22px 24px 14px; }
    .rv-mega-grid-3x2 { grid-template-columns: repeat(2, 1fr); }
    .rv-mega-grid-3x3 { grid-template-columns: repeat(2, 1fr); }
    .rv-mega-panel-rich { min-width: 600px; padding: 0; }
    .rv-mega-rich { grid-template-columns: 200px 1fr; }
    .rv-mega-aside { padding: 22px 20px; }
    .rv-mega-aside h4 { font-size: 17px; }
}
@media (max-width: 991px) {
    .rv-mega-panel-rich { min-width: 0; }
    .rv-mega-rich { grid-template-columns: 1fr; }
    .rv-mega-aside { display: none; }
    .rv-mega-items { grid-template-columns: 1fr; gap: 2px; padding: 8px; }
    .rv-mega-item-icon { width: 36px; height: 36px; font-size: 15px; }
}

@media (max-width: 991px) {
    .rv-has-mega { position: static; }
    .rv-mega-panel {
        position: static;
        min-width: 0;
        width: 100%;
        transform: none !important;
        background: rgba(255, 255, 255, 0.04);
        backdrop-filter: none;
        border: none;
        border-radius: 12px;
        padding: 12px 16px;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: max-height 0.35s var(--rv-ease), padding 0.35s var(--rv-ease);
        margin-top: 4px;
    }
    .rv-has-mega.rv-mega-open > .rv-mega-panel {
        max-height: 1200px;
        padding: 16px;
    }
    .rv-has-mega:hover > .rv-mega-panel {
        opacity: 1;
        visibility: visible;
        max-height: 0;
        padding: 0 16px;
    }
    .rv-has-mega.rv-mega-open:hover > .rv-mega-panel {
        max-height: 1200px;
        padding: 16px;
    }
    .rv-mega-trigger {
        font-size: 17px !important;
        padding: 14px 18px !important;
    }
    .rv-mega-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .rv-mega-col h5 { font-size: 12.5px; margin-bottom: 6px; }
    .rv-mega-col ul a { font-size: 14px; padding: 6px 0 !important; }
    .rv-mega-foot { margin-top: 10px; padding-top: 10px; }
}

/* Push page content below the fixed nav (only above the dark hero where it sits naturally) */
body { padding-top: 0; }

/* Fresh light ambiance (matches the hero) behind every light section.
   Dark sections paint their own opaque background, so they're unaffected. */
html body {
    background-color: #f7f9fc;
    background-image:
        radial-gradient(ellipse 72% 52% at 10% 4%, rgba(245, 126, 0, 0.055) 0%, transparent 56%),
        radial-gradient(ellipse 64% 52% at 92% 3%, rgba(0, 161, 224, 0.05) 0%, transparent 56%),
        linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* ---- Scroll-reveal base ----------------------------------- */
html { scroll-behavior: smooth; }

.rv-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--rv-ease), transform 0.8s var(--rv-ease);
    will-change: opacity, transform;
}
.rv-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.rv-reveal[data-delay="1"] { transition-delay: 0.08s; }
.rv-reveal[data-delay="2"] { transition-delay: 0.16s; }
.rv-reveal[data-delay="3"] { transition-delay: 0.24s; }
.rv-reveal[data-delay="4"] { transition-delay: 0.32s; }
.rv-reveal[data-delay="5"] { transition-delay: 0.40s; }
.rv-reveal[data-delay="6"] { transition-delay: 0.48s; }
@media (prefers-reduced-motion: reduce) {
    .rv-reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ---- Sticky nav glassmorphic on scroll -------------------- */
.navbar.rv-nav-scrolled {
    background: rgba(10, 14, 26, 0.85) !important;
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}
.navbar.rv-nav-scrolled .nav-link {
    color: #fff !important;
}

/* ---- Hero (dark, gradient, modern) ------------------------ */
.rv-hero {
    position: relative;
    background: var(--rv-gradient-hero);
    color: var(--rv-text-on-dark);
    overflow: hidden;
    padding: 140px 0 110px;
    min-height: 92vh;
    display: flex;
    align-items: center;
}
.rv-hero:before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 126, 0, 0.45) 0%, transparent 65%);
    filter: blur(40px);
    animation: rv-orb-1 16s ease-in-out infinite alternate;
    pointer-events: none;
}
.rv-hero:after {
    content: "";
    position: absolute;
    bottom: -300px;
    left: -150px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 161, 224, 0.25) 0%, transparent 65%);
    filter: blur(60px);
    animation: rv-orb-2 20s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes rv-orb-1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, 60px) scale(1.15); }
}
@keyframes rv-orb-2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, -40px) scale(1.1); }
}
.rv-hero .rv-hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 30%, transparent 80%);
    pointer-events: none;
}
.rv-hero .container { position: relative; z-index: 2; }
.rv-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    color: var(--rv-text-on-dark);
    padding: 8px 16px;
    border-radius: var(--rv-radius-pill);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 24px;
}
.rv-hero-eyebrow .rv-dot {
    width: 8px; height: 8px;
    background: var(--rv-primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--rv-primary-glow);
    animation: rv-pulse 2s infinite;
}
@keyframes rv-pulse {
    0%, 100% { box-shadow: 0 0 12px var(--rv-primary-glow); }
    50% { box-shadow: 0 0 24px var(--rv-primary), 0 0 4px var(--rv-primary); }
}
.rv-hero h1 {
    font-family: var(--rv-font-display);
    font-size: clamp(40px, 6.5vw, 84px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin: 0 0 24px;
    color: #fff;
}
.rv-hero h1 .rv-grad {
    background: var(--rv-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.rv-hero p.rv-hero-sub {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.7;
    color: var(--rv-text-on-dark-muted);
    max-width: 680px;
    margin: 0 0 36px;
    font-weight: 400;
    letter-spacing: 0.01em;
}
.rv-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.rv-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--rv-radius-pill);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.2px;
    text-decoration: none !important;
    cursor: pointer;
    border: none;
    transition: transform 0.25s var(--rv-ease), box-shadow 0.25s var(--rv-ease), background 0.25s var(--rv-ease);
}
.rv-btn-primary {
    background: var(--rv-gradient-primary);
    color: #fff;
    box-shadow: var(--rv-shadow-glow);
}
.rv-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(245, 126, 0, 0.4);
    color: #fff;
}
.rv-btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}
.rv-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    transform: translateY(-2px);
}
.rv-btn-outline {
    background: transparent;
    color: var(--rv-text-primary);
    border: 1.5px solid var(--rv-border-strong);
}
.rv-btn-outline:hover {
    background: var(--rv-primary-soft);
    color: var(--rv-primary);
    border-color: var(--rv-primary);
    transform: translateY(-2px);
}
.rv-btn-arrow {
    transition: transform 0.25s var(--rv-ease);
}
.rv-btn:hover .rv-btn-arrow { transform: translateX(4px); }

/* ---- Hero credential badges ---- */
.rv-hero-badges {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 56px;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.rv-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}
.rv-badge-item:hover { transform: translateY(-3px); }
.rv-badge-img {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px;
    backdrop-filter: blur(6px);
    transition: background 0.3s ease, border-color 0.3s ease;
}
.rv-badge-item:hover .rv-badge-img {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}
.rv-badge-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.rv-badge-item span {
    font-family: var(--rv-font-body);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: center;
    white-space: nowrap;
}

/* ============================================================
   HERO CERTIFICATIONS — enlarged (replaces small badges)
   ============================================================ */
.rv-hero-certs {
    margin-top: 56px;
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.rv-hero-certs-label {
    display: block;
    font-family: var(--rv-font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}
.rv-hero-certs-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.rv-cert-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 14px 22px 14px 14px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.3s var(--rv-ease), background 0.3s ease, border-color 0.3s ease;
}
.rv-cert-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
}
.rv-cert-img {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 13px;
    padding: 11px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}
.rv-cert-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.rv-cert-card span {
    font-family: var(--rv-font-display);
    font-size: 14.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.2px;
    white-space: nowrap;
}

/* ============================================================
   AI-AUGMENTED DELIVERY BAND — demoted from hero
   ============================================================ */
.rv-ai-band {
    background: var(--rv-bg-dark-2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
}
.rv-ai-band-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.rv-ai-band-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
    background: rgba(245, 126, 0, 0.12);
    border: 1px solid rgba(245, 126, 0, 0.3);
    color: var(--rv-primary);
    font-family: var(--rv-font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 9px 16px;
    border-radius: var(--rv-radius-pill);
    white-space: nowrap;
}
.rv-ai-band-tag i { font-size: 14px; }
.rv-ai-band-text {
    margin: 0;
    flex: 1;
    min-width: 280px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

/* AI-Augmented Delivery — hero capability strip (flush-left, divider above) */
.rv-hero-ai {
    max-width: 760px;
    margin-top: 46px;
    padding-top: 30px;
    border-top: 1px solid var(--rv-border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.rv-hero-ai-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--rv-font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rv-primary);
}
.rv-hero-ai-label i { font-size: 13px; }
.rv-hero-ai-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.rv-hero-ai-points li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-pill);
    padding: 8px 18px 8px 9px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--rv-heading);
    box-shadow: var(--rv-shadow-sm);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: transform .25s var(--rv-ease), border-color .25s var(--rv-ease), box-shadow .25s var(--rv-ease);
}
.rv-hero-ai-points li:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 126, 0, 0.4);
    box-shadow: var(--rv-shadow-md);
}
.rv-hero-ai-points li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: var(--rv-primary-soft);
    color: var(--rv-primary);
    font-size: 12px;
}
@media (max-width: 575px) {
    .rv-hero-ai { margin-top: 36px; padding-top: 24px; }
    .rv-hero-ai-points { gap: 10px; }
    .rv-hero-ai-points li { font-size: 12.5px; padding: 7px 14px 7px 8px; }
}

/* ============================================================
   PARTNER SLIDER — presentable auto-scroll logo strip
   ============================================================ */
.rv-partners { padding: 56px 0 64px; }
.rv-partners-head { text-align: center; margin-bottom: 32px; }
.rv-partners-label {
    display: inline-block;
    font-family: var(--rv-font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--rv-text-tertiary);
}
/* compact light band with a framed "trusted by" label */
.rv-section.rv-partners { padding-top: 66px; padding-bottom: 74px; }
.rv-partners-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 36px;
}
.rv-partners-head::before,
.rv-partners-head::after {
    content: "";
    height: 1px;
    width: 46px;
    flex: 0 0 auto;
    background: linear-gradient(90deg, transparent, var(--rv-border-strong));
}
.rv-partners-head::after {
    background: linear-gradient(90deg, var(--rv-border-strong), transparent);
}
.rv-partners-label { letter-spacing: 2px; }
@media (max-width: 575px) {
    .rv-section.rv-partners { padding-top: 48px; padding-bottom: 54px; }
    .rv-partners-head::before,
    .rv-partners-head::after { width: 22px; }
}
.rv-partner-wall {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.rv-partner-marquee {
    overflow: hidden;
    position: relative;
    padding: 2px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.rv-partner-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: rv-autoscroll 60s linear infinite;
    will-change: transform;
}
.rv-partner-track--reverse {
    animation-direction: reverse;
    animation-duration: 50s;
}
.rv-partner-wall:hover .rv-partner-track { animation-play-state: paused; }
.rv-partner-card {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 168px;
    height: 92px;
    padding: 16px 24px;
    background: #fff;
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-md);
    box-shadow: var(--rv-shadow-sm);
    transition: transform 0.3s var(--rv-ease), box-shadow 0.3s var(--rv-ease), border-color 0.3s ease;
}
.rv-partner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rv-shadow-md);
    border-color: var(--rv-border-strong);
}
.rv-partner-card img {
    max-width: 100%;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ============================================================
   WE OFFER — bento mosaic
   ============================================================ */
.rv-offer-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(210px, auto);
    gap: 22px;
}
.rv-offer-tile {
    position: relative;
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 34px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--rv-radius-lg);
    overflow: hidden;
    transition: transform 0.35s var(--rv-ease), background 0.35s ease, border-color 0.35s ease;
}
.rv-offer-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(245, 126, 0, 0.12) 0%, transparent 45%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.rv-offer-tile:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(245, 126, 0, 0.35);
}
.rv-offer-tile:hover::before { opacity: 1; }
.rv-offer-tile--feature {
    grid-column: span 3;
    grid-row: span 2;
    justify-content: space-between;
    padding: 42px;
    background: linear-gradient(160deg, rgba(245, 126, 0, 0.14) 0%, rgba(255, 255, 255, 0.04) 55%);
    border-color: rgba(245, 126, 0, 0.28);
}
.rv-offer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 16px;
    background: var(--rv-gradient-primary);
    color: #fff;
    font-size: 28px;
    box-shadow: 0 10px 24px rgba(245, 126, 0, 0.32);
}
.rv-offer-tile--feature .rv-offer-icon {
    width: 78px;
    height: 78px;
    font-size: 33px;
    border-radius: 20px;
}
.rv-offer-tile-body { position: relative; z-index: 1; }
.rv-offer-kicker {
    display: inline-block;
    font-family: var(--rv-font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--rv-primary);
    margin-bottom: 10px;
}
.rv-offer-tile h3 {
    font-family: var(--rv-font-display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.28;
    color: #fff;
    margin: 0 0 11px;
}
.rv-offer-tile--feature h3 {
    font-size: 31px;
    line-height: 1.2;
    margin-bottom: 15px;
}
.rv-offer-tile p {
    font-size: 15.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
}
.rv-offer-tile--feature p { font-size: 17.5px; line-height: 1.65; }
.rv-offer-tags {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    position: relative;
    z-index: 1;
}
.rv-offer-tags li {
    font-family: var(--rv-font-body);
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 13px;
    border-radius: var(--rv-radius-pill);
}
.rv-offer-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    align-self: flex-start;
    margin-top: 22px;
    font-family: var(--rv-font-display);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--rv-primary) !important;
    text-decoration: none !important;
}
.rv-offer-link:hover { color: #fff !important; }

/* ============================================================
   INDUSTRIES — interactive split showcase (rail + feature stage)
   ============================================================ */
.rv-ind-showcase {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 26px;
    margin-top: 10px;
    align-items: start;
}

/* ---- Left rail of industry tabs ---- */
.rv-ind-rail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.rv-ind-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 6px 14px;
    border: 1px solid transparent;
    border-radius: var(--rv-radius-md);
    background: transparent;
    cursor: pointer;
    text-align: left;
    color: var(--rv-text-secondary);
    transition: background 0.25s var(--rv-ease), border-color 0.25s var(--rv-ease), box-shadow 0.25s var(--rv-ease);
}
.rv-ind-tab:hover { background: var(--rv-bg-soft); color: var(--rv-heading); }
.rv-ind-tab.is-active {
    background: var(--rv-bg-card);
    border-color: var(--rv-border);
    color: var(--rv-heading);
    box-shadow: var(--rv-shadow-sm);
}
.rv-ind-tab-ic {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rv-primary-soft);
    color: var(--rv-primary);
    font-size: 15px;
    transition: background 0.25s var(--rv-ease), color 0.25s var(--rv-ease);
}
.rv-ind-tab.is-active .rv-ind-tab-ic { background: var(--rv-gradient-primary); color: #fff; }
.rv-ind-tab-name {
    flex: 1;
    font-family: var(--rv-font-display);
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.rv-ind-tab-arrow {
    font-size: 11px;
    color: var(--rv-primary);
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 0.25s var(--rv-ease), transform 0.25s var(--rv-ease);
}
.rv-ind-tab.is-active .rv-ind-tab-arrow { opacity: 1; transform: none; }

/* ---- Right feature stage ---- */
.rv-ind-stage { position: relative; min-height: 460px; }
.rv-ind-panel {
    display: none;
    flex-direction: column;
    min-height: 0;
    padding: 36px 40px;
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-lg);
    background:
        radial-gradient(circle at 92% 0%, rgba(245, 126, 0, 0.10), transparent 50%),
        var(--rv-bg-card);
    box-shadow: var(--rv-shadow-md);
    overflow: hidden;
}
.rv-ind-panel.is-active { display: flex; animation: rvIndFade 0.45s var(--rv-ease); }
@keyframes rvIndFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
}
.rv-ind-panel-bg {
    position: absolute;
    right: -8px;
    bottom: -22px;
    font-size: 170px;
    line-height: 1;
    color: var(--rv-primary);
    opacity: 0.045;
    pointer-events: none;
}

/* head row: icon + (kicker + title) */
.rv-ind-panel-head {
    position: relative;
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 20px;
}
.rv-ind-panel-ic {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rv-gradient-primary);
    color: #fff;
    font-size: 24px;
    box-shadow: var(--rv-shadow-glow);
}
.rv-ind-panel-kicker {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rv-primary);
    margin-bottom: 4px;
}
.rv-ind-panel h3 {
    font-family: var(--rv-font-display);
    font-size: 25px;
    font-weight: 700;
    color: var(--rv-heading);
    margin: 0;
    letter-spacing: -0.02em;
}
.rv-ind-panel-desc {
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: var(--rv-text-secondary);
    margin: 0 0 22px;
    max-width: 64ch;
}

/* "what we built" proof */
.rv-ind-panel-proof {
    position: relative;
    border-left: 3px solid var(--rv-primary);
    background: var(--rv-bg-soft);
    border-radius: 0 var(--rv-radius-md) var(--rv-radius-md) 0;
    padding: 14px 20px;
    margin-bottom: 18px;
}
.rv-ind-proof-label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rv-text-tertiary);
    margin-bottom: 5px;
}
.rv-ind-panel-proof p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--rv-heading);
    font-weight: 500;
}

/* tags */
.rv-ind-panel-tags {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.rv-ind-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--rv-text-secondary);
    background: var(--rv-bg-soft);
    border: 1px solid var(--rv-border);
    padding: 6px 13px;
    border-radius: var(--rv-radius-pill);
}

/* core capabilities (2-column) */
.rv-ind-panel-caps { position: relative; }
.rv-ind-caps-label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rv-text-tertiary);
    margin-bottom: 2px;
}
.rv-ind-panel-caps ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
}
.rv-ind-panel-caps li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 0;
    border-bottom: 1px solid var(--rv-border);
    font-size: 14px;
    line-height: 1.4;
    color: var(--rv-text-secondary);
}
.rv-ind-panel-caps li:nth-last-child(-n+2) { border-bottom: 0; }
.rv-ind-panel-caps li i {
    flex: 0 0 auto;
    margin-top: 3px;
    font-size: 13px;
    color: var(--rv-primary);
}

/* footer: delivery note + CTA */
.rv-ind-panel-foot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--rv-border);
}
.rv-ind-foot-note {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: var(--rv-text-tertiary);
}
.rv-ind-foot-note i { color: var(--rv-primary); font-size: 14px; }
.rv-ind-panel-foot .rv-card-link { position: relative; margin: 0; flex: 0 0 auto; }

@media (max-width: 991px) {
    .rv-ind-showcase { grid-template-columns: 1fr; gap: 16px; }
    .rv-ind-rail {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 6px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }
    .rv-ind-rail::-webkit-scrollbar { height: 4px; }
    .rv-ind-rail::-webkit-scrollbar-thumb { background: var(--rv-border-strong); border-radius: 4px; }
    .rv-ind-tab { flex: 0 0 auto; width: auto; scroll-snap-align: start; }
    .rv-ind-tab-arrow { display: none; }
    .rv-ind-stage { min-height: 0; }
}
@media (max-width: 575px) {
    .rv-ind-panel { padding: 26px 20px; }
    .rv-ind-panel h3 { font-size: 22px; }
    .rv-ind-panel-bg { font-size: 130px; }
    .rv-ind-panel-caps ul { grid-template-columns: 1fr; }
    .rv-ind-panel-caps li { border-bottom: 1px solid var(--rv-border); }
    .rv-ind-panel-caps li:last-child { border-bottom: 0; }
    .rv-ind-panel-foot { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ---- Rebrand responsive ---- */
@media (max-width: 991px) {
    .rv-offer-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
    .rv-offer-tile,
    .rv-offer-tile--feature { grid-column: span 1; grid-row: auto; }
    .rv-offer-tile--feature { grid-column: span 2; }
}
@media (max-width: 767px) {
    .rv-cert-card { padding: 12px 18px 12px 12px; gap: 12px; }
    .rv-cert-img { width: 58px; height: 58px; }
    .rv-cert-card span { font-size: 13px; }
    .rv-partner-wall { gap: 12px; }
    .rv-partner-track { gap: 14px; }
    .rv-partner-card { width: 138px; height: 78px; padding: 12px 16px; }
    .rv-partner-card img { max-height: 40px; }
    .rv-offer-tile--feature h3 { font-size: 23px; }
}
@media (max-width: 575px) {
    .rv-hero-certs-row { gap: 12px; }
    .rv-cert-card { flex: 1 1 100%; }
    .rv-offer-bento { grid-template-columns: 1fr; }
    .rv-offer-tile,
    .rv-offer-tile--feature { grid-column: span 1; }
    .rv-ai-band-text { font-size: 14px; }
}

/* ---- Stats bar ---- */
.rv-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--rv-radius-md);
    overflow: hidden;
    margin-top: 0;
}
.rv-stat {
    text-align: center;
    padding: 32px 16px;
    position: relative;
}
.rv-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
}
.rv-stat-number {
    font-family: var(--rv-font-display);
    font-size: 36px;
    font-weight: 800;
    background: var(--rv-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}
.rv-stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--rv-text-on-dark-muted);
    margin-top: 6px;
    letter-spacing: 0.3px;
}
@media (max-width: 767px) {
    .rv-stats-bar { grid-template-columns: repeat(2, 1fr); }
    .rv-stat:nth-child(2)::after { display: none; }
    .rv-stat { padding: 24px 12px; }
    .rv-stat-number { font-size: 28px; }
}

/* ---- Client logo marquee ---- */
.rv-logo-bar {
    padding: 40px 0 16px;
    text-align: center;
}
.rv-logo-bar-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}
.rv-logo-marquee {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    padding: 8px 0;
}
.rv-logo-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: rv-autoscroll 20s linear infinite;
}
.rv-logo-marquee:hover .rv-logo-track {
    animation-play-state: paused;
}
.rv-logo-pill {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 8px 18px;
    height: 46px;
    transition: background 0.3s, transform 0.3s;
    opacity: 0.5;
}
.rv-logo-pill:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}
.rv-logo-pill img {
    height: 26px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
}

/* Logo marquee on light backgrounds */
.rv-section:not(.rv-section-dark) .rv-logo-pill {
    background: #f1f3f6;
    opacity: 0.7;
}
.rv-section:not(.rv-section-dark) .rv-logo-pill:hover {
    opacity: 1;
    background: #e8ecf2;
}
.rv-section:not(.rv-section-dark) .rv-logo-bar-label {
    color: var(--rv-text-tertiary);
}

/* ---- Tech stack strip ---- */
.rv-tech-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.rv-tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.55;
    transition: opacity 0.3s, transform 0.3s;
}
.rv-tech-item:hover {
    opacity: 1;
    transform: translateY(-3px);
}
.rv-tech-item img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.rv-tech-item span {
    font-size: 10px;
    font-weight: 600;
    color: var(--rv-text-on-dark-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rv-hero-meta {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.rv-hero-meta-item .rv-meta-num {
    font-family: var(--rv-font-display);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.rv-hero-meta-item .rv-meta-label {
    font-size: 13px;
    color: var(--rv-text-on-dark-muted);
    margin-top: 6px;
    display: block;
}

/* ---- Stats strip ------------------------------------------ */
.rv-stats {
    background: #fff;
    padding: 50px 0;
    border-bottom: 1px solid var(--rv-border);
}
.rv-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.rv-stat-num {
    font-family: var(--rv-font-display);
    font-size: 44px;
    font-weight: 700;
    background: var(--rv-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}
.rv-stat-label {
    font-size: 14px;
    color: var(--rv-text-secondary);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ---- Section base ----------------------------------------- */
.rv-section {
    padding: 110px 0;
    position: relative;
}
.rv-section.rv-section-soft {
    background:
        radial-gradient(ellipse 58% 70% at 100% 0%, rgba(0, 161, 224, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 58% 70% at 0% 100%, rgba(245, 126, 0, 0.045) 0%, transparent 60%),
        #f2f5fb;
}
.rv-section.rv-section-dark {
    background: var(--rv-gradient-dark);
    color: var(--rv-text-on-dark);
}
.rv-section-dark h2 { color: #fff; }
.rv-section-dark p { color: var(--rv-text-on-dark-muted); }

.rv-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}
.rv-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--rv-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding: 7px 16px 7px 13px;
    border-radius: var(--rv-radius-pill);
    background: var(--rv-primary-soft);
    border: 1px solid rgba(245, 126, 0, 0.22);
}
.rv-section-eyebrow::before {
    content: "";
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rv-primary);
    box-shadow: 0 0 10px var(--rv-primary-glow);
}
/* more presence on the dark sections */
.rv-section-dark .rv-section-eyebrow {
    background: rgba(245, 126, 0, 0.14);
    border-color: rgba(245, 126, 0, 0.34);
}
.rv-section-head h2 {
    font-family: var(--rv-font-display);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--rv-text-primary);
    margin: 0 0 18px;
}
.rv-section-head h2 .rv-grad {
    background: var(--rv-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.rv-section-head p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--rv-text-secondary);
    margin: 0;
    letter-spacing: 0.005em;
}
.rv-section-head h3 {
    font-family: var(--rv-font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--rv-text-primary);
    margin: 0 0 14px;
}
.rv-section-dark .rv-section-head h2 { color: #fff; }
.rv-section-dark .rv-section-head h3 { color: #fff; }
.rv-section-dark .rv-section-head p { color: var(--rv-text-on-dark-muted); }

/* ---- Card grid (industries / capabilities) ---------------- */
.rv-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.rv-card-grid.rv-grid-2 { grid-template-columns: repeat(2, 1fr); }
.rv-card-grid.rv-grid-4 { grid-template-columns: repeat(4, 1fr); }

.rv-card {
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-lg);
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s var(--rv-ease), box-shadow 0.35s var(--rv-ease), border-color 0.35s var(--rv-ease);
    text-decoration: none !important;
    color: inherit;
    display: block;
}
.rv-card:before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--rv-gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--rv-ease);
}
.rv-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: var(--rv-shadow-lg);
    color: inherit;
}
.rv-card:hover:before { transform: scaleX(1); }

.rv-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--rv-primary-soft);
    color: var(--rv-primary);
    border-radius: var(--rv-radius-md);
    font-size: 26px;
    margin-bottom: 22px;
    transition: background 0.3s var(--rv-ease), color 0.3s var(--rv-ease), transform 0.3s var(--rv-ease);
}
.rv-card:hover .rv-card-icon {
    background: var(--rv-gradient-primary);
    color: #fff;
    transform: scale(1.06);
}
.rv-card-tag {
    display: inline-block;
    color: var(--rv-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.rv-card h3 {
    font-family: var(--rv-font-display);
    font-size: 21px;
    font-weight: 700;
    color: var(--rv-text-primary);
    margin: 0 0 12px;
    letter-spacing: -0.015em;
    line-height: 1.25;
}
.rv-card p.rv-card-desc {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--rv-text-secondary);
    margin: 0 0 20px;
    letter-spacing: 0.005em;
}
.rv-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}
.rv-card-list li {
    position: relative;
    padding: 6px 0 6px 22px;
    font-size: 14px;
    color: var(--rv-text-secondary);
    line-height: 1.55;
    letter-spacing: 0.005em;
}
.rv-card-list li:before {
    content: "";
    position: absolute;
    left: 0; top: 13px;
    width: 6px; height: 6px;
    background: var(--rv-primary);
    border-radius: 50%;
}
.rv-card-cta {
    color: var(--rv-primary);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s var(--rv-ease);
}
.rv-card:hover .rv-card-cta { gap: 12px; }

/* Salesforce blue variant */
.rv-card.rv-card-sf .rv-card-icon {
    background: rgba(0, 161, 224, 0.1);
    color: var(--rv-accent-blue);
}
.rv-card.rv-card-sf:hover .rv-card-icon {
    background: linear-gradient(135deg, #00a1e0 0%, #1798c1 100%);
    color: #fff;
}
.rv-card.rv-card-sf:before {
    background: linear-gradient(135deg, #00a1e0 0%, #1798c1 100%);
}
.rv-card-partner-badge {
    display: inline-block;
    background: var(--rv-accent-blue);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 4px 10px;
    border-radius: var(--rv-radius-pill);
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* ============================================================
   Core Engineering — numbered capability rows (dark section)
   ============================================================ */
.rv-capability-list {
    max-width: 1040px;
    margin: 0 auto;
}
.rv-capability-row {
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 36px;
    padding: 44px 30px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--rv-radius-md);
    transition: background 0.35s var(--rv-ease);
}
.rv-capability-row:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.rv-capability-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 56%;
    background: var(--rv-gradient-primary);
    border-radius: 0 3px 3px 0;
    transition: transform 0.4s var(--rv-ease);
}
.rv-capability-row:hover {
    background: rgba(255, 255, 255, 0.03);
}
.rv-capability-row:hover::before {
    transform: translateY(-50%) scaleY(1);
}
.rv-capability-index {
    font-family: var(--rv-font-display);
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    background: var(--rv-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-top: 4px;
}
.rv-capability-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.rv-capability-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: var(--rv-radius-md);
    background: rgba(245, 126, 0, 0.12);
    color: var(--rv-primary);
    font-size: 22px;
    transition: background 0.3s var(--rv-ease), color 0.3s var(--rv-ease), transform 0.3s var(--rv-ease);
}
.rv-capability-row:hover .rv-capability-icon {
    background: var(--rv-gradient-primary);
    color: #fff;
    transform: scale(1.06);
}
.rv-capability-body h3 {
    font-family: var(--rv-font-display);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.015em;
    line-height: 1.3;
}
.rv-capability-body > p {
    font-size: 15px;
    line-height: 1.72;
    color: var(--rv-text-on-dark-muted);
    margin: 0 0 22px;
    max-width: 780px;
}
.rv-capability-focus {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.rv-focus-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--rv-primary-3);
    margin-right: 6px;
}
.rv-focus-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.rv-focus-tags li {
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 13px;
    border-radius: var(--rv-radius-pill);
    transition: color 0.25s var(--rv-ease), background 0.25s var(--rv-ease), border-color 0.25s var(--rv-ease);
}
.rv-focus-tags li:hover {
    color: #fff;
    background: rgba(245, 126, 0, 0.14);
    border-color: rgba(245, 126, 0, 0.4);
}

/* ---- Services — stacked rows (What We Do) ----------------- */
.rv-svc-section { padding: 100px 0 80px; }

/* ---- Service card grid ---- */
.rv-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.rv-svc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 28px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--rv-radius-md);
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s var(--rv-ease), border-color 0.35s, box-shadow 0.35s, background 0.35s;
    overflow: hidden;
    cursor: pointer;
}
.rv-svc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 0%, rgba(245, 126, 0, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.rv-svc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 126, 0, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
    color: inherit;
}
.rv-svc-card:hover::before {
    opacity: 1;
}

.rv-svc-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--rv-accent), #ff9a2e);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(245, 126, 0, 0.25);
    transition: transform 0.3s var(--rv-ease), box-shadow 0.3s;
}
.rv-svc-card:hover .rv-svc-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(245, 126, 0, 0.35);
}
.rv-svc-icon i {
    font-size: 22px;
    color: #fff;
}

.rv-svc-num {
    font-family: var(--rv-font-display);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.rv-svc-card h3 {
    font-family: var(--rv-font-display);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.3;
    transition: color 0.3s;
}
.rv-svc-card:hover h3 {
    color: var(--rv-primary-3);
}

.rv-svc-card p {
    font-family: var(--rv-font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.65;
    flex: 1;
    text-align: left;
}

.rv-svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-family: var(--rv-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--rv-accent);
    letter-spacing: 0.3px;
    transition: gap 0.3s;
}
.rv-svc-card:hover .rv-svc-link {
    gap: 10px;
}
.rv-svc-link span {
    transition: transform 0.3s;
}
.rv-svc-card:hover .rv-svc-link span {
    transform: translateX(3px);
}

/* ---- Solutions industry grid ---- */
.rv-sol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.rv-sol-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.rv-sol-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 126, 0, 0.3);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.rv-sol-item i {
    font-size: 18px;
    color: var(--rv-accent);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}
.rv-sol-item span {
    font-family: var(--rv-font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* ============================================================
   AUTO-SCROLL CAROUSEL  (Industries + Testimonials)
   ============================================================ */
@keyframes rv-autoscroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.rv-autoscroll {
    overflow: hidden;
    position: relative;
    padding: 8px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}
.rv-autoscroll-track {
    display: flex;
    width: max-content;
    animation: rv-autoscroll linear infinite;
}
.rv-autoscroll:hover .rv-autoscroll-track {
    animation-play-state: paused;
}

/* Speed per section */
.rv-autoscroll-track--industries   { animation-duration: 35s; }
.rv-autoscroll-track--testimonials { animation-duration: 30s; }
.rv-autoscroll-track--work         { animation-duration: 60s; }
.rv-autoscroll-track--gallery      { animation-duration: 75s; }

/* Life at 5Exceptions — photo gallery marquee */
/* sits right after the (same-colour) Insights section — pull up to kill the doubled padding gap */
.rv-gallery-section { margin-top: -90px; padding-top: 44px; }
.rv-gallery-section .rv-section-head { margin-bottom: 34px; }
.rv-gallery-scroll { padding: 4px 0; }
.rv-gallery-card {
    flex: 0 0 auto;
    height: 300px;
    margin: 0 18px 0 0;
    border-radius: var(--rv-radius-md);
    overflow: hidden;
    background: var(--rv-bg-dark);
    box-shadow: var(--rv-shadow-md);
    border: 1px solid var(--rv-border);
}
.rv-gallery-card img {
    display: block;
    height: 100%;
    width: auto;
    object-fit: cover;
    transition: transform .6s var(--rv-ease);
}
.rv-gallery-card:hover img { transform: scale(1.05); }
@media (max-width: 575px) {
    .rv-gallery-card { height: 215px; margin-right: 13px; }
}

/* Featured Work carousel — full-photo portrait tiles (rectangular, zoom on hover) */
.rv-work-scroll .rv-work-card {
    flex: 0 0 400px;
    width: 400px;
    margin-right: 26px;
    border: none;
    border-radius: 4px;
    overflow: hidden;
    background: var(--rv-bg-dark);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
    transition: transform .45s var(--rv-ease), box-shadow .45s var(--rv-ease);
}
.rv-work-scroll .rv-work-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5);
    z-index: 2;
}
.rv-work-tile {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    text-decoration: none !important;
}
.rv-work-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--rv-ease);
}
.rv-work-scroll .rv-work-card:hover .rv-work-img { transform: scale(1.1); }
.rv-work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.15) 0%, rgba(10, 14, 26, 0.05) 28%, rgba(10, 14, 26, 0.55) 60%, rgba(10, 14, 26, 0.92) 100%);
    transition: background .4s ease;
}
.rv-work-scroll .rv-work-card:hover .rv-work-overlay {
    background: linear-gradient(180deg, rgba(245, 126, 0, 0.22) 0%, rgba(10, 14, 26, 0.10) 30%, rgba(10, 14, 26, 0.6) 62%, rgba(10, 14, 26, 0.94) 100%);
}
.rv-work-content {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 26px;
}
.rv-work-scroll .rv-work-tile-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 15px;
    background: var(--rv-gradient-primary);
    color: #fff;
    font-size: 23px;
    box-shadow: var(--rv-shadow-glow);
    margin-bottom: 16px;
    transition: transform .4s var(--rv-ease);
}
.rv-work-scroll .rv-work-card:hover .rv-work-tile-ic { transform: scale(1.08) rotate(-3deg); }
.rv-work-scroll .rv-work-content .rv-card-tag { margin: 0 0 8px; }
.rv-work-scroll .rv-work-content h3 {
    font-family: var(--rv-font-display);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.22;
    letter-spacing: -0.01em;
    -webkit-line-clamp: unset;
    min-height: 0;
}
.rv-work-scroll .rv-work-content p {
    font-size: 14.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.84);
    margin: 0 0 16px;
    min-height: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rv-work-scroll .rv-work-content .rv-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffb066;
    font-weight: 600;
    font-size: 14.5px;
}
.rv-work-scroll .rv-work-card:hover .rv-card-link i { transform: translateX(4px); }

/* scroll-guidance dots */
.rv-work-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
}
.rv-work-dot {
    width: 9px;
    height: 9px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.22);
    transition: width .35s var(--rv-ease), background .35s var(--rv-ease);
}
.rv-work-dot.is-active {
    width: 30px;
    background: var(--rv-primary);
}
@media (max-width: 575px) {
    .rv-work-scroll .rv-work-card { flex-basis: 330px; width: 330px; margin-right: 18px; }
}

/* ---- Industry verticals — image card grid ---- */
.rv-industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.rv-industry-card {
    border-radius: var(--rv-radius-md);
    overflow: hidden;
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    transition: transform 0.4s var(--rv-ease), box-shadow 0.4s var(--rv-ease), border-color 0.3s;
}
.rv-industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(13, 20, 36, 0.10);
    border-color: var(--rv-accent);
}
.rv-industry-img {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.rv-industry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--rv-ease);
}
.rv-industry-card:hover .rv-industry-img img {
    transform: scale(1.06);
}
.rv-industry-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,14,26,0) 40%, rgba(10,14,26,0.45) 100%);
    pointer-events: none;
}
.rv-industry-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--rv-accent), #ff9a2e);
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(245, 126, 0, 0.3);
}
.rv-industry-badge i {
    font-size: 16px;
    color: #fff;
}
.rv-industry-body {
    padding: 24px 24px 28px;
}
.rv-industry-body h3 {
    font-family: var(--rv-font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--rv-heading);
    margin: 0 0 14px;
}
.rv-industry-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.rv-industry-body ul li {
    position: relative;
    padding: 6px 0 6px 18px;
    font-size: 14px;
    color: var(--rv-text-secondary);
    line-height: 1.5;
}
.rv-industry-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rv-accent);
}

/* ---- Testimonial cards (inside carousel) ---- */
.rv-autoscroll .rv-testimonial-card {
    flex: 0 0 460px;
    margin-right: 30px;
}

@media (max-width: 991px) {
    .rv-industry-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
    .rv-svc-section { padding: 70px 0 50px; }
    .rv-svc-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .rv-svc-card h3 { font-size: 18px; }
    .rv-svc-card p { font-size: 13px; }
    .rv-sol-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .rv-sol-item { padding: 16px 18px; }
    .rv-sol-item span { font-size: 14px; }
    .rv-autoscroll .rv-testimonial-card { flex: 0 0 360px; }
    .rv-industry-img { height: 150px; }
}
@media (max-width: 575px) {
    .rv-industry-grid { grid-template-columns: 1fr; }
    .rv-svc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .rv-sol-grid { grid-template-columns: 1fr; }
    .rv-autoscroll .rv-testimonial-card { flex: 0 0 320px; }
}

/* ---- Feature Tiles (Apple-style What We Do) — LEGACY ------ */
.rv-tile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.rv-tile {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 56px 40px 0;
    transition: transform 0.4s var(--rv-ease);
}
.rv-tile:hover { transform: scale(1.01); }

/* Tile backgrounds — unique per service */
.rv-tile--software {
    background: linear-gradient(170deg, #1a1f35 0%, #0d1117 50%, #111827 100%);
}
.rv-tile--salesforce {
    background: linear-gradient(170deg, #0f1d2d 0%, #0a1628 50%, #0e1a2e 100%);
}
.rv-tile--ai {
    background: linear-gradient(170deg, #1a1510 0%, #171207 50%, #1c1a10 100%);
}
.rv-tile--modernize {
    background: linear-gradient(170deg, #0f1a1a 0%, #0a1515 50%, #0e1c1c 100%);
}

/* Text content */
.rv-tile-content {
    position: relative;
    z-index: 2;
}

.rv-tile-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.5);
}

.rv-tile-title {
    font-family: var(--rv-font-display);
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 12px;
}

.rv-tile .rv-tile-tagline {
    font-family: var(--rv-font-body);
    font-size: 17px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    max-width: 380px;
    margin: 0 auto 24px;
    text-align: center;
}

.rv-tile-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 17px;
    font-weight: 600;
    color: var(--rv-accent);
    text-decoration: none;
    transition: gap 0.3s var(--rv-ease), color 0.3s;
}
.rv-tile-cta:hover { gap: 10px; color: #ffa033; text-decoration: none; }
.rv-tile-cta .rv-btn-arrow { font-size: 18px; transition: transform 0.3s; }

/* Visual icon area */
.rv-tile-visual {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 30px 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rv-tile-visual i {
    font-size: 100px;
    opacity: 0.12;
    transition: opacity 0.5s, transform 0.5s var(--rv-ease);
}
.rv-tile:hover .rv-tile-visual i {
    opacity: 0.22;
    transform: scale(1.08);
}

/* Tile-specific icon colors */
.rv-tile--software .rv-tile-visual i { color: #818cf8; }
.rv-tile--salesforce .rv-tile-visual i { color: #00a1e0; }
.rv-tile--ai .rv-tile-visual i { color: var(--rv-accent); }
.rv-tile--modernize .rv-tile-visual i { color: #34d399; }

/* Glow pseudo-element behind the icon */
.rv-tile::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
    transition: opacity 0.5s;
}
.rv-tile:hover::after { opacity: 0.25; }

.rv-tile--software::after { background: #818cf8; }
.rv-tile--salesforce::after { background: #00a1e0; }
.rv-tile--ai::after { background: var(--rv-accent); }
.rv-tile--modernize::after { background: #34d399; }

/* Salesforce partner badge on tile */
.rv-tile-partner-badge {
    display: inline-block;
    background: var(--rv-accent-blue);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 5px 12px;
    border-radius: var(--rv-radius-pill);
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* Responsive — stack on mobile */
@media (max-width: 768px) {
    .rv-tile-grid { grid-template-columns: 1fr; gap: 10px; }
    .rv-tile { min-height: 360px; padding: 40px 28px 0; }
    .rv-tile-title { font-size: 28px; }
    .rv-tile-tagline { font-size: 15px; }
    .rv-tile-visual i { font-size: 80px; }
}

/* ---- Pillars (What Sets Us Apart) ------------------------- */
.rv-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.rv-pillar {
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-md);
    padding: 32px 26px;
    transition: transform 0.3s var(--rv-ease), border-color 0.3s var(--rv-ease), box-shadow 0.3s var(--rv-ease);
}
.rv-pillar:hover {
    transform: translateY(-4px);
    border-color: var(--rv-primary);
    box-shadow: var(--rv-shadow-md);
}
.rv-pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    background: var(--rv-gradient-primary);
    color: #fff;
    border-radius: 12px;
    font-size: 20px;
    margin-bottom: 18px;
    box-shadow: 0 6px 14px var(--rv-primary-glow);
}
.rv-pillar h4 {
    font-family: var(--rv-font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--rv-text-primary);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.rv-pillar p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--rv-text-secondary);
    margin: 0;
    letter-spacing: 0.005em;
}

/* ---- CTA banner (dark, full bleed) ----------------------- */
.rv-cta-banner {
    background: var(--rv-gradient-dark);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.rv-cta-banner:before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 800px; height: 800px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(245, 126, 0, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.rv-cta-banner .container { position: relative; z-index: 2; }
.rv-cta-banner h2 {
    font-family: var(--rv-font-display);
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 18px;
}
.rv-cta-banner h2 .rv-grad {
    background: var(--rv-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.rv-cta-banner p {
    font-size: 17px;
    color: var(--rv-text-on-dark-muted);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

/* ---- Page hero (lighter than full hero, used on sub-pages)  */
.rv-page-hero {
    background: var(--rv-gradient-hero);
    color: #fff;
    padding: 130px 0 90px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.rv-page-hero:before {
    content: "";
    position: absolute;
    top: -150px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 500px;
    background: radial-gradient(ellipse, rgba(245, 126, 0, 0.3) 0%, transparent 60%);
    filter: blur(40px);
    pointer-events: none;
}
.rv-page-hero .container { position: relative; z-index: 2; }
.rv-page-hero .rv-hero-eyebrow { margin-bottom: 22px; }
.rv-page-hero h1 {
    font-family: var(--rv-font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 18px;
}
.rv-page-hero h1 .rv-grad {
    background: var(--rv-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.rv-page-hero p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--rv-text-on-dark-muted);
    max-width: 720px;
    margin: 0 auto 32px;
    letter-spacing: 0.01em;
}

/* ---- Process / Engagement steps -------------------------- */
.rv-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: step;
}
.rv-step {
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-md);
    padding: 28px 22px;
    position: relative;
    transition: transform 0.3s var(--rv-ease), border-color 0.3s var(--rv-ease);
}
.rv-step:hover {
    transform: translateY(-4px);
    border-color: var(--rv-primary);
}
.rv-step-num {
    font-family: var(--rv-font-display);
    font-size: 48px;
    font-weight: 700;
    background: var(--rv-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 14px;
}
.rv-step h4 {
    font-family: var(--rv-font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--rv-text-primary);
    margin: 0 0 6px;
}
.rv-step .rv-step-time {
    color: var(--rv-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.rv-step p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--rv-text-secondary);
    margin: 0;
}

/* ---- Step icons & connector line ---- */
.rv-step-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 126, 0, 0.15), rgba(245, 126, 0, 0.05));
    border: 1px solid rgba(245, 126, 0, 0.15);
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 18px;
    color: var(--rv-primary);
}
.rv-section-dark .rv-step-icon {
    background: linear-gradient(135deg, rgba(245, 126, 0, 0.2), rgba(245, 126, 0, 0.06));
    border-color: rgba(245, 126, 0, 0.2);
    color: var(--rv-primary-3);
}
.rv-steps-connected {
    position: relative;
}
.rv-steps-connected .rv-step::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -12px;
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, var(--rv-primary), transparent);
    opacity: 0.35;
    z-index: 1;
}
.rv-steps-connected .rv-step:last-child::after {
    display: none;
}
@media (max-width: 991px) {
    .rv-steps-connected .rv-step::after { display: none; }
}

/* ---- AI Governance — professional icon card grid ---------- */
.rv-governance-section {
    background: var(--rv-bg-soft);
}
.rv-gov-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.rv-gov-card {
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s var(--rv-ease), box-shadow 0.35s var(--rv-ease), border-color 0.35s;
}
.rv-gov-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 3px;
    background: var(--rv-gradient-primary);
    transition: width 0.5s var(--rv-ease);
}
.rv-gov-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rv-shadow-lg);
    border-color: rgba(245, 126, 0, 0.2);
}
.rv-gov-card:hover::before { width: 100%; }
.rv-gov-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(245, 126, 0, 0.1) 0%, rgba(247, 148, 43, 0.06) 100%);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: background 0.3s var(--rv-ease);
}
.rv-gov-card:hover .rv-gov-icon {
    background: linear-gradient(135deg, var(--rv-primary) 0%, var(--rv-primary-2) 100%);
}
.rv-gov-icon i {
    font-size: 22px;
    color: var(--rv-primary);
    transition: color 0.3s var(--rv-ease);
}
.rv-gov-card:hover .rv-gov-icon i { color: #fff; }
.rv-gov-card h4 {
    font-family: var(--rv-font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--rv-text-primary);
    margin: 0 0 10px;
}
.rv-gov-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--rv-text-secondary);
    margin: 0;
    letter-spacing: 0.005em;
}
@media (max-width: 991px) {
    .rv-gov-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .rv-gov-grid { grid-template-columns: 1fr; }
}

/* ---- HITL — dark showcase section with step cards --------- */
.rv-hitl-section {
    background: var(--rv-gradient-dark);
}
.rv-hitl-section .rv-section-head h2 { color: #fff; }
.rv-hitl-section .rv-section-head p { color: var(--rv-text-on-dark-muted); }
.rv-hitl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.rv-hitl-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--rv-radius-lg);
    padding: 34px 26px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s var(--rv-ease), border-color 0.35s, box-shadow 0.35s;
}
.rv-hitl-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--rv-gradient-primary);
    opacity: 0;
    transition: opacity 0.35s var(--rv-ease);
}
.rv-hitl-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 126, 0, 0.3);
    box-shadow: 0 16px 40px rgba(245, 126, 0, 0.12);
}
.rv-hitl-card:hover::after { opacity: 1; }
.rv-hitl-num {
    font-family: var(--rv-font-display);
    font-size: 42px;
    font-weight: 800;
    background: var(--rv-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.5;
    transition: opacity 0.35s;
}
.rv-hitl-card:hover .rv-hitl-num { opacity: 1; }
.rv-hitl-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(245, 126, 0, 0.12);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    transition: background 0.3s var(--rv-ease);
}
.rv-hitl-card:hover .rv-hitl-icon {
    background: var(--rv-primary);
}
.rv-hitl-icon i {
    font-size: 20px;
    color: var(--rv-primary);
    transition: color 0.3s var(--rv-ease);
}
.rv-hitl-card:hover .rv-hitl-icon i { color: #fff; }
.rv-hitl-card h4 {
    font-family: var(--rv-font-display);
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}
.rv-hitl-risk {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: var(--rv-radius-pill);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.rv-hitl-risk-high { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.rv-hitl-risk-medium { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
.rv-hitl-risk-low { background: rgba(52, 211, 153, 0.15); color: #34d399; }
.rv-hitl-risk-auto { background: rgba(96, 165, 250, 0.15); color: #60a5fa; }
.rv-hitl-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--rv-text-on-dark-muted);
    margin: 0;
}
@media (max-width: 991px) {
    .rv-hitl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .rv-hitl-grid { grid-template-columns: 1fr; }
    .rv-hitl-num { font-size: 32px; }
}

/* ---- Footer breathing room before footer ----------------- */
.rv-bottom-gap { padding-bottom: 0; }

/* ============================================================
   EXTRA ANIMATIONS & EFFECTS
   ============================================================ */

/* Gentle floating motion for accent elements */
.rv-float { animation: rv-float 5s ease-in-out infinite; }
.rv-float-slow { animation: rv-float 9s ease-in-out infinite; }
@keyframes rv-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Gradient shimmer on text */
.rv-shimmer {
    background: linear-gradient(90deg, var(--rv-primary) 0%, var(--rv-primary-3) 30%, #fff 50%, var(--rv-primary-3) 70%, var(--rv-primary) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rv-shimmer 6s linear infinite;
}
@keyframes rv-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Soft pulse glow on accent dots */
@keyframes rv-glow-pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--rv-primary-glow); }
    50% { box-shadow: 0 0 28px 6px var(--rv-primary-glow); }
}

/* Marquee strip for credentials */
.rv-marquee {
    overflow: hidden;
    padding: 18px 0;
    background: var(--rv-bg-card);
    border-top: 1px solid var(--rv-border);
    border-bottom: 1px solid var(--rv-border);
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.rv-marquee-track {
    display: flex;
    gap: 52px;
    width: max-content;
    animation: rv-marquee 38s linear infinite;
    align-items: center;
}
.rv-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--rv-font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--rv-text-secondary);
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.rv-marquee-item i {
    color: var(--rv-primary);
    font-size: 18px;
}
@keyframes rv-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Tilt-ready cards (pair with .rv-tilt class) */
.rv-tilt {
    transition: transform 0.3s var(--rv-ease), box-shadow 0.3s var(--rv-ease);
    transform-style: preserve-3d;
}

/* Reveal variants */
.rv-reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity 0.8s var(--rv-ease), transform 0.8s var(--rv-ease);
}
.rv-reveal-left.is-visible { opacity: 1; transform: translateX(0); }
.rv-reveal-right {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity 0.8s var(--rv-ease), transform 0.8s var(--rv-ease);
}
.rv-reveal-right.is-visible { opacity: 1; transform: translateX(0); }
.rv-reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s var(--rv-ease), transform 0.8s var(--rv-ease);
}
.rv-reveal-scale.is-visible { opacity: 1; transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
    .rv-float, .rv-float-slow, .rv-shimmer, .rv-marquee-track {
        animation: none;
    }
    .rv-reveal-left, .rv-reveal-right, .rv-reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================================
   CORE VALUES (about page)
   ============================================================ */
.rv-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.rv-value {
    display: flex;
    gap: 22px;
    padding: 28px 26px;
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-md);
    transition: transform 0.3s var(--rv-ease), border-color 0.3s var(--rv-ease), box-shadow 0.3s var(--rv-ease);
}
.rv-value:hover {
    transform: translateY(-4px);
    border-color: var(--rv-primary);
    box-shadow: var(--rv-shadow-md);
}
.rv-value-icon {
    flex-shrink: 0;
    width: 54px; height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rv-gradient-primary);
    color: #fff;
    border-radius: 12px;
    font-size: 22px;
    box-shadow: 0 6px 14px var(--rv-primary-glow);
}
.rv-value-body h4 {
    font-family: var(--rv-font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--rv-text-primary);
    margin: 0 0 8px;
}
.rv-value-body p {
    color: var(--rv-text-secondary);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   TEAM cards (about page)
   ============================================================ */
.rv-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.rv-team-card {
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-md);
    padding: 32px 26px;
    text-align: center;
    transition: transform 0.3s var(--rv-ease), box-shadow 0.3s var(--rv-ease);
}
.rv-team-card:hover { transform: translateY(-6px); box-shadow: var(--rv-shadow-md); }
.rv-team-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: var(--rv-bg-soft);
    border: 3px solid transparent;
    background-clip: padding-box;
    overflow: hidden;
    position: relative;
}
.rv-team-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.rv-team-name {
    font-family: var(--rv-font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--rv-text-primary);
    margin: 0 0 4px;
}
.rv-team-role {
    color: var(--rv-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}
.rv-team-bio {
    color: var(--rv-text-secondary);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0 0 16px;
}
.rv-team-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--rv-primary-soft);
    color: var(--rv-primary);
    text-decoration: none;
    transition: background 0.25s var(--rv-ease), color 0.25s var(--rv-ease);
}
.rv-team-social:hover {
    background: var(--rv-gradient-primary);
    color: #fff;
}

/* ============================================================
   SERVICES (split row pattern - icon + text)
   ============================================================ */
.rv-service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}
.rv-service-row:nth-child(even) .rv-service-text { order: 2; }
.rv-service-row:nth-child(even) .rv-service-visual { order: 1; }
.rv-service-text h3 {
    font-family: var(--rv-font-display);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    color: var(--rv-text-primary);
    margin: 12px 0 18px;
    line-height: 1.18;
    letter-spacing: -0.015em;
}
.rv-service-text h3 .rv-grad {
    background: var(--rv-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.rv-service-text > p {
    color: var(--rv-text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 22px;
    letter-spacing: 0.005em;
}
.rv-service-text .rv-card-tag { margin-bottom: 0; }
.rv-service-visual {
    background: var(--rv-gradient-hero);
    border-radius: var(--rv-radius-lg);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--rv-shadow-lg);
}
.rv-service-visual:before {
    content: "";
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle at 30% 40%, rgba(245, 126, 0, 0.3), transparent 60%);
    pointer-events: none;
}
.rv-service-visual-icon {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 54px;
}

/* Service highlights grid */
.rv-service-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    position: relative;
    z-index: 2;
}
.rv-sh-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 24px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.35s ease;
}
.rv-sh-item:hover {
    background: rgba(245, 126, 0, 0.12);
    border-color: rgba(245, 126, 0, 0.3);
    transform: translateY(-4px);
}
.rv-sh-item i {
    font-size: 28px;
    color: var(--rv-primary);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(245, 126, 0, 0.1);
}
.rv-sh-item span {
    font-family: var(--rv-font-display);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

/* ============================================================
   SOLUTIONS — image-based visual variant
   ============================================================ */
.rv-solution-visual {
    border-radius: var(--rv-radius-lg);
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1a1c2e 0%, #0d0e18 100%);
    box-shadow: var(--rv-shadow-lg);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.rv-solution-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--rv-radius-lg);
    border: 1px solid rgba(245, 126, 0, 0.15);
    pointer-events: none;
    z-index: 2;
}
.rv-solution-visual::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -40%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(245, 126, 0, 0.12), transparent 70%);
    pointer-events: none;
}
.rv-solution-img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.5s var(--rv-ease);
}
.rv-solution-visual:hover .rv-solution-img {
    transform: scale(1.04);
}
.rv-solution-subtitle {
    font-family: var(--rv-font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--rv-primary);
    margin: 0 0 16px;
    letter-spacing: 0.01em;
    opacity: 0.9;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
/* .rv-testimonial-grid — now handled by .rv-autoscroll carousel */
.rv-testimonial-card {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--rv-radius-lg);
    overflow: hidden;
    transition: transform 0.35s var(--rv-ease), border-color 0.35s;
}
.rv-testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 126, 0, 0.25);
}
.rv-testimonial-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}
.rv-testimonial-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.rv-testimonial-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 26px 28px;
}
.rv-testimonial-quote {
    font-family: var(--rv-font-body);
    font-size: 16px;
    line-height: 1.68;
    color: var(--rv-text-on-dark-muted);
    margin: 0 0 22px;
    font-style: italic;
    letter-spacing: 0.005em;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rv-testimonial-quote::before {
    content: '\201C';
    font-size: 38px;
    line-height: 0;
    vertical-align: -9px;
    margin-right: 3px;
    color: var(--rv-primary);
    font-style: normal;
}
.rv-testimonial-author h4 {
    font-family: var(--rv-font-display);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px;
}
.rv-testimonial-author span {
    font-size: 14px;
    color: var(--rv-text-on-dark-muted);
    opacity: 0.8;
}
/* author row with avatar (shared by video + text cards) — pinned to card bottom */
.rv-testimonial-author {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: auto;
    padding-top: 18px;
}
.rv-testimonial-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--rv-gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--rv-font-display);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 16px rgba(245, 126, 0, 0.32);
}
.rv-testimonial-stars {
    display: flex;
    gap: 4px;
    font-size: 14px;
    margin-bottom: 16px;
}
.rv-testimonial-stars i { color: var(--rv-primary); }

/* branded "quote panel" media for text reviews — matches the video's 16:9 block */
.rv-testimonial-media--quote {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 22%, rgba(245, 126, 0, 0.24), transparent 55%),
        linear-gradient(150deg, #1b2138 0%, #0c1020 100%);
}
.rv-testimonial-media--quote::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1.5px);
    background-size: 18px 18px;
    pointer-events: none;
}
.rv-testimonial-media--quote i {
    position: relative;
    font-size: 58px;
    color: rgba(245, 126, 0, 0.95);
    filter: drop-shadow(0 6px 18px rgba(245, 126, 0, 0.35));
}

/* ── "Our Clients Say" — manual scroll carousel (no auto-scroll) ── */
.rv-tcarousel {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    margin-top: 6px;
    padding-bottom: 6px;
}
.rv-tcarousel::-webkit-scrollbar { display: none; }
.rv-tcarousel.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.rv-tcarousel.is-dragging * { pointer-events: none; }
/* graceful edge fades — only where there's more to scroll (set by JS) */
.rv-tcarousel.can-left {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 9%);
    mask-image: linear-gradient(to right, transparent 0, #000 9%);
}
.rv-tcarousel.can-right {
    -webkit-mask-image: linear-gradient(to left, transparent 0, #000 9%);
    mask-image: linear-gradient(to left, transparent 0, #000 9%);
}
.rv-tcarousel.can-left.can-right {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 9%, #000 91%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 9%, #000 91%, transparent 100%);
}
.rv-tcarousel-track {
    display: flex;
    gap: 26px;
    width: max-content;
    padding: 4px 2px;
}
.rv-tcarousel .rv-testimonial-card {
    flex: 0 0 400px;
    width: 400px;
    scroll-snap-align: start;
}
/* dots */
.rv-tcarousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin-top: 30px;
}
.rv-tdot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 99px;
    background: var(--rv-border-strong);
    cursor: pointer;
    transition: width .35s var(--rv-ease), background .35s var(--rv-ease);
}
.rv-tdot:hover { background: var(--rv-text-tertiary); }
.rv-tdot.is-active { width: 30px; background: var(--rv-primary); }
@media (max-width: 575px) {
    .rv-tcarousel .rv-testimonial-card { flex-basis: 300px; width: 300px; }
    .rv-tcarousel-track { gap: 18px; }
}

/* testimonial grid breakpoints — now handled by .rv-autoscroll carousel */

/* ---- Testimonials — light-bg overrides (inside rv-section-soft) */
.rv-section-soft .rv-testimonial-card {
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    box-shadow: var(--rv-shadow-sm);
}
.rv-section-soft .rv-testimonial-card:hover {
    border-color: rgba(245, 126, 0, 0.35);
    box-shadow: var(--rv-shadow-md);
}
.rv-section-soft .rv-testimonial-quote {
    color: var(--rv-text-secondary);
}
.rv-section-soft .rv-testimonial-author h4 {
    color: var(--rv-text-primary);
}
.rv-section-soft .rv-testimonial-author span {
    color: var(--rv-text-tertiary);
    opacity: 1;
}

/* ============================================================
   CONTACT
   ============================================================ */
.rv-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}
.rv-contact-info h3 {
    font-family: var(--rv-font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--rv-text-primary);
    margin: 0 0 14px;
}
.rv-contact-info p {
    color: var(--rv-text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 28px;
}
.rv-contact-method {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid var(--rv-border);
}
.rv-contact-method:last-child { border-bottom: 1px solid var(--rv-border); }
.rv-contact-method i {
    flex-shrink: 0;
    width: 42px; height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rv-primary-soft);
    color: var(--rv-primary);
    border-radius: 10px;
    font-size: 16px;
}
.rv-contact-method-body strong {
    display: block;
    color: var(--rv-text-primary);
    font-family: var(--rv-font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.rv-contact-method-body span,
.rv-contact-method-body a {
    color: var(--rv-text-secondary);
    font-size: 14.5px;
    line-height: 1.55;
    text-decoration: none;
}
.rv-contact-method-body a:hover { color: var(--rv-primary); }
.rv-contact-form-wrap {
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-lg);
    padding: 40px 36px;
    box-shadow: var(--rv-shadow-md);
}
.rv-contact-form-wrap h3 {
    font-family: var(--rv-font-display);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px;
}
.rv-contact-form-wrap > p {
    color: var(--rv-text-secondary);
    font-size: 15px;
    margin: 0 0 24px;
}
.rv-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.rv-form-field { margin-bottom: 16px; }
.rv-form-field label {
    display: block;
    font-family: var(--rv-font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--rv-text-secondary);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.rv-form-field input,
.rv-form-field textarea,
.rv-form-field select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--rv-border);
    border-radius: 10px;
    font-family: var(--rv-font-body);
    font-size: 15px;
    color: var(--rv-text-primary);
    background: #fff;
    transition: border-color 0.25s var(--rv-ease), box-shadow 0.25s var(--rv-ease);
}
.rv-form-field input:focus,
.rv-form-field textarea:focus,
.rv-form-field select:focus {
    outline: none;
    border-color: var(--rv-primary);
    box-shadow: 0 0 0 4px var(--rv-primary-soft);
}
.rv-form-field textarea {
    min-height: 130px;
    resize: vertical;
}

/* ============================================================
   FOOTER (modern)
   ============================================================ */
.rv-footer {
    background: var(--rv-gradient-dark);
    color: var(--rv-text-on-dark-muted);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}
.rv-footer:before {
    content: "";
    position: absolute;
    top: -300px; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 500px;
    background: radial-gradient(ellipse, rgba(245, 126, 0, 0.18) 0%, transparent 60%);
    filter: blur(40px);
    pointer-events: none;
}
.rv-footer .container { position: relative; z-index: 2; }
.rv-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.rv-footer-brand img {
    height: 44px;
    margin-bottom: 22px;
    filter: brightness(0) invert(1);
}
.rv-footer-brand p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--rv-text-on-dark-muted);
    margin: 0 0 22px;
    max-width: 340px;
}
.rv-footer-col h5 {
    font-family: var(--rv-font-display);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 18px;
}
.rv-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.rv-footer-col li { margin: 0 0 10px; }
.rv-footer-col a {
    color: var(--rv-text-on-dark-muted);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.25s var(--rv-ease), padding-left 0.25s var(--rv-ease);
}
.rv-footer-col a:hover {
    color: var(--rv-primary);
    padding-left: 4px;
}
.rv-footer-address {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--rv-text-on-dark-muted);
}
.rv-footer-address i {
    color: var(--rv-primary);
    margin-top: 3px;
    flex-shrink: 0;
}
.rv-footer-bottom {
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 13.5px;
    color: var(--rv-text-on-dark-muted);
}
.rv-footer-bottom a { color: var(--rv-text-on-dark-muted); margin-left: 18px; text-decoration: none; }
.rv-footer-bottom a:hover { color: var(--rv-primary); }
.rv-social-row {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}
.rv-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: background 0.25s var(--rv-ease), transform 0.25s var(--rv-ease);
    text-decoration: none;
    font-size: 15px;
}
.rv-social:hover {
    background: var(--rv-gradient-primary);
    transform: translateY(-3px);
    color: #fff;
}

@media (max-width: 991px) {
    .rv-values-grid { grid-template-columns: 1fr; }
    .rv-team-grid { grid-template-columns: repeat(2, 1fr); }
    .rv-service-row { grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; }
    .rv-service-row:nth-child(even) .rv-service-text { order: 2; }
    .rv-service-row:nth-child(even) .rv-service-visual { order: 1; }
    .rv-service-visual { aspect-ratio: auto; padding: 40px 30px; }
    .rv-service-visual-icon { width: 90px; height: 90px; font-size: 38px; }
    .rv-service-highlights { gap: 12px; }
    .rv-sh-item { padding: 18px 12px; }
    .rv-sh-item i { font-size: 24px; width: 48px; height: 48px; }
    .rv-sh-item span { font-size: 13px; }
    .rv-solution-visual { aspect-ratio: auto; padding: 20px; }
    .rv-service-row:nth-child(even) .rv-solution-visual { order: 1; }
    .rv-contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .rv-form-row { grid-template-columns: 1fr; gap: 0; }
    .rv-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 575px) {
    .rv-team-grid { grid-template-columns: 1fr; }
    .rv-footer-grid { grid-template-columns: 1fr; }
    .rv-contact-form-wrap { padding: 28px 22px; }
    .rv-marquee-item { font-size: 13px; }
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 991px) {
    .rv-hero { padding: 110px 0 80px; min-height: auto; }
    .rv-hero h1 { font-size: clamp(34px, 8vw, 56px); }
    .rv-section { padding: 80px 0; }
    .rv-section-head { margin-bottom: 50px; }
    .rv-card-grid,
    .rv-card-grid.rv-grid-2,
    .rv-card-grid.rv-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .rv-capability-row { grid-template-columns: 80px 1fr; gap: 24px; padding: 36px 16px; }
    .rv-capability-index { font-size: 38px; }
    .rv-pillar-grid { grid-template-columns: repeat(2, 1fr); }
    .rv-steps { grid-template-columns: repeat(2, 1fr); }
    .rv-stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .rv-cta-banner { padding: 70px 0; }
    .rv-page-hero { padding: 100px 0 70px; }
    .rv-hero-meta { gap: 18px; margin-top: 40px; }
    .rv-hero-meta-item .rv-meta-num { font-size: 22px; }
    .rv-hero-badges { gap: 28px; margin-top: 40px; padding-top: 28px; }
    .rv-badge-img { width: 64px; height: 64px; padding: 10px; border-radius: 14px; }
}
@media (max-width: 575px) {
    .rv-hero { padding: 90px 0 60px; }
    .rv-hero h1 { font-size: clamp(30px, 9vw, 44px); }
    .rv-section { padding: 60px 0; }
    .rv-section-head h2 { font-size: 26px; }
    .rv-card-grid,
    .rv-card-grid.rv-grid-2,
    .rv-card-grid.rv-grid-4,
    .rv-pillar-grid,
    .rv-steps { grid-template-columns: 1fr; }
    .rv-card { padding: 28px 22px; }
    .rv-capability-row { grid-template-columns: 1fr; gap: 14px; padding: 32px 14px; }
    .rv-capability-index { font-size: 32px; }
    .rv-capability-head { gap: 12px; margin-bottom: 14px; }
    .rv-capability-icon { width: 46px; height: 46px; font-size: 19px; }
    .rv-capability-body h3 { font-size: 19px; }
    .rv-stats-row { grid-template-columns: repeat(2, 1fr); }
    .rv-stat-num { font-size: 32px; }
    .rv-btn { padding: 12px 22px; font-size: 14px; }
    .rv-cta-row { flex-direction: column; align-items: stretch; }
    .rv-cta-row .rv-btn { justify-content: center; }
    .rv-hero-badges { gap: 16px; margin-top: 32px; padding-top: 24px; flex-wrap: wrap; }
    .rv-badge-img { width: 56px; height: 56px; padding: 8px; border-radius: 12px; }
    .rv-badge-item span { font-size: 10px; letter-spacing: 0.5px; }
}

/* ============================================================
   HOMEPAGE ANIMATIONS
   ============================================================ */

/* Pulsing dot on hero eyebrow */
.rv-dot-pulse {
    animation: rv-pulse 2s ease-in-out infinite;
}
@keyframes rv-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(245, 126, 0, 0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(245, 126, 0, 0); }
}

/* Gradient shimmer on hero heading */
.rv-grad-animate {
    background-size: 200% auto !important;
    animation: rv-grad-shift 4s ease-in-out infinite;
}
@keyframes rv-grad-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Glowing CTA button */
.rv-btn-glow {
    animation: rv-glow 3s ease-in-out infinite;
}
@keyframes rv-glow {
    0%, 100% { box-shadow: 0 6px 18px rgba(245, 126, 0, 0.32); }
    50% { box-shadow: 0 8px 32px rgba(245, 126, 0, 0.55), 0 0 60px rgba(245, 126, 0, 0.15); }
}

/* Card icon float animation */
.rv-card-icon {
    animation: rv-icon-float 3.5s ease-in-out infinite;
}
.rv-card:nth-child(2) .rv-card-icon { animation-delay: 0.5s; }
.rv-card:nth-child(3) .rv-card-icon { animation-delay: 1s; }
.rv-card:nth-child(4) .rv-card-icon { animation-delay: 0.3s; }
.rv-card:nth-child(5) .rv-card-icon { animation-delay: 0.8s; }
.rv-card:nth-child(6) .rv-card-icon { animation-delay: 1.2s; }
@keyframes rv-icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Pillar icon subtle rotate on hover */
.rv-pillar-icon {
    transition: transform 0.5s var(--rv-ease), box-shadow 0.3s var(--rv-ease);
}
.rv-pillar:hover .rv-pillar-icon {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 8px 28px rgba(245, 126, 0, 0.25);
}

/* Stats glow on count */
.rv-stat-num {
    text-shadow: 0 0 30px rgba(245, 126, 0, 0.0);
    transition: text-shadow 0.6s var(--rv-ease);
}
.rv-stat-num.is-counting {
    text-shadow: 0 0 40px rgba(245, 126, 0, 0.4);
}

/* Step connector line animation */
.rv-step {
    position: relative;
}
.rv-step::after {
    content: '';
    position: absolute;
    top: 38px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: var(--rv-gradient-primary);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--rv-ease) 0.4s, opacity 0.3s var(--rv-ease) 0.4s;
}
.rv-step.is-visible::after {
    opacity: 0.5;
    transform: scaleX(1);
}
.rv-step:last-child::after { display: none; }
@media (max-width: 767px) {
    .rv-step::after { display: none; }
}

/* Smooth reveal variants: scale-up for cards */
.rv-reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.7s var(--rv-ease), transform 0.7s var(--rv-ease);
    will-change: opacity, transform;
}
.rv-reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Section eyebrow slide-in from left */
.rv-section-eyebrow {
    position: relative;
}
/* underline removed — the badge now carries the label */
@keyframes rv-underline-in {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Hero grid subtle animation */
.rv-hero-grid {
    animation: rv-grid-drift 20s ease-in-out infinite alternate;
}
@keyframes rv-grid-drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-15px, -10px) scale(1.04); }
}

/* Card top-bar accent width animation on hover */
.rv-card::before {
    transition: width 0.5s var(--rv-ease), opacity 0.3s var(--rv-ease) !important;
}
.rv-card:hover::before {
    width: 100% !important;
}

/* Governance card icon lift */
.rv-gov-card {
    transition: transform 0.35s var(--rv-ease), box-shadow 0.35s var(--rv-ease), border-color 0.35s;
}

/* HITL card staggered entrance */
.rv-hitl-card {
    transition: transform 0.35s var(--rv-ease), border-color 0.35s, box-shadow 0.35s;
}

/* Smooth number rolling glow */
@keyframes rv-num-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(245, 126, 0, 0); }
    50% { text-shadow: 0 0 40px rgba(245, 126, 0, 0.5); }
}

/* CTA banner entrance */
.rv-cta-banner .rv-reveal.is-visible h2 {
    animation: rv-cta-entrance 0.8s var(--rv-ease) both;
}
@keyframes rv-cta-entrance {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============================================================
   DARK SECTION — glassmorphism card, step & pillar overrides
   Matches the hero section's dark premium aesthetic
   ============================================================ */

/* Ambient orange glow on dark sections (echoes hero radial) */
.rv-section.rv-section-dark { overflow: hidden; }
.rv-section.rv-section-dark::before {
    content: "";
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(245, 126, 0, 0.1) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.rv-section.rv-section-dark > .container { position: relative; z-index: 1; }

/* -- Cards inside dark sections -- */
.rv-section-dark .rv-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.rv-section-dark .rv-card:hover {
    border-color: rgba(245, 126, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(245, 126, 0, 0.08);
    transform: translateY(-8px);
}
.rv-section-dark .rv-card::before {
    background: var(--rv-gradient-primary);
}
.rv-section-dark .rv-card h3 { color: #fff; }
.rv-section-dark .rv-card p.rv-card-desc { color: var(--rv-text-on-dark-muted); }
.rv-section-dark .rv-card-list li { color: var(--rv-text-on-dark-muted); }
.rv-section-dark .rv-card-icon {
    background: rgba(245, 126, 0, 0.12);
    color: var(--rv-primary);
}
.rv-section-dark .rv-card:hover .rv-card-icon {
    background: var(--rv-gradient-primary);
    color: #fff;
}
.rv-section-dark .rv-card-tag { color: var(--rv-primary-3); }

/* Salesforce blue card variant on dark */
.rv-section-dark .rv-card.rv-card-sf .rv-card-icon {
    background: rgba(0, 161, 224, 0.12);
}
.rv-section-dark .rv-card.rv-card-sf:hover .rv-card-icon {
    background: linear-gradient(135deg, #00a1e0 0%, #1798c1 100%);
    color: #fff;
}

/* -- Steps inside dark sections -- */
.rv-section-dark .rv-step {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.rv-section-dark .rv-step:hover {
    border-color: rgba(245, 126, 0, 0.3);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}
.rv-section-dark .rv-step h4 { color: #fff; }
.rv-section-dark .rv-step p { color: var(--rv-text-on-dark-muted); }
.rv-section-dark .rv-step .rv-step-time { color: var(--rv-primary-3); }
.rv-section-dark .rv-step::after { opacity: 0; }
.rv-section-dark .rv-step.is-visible::after { opacity: 0.7; }

/* -- Pillars inside dark sections (future-proofed) -- */
.rv-section-dark .rv-pillar {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.rv-section-dark .rv-pillar:hover {
    border-color: rgba(245, 126, 0, 0.3);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}
.rv-section-dark .rv-pillar h4 { color: #fff; }
.rv-section-dark .rv-pillar p { color: var(--rv-text-on-dark-muted); }

/* ============================================================
   SERVICES & SOLUTIONS — clean card grids (2026 redesign)
   Scannable, low-motion replacement for the alternating
   slide-in reveal rows. No scroll animation on the cards.
   ============================================================ */
.rv-svc-section,
.rv-sol-section { background: var(--rv-bg-soft); }

.rv-svc-section .rv-grad,
.rv-sol-section .rv-grad {
    background: var(--rv-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rv-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

/* --- Service capability card --- */
.rv-svc-card {
    display: flex;
    flex-direction: column;
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-lg);
    padding: 36px 32px;
    scroll-margin-top: 110px;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.rv-svc-card:hover {
    border-color: rgba(245, 126, 0, 0.35);
    box-shadow: var(--rv-shadow-md);
    transform: translateY(-4px);
}
.rv-svc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.rv-svc-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    background: var(--rv-gradient-primary);
    box-shadow: var(--rv-shadow-glow);
}
.rv-svc-card .rv-card-tag { margin: 0; }
.rv-svc-card h3 {
    font-family: var(--rv-font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--rv-text-primary);
    margin: 0 0 12px;
    line-height: 1.25;
    letter-spacing: -0.015em;
}
.rv-svc-card > p {
    color: var(--rv-text-secondary);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 24px;
}
.rv-svc-caps {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 12px;
}
.rv-svc-caps li {
    position: relative;
    padding-left: 28px;
    font-family: var(--rv-font-body);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--rv-text-primary);
    line-height: 1.4;
}
.rv-svc-caps li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 12px;
    color: var(--rv-primary);
}

/* Shared "Explore more / View detail" link --- */
.rv-card-link {
    margin-top: auto;
    align-self: flex-start;
    font-family: var(--rv-font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--rv-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.rv-card-link i { transition: transform .25s ease; }
.rv-svc-card:hover .rv-card-link i,
.rv-sol-card:hover .rv-card-link i { transform: translateX(4px); }

/* --- Solution portfolio card --- */
.rv-sol-card {
    display: flex;
    flex-direction: column;
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-lg);
    overflow: hidden;
    scroll-margin-top: 110px;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.rv-sol-card:hover {
    border-color: rgba(245, 126, 0, 0.35);
    box-shadow: var(--rv-shadow-lg);
    transform: translateY(-4px);
}
.rv-sol-thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #1a1c2e 0%, #0d0e18 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    overflow: hidden;
}
.rv-sol-thumb::after {
    content: "";
    position: absolute;
    top: -30%;
    right: -30%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(245, 126, 0, 0.14), transparent 70%);
    pointer-events: none;
}
.rv-sol-thumb img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: transform .5s var(--rv-ease);
}
.rv-sol-card:hover .rv-sol-thumb img { transform: scale(1.04); }
.rv-sol-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 26px 26px 30px;
}
.rv-sol-body .rv-card-tag { margin: 0 0 10px; }
.rv-sol-card h3 {
    font-family: var(--rv-font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--rv-text-primary);
    margin: 0 0 12px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.rv-sol-card p {
    color: var(--rv-text-secondary);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 22px;
}

/* --- Tech / capability chips (service detail pages) --- */
.rv-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 4px;
}
.rv-chip {
    font-family: var(--rv-font-body);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--rv-text-secondary);
    background: var(--rv-bg-soft);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-pill);
    padding: 6px 14px;
    line-height: 1.3;
}
.rv-svc-card .rv-chips { margin-bottom: 0; }

/* --- Responsive --- */
@media (max-width: 991px) {
    .rv-offer-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 40px; }
}
@media (max-width: 600px) {
    .rv-offer-grid { grid-template-columns: 1fr; }
    .rv-svc-card { padding: 30px 24px; }
}

/* ============================================================
   CASE-STUDY / SOLUTION DETAIL
   (overview + alternating feature rows + capability cards + tech wall)
   ============================================================ */

/* Eyebrow used above section/feature headings on light bg */
.rv-eyebrow-line {
    display: inline-block;
    font-family: var(--rv-font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--rv-primary);
    margin-bottom: 14px;
}

/* Alternating feature / overview rows */
.rv-feature-rows {
    display: grid;
    gap: 84px;
    margin-top: 60px;
}
.rv-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.rv-feature-row--rev .rv-feature-media { order: 2; }
.rv-feature-text h3 {
    font-family: var(--rv-font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--rv-text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}
.rv-feature-text h3 .rv-grad {
    background: var(--rv-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.rv-feature-text > p {
    color: var(--rv-text-secondary);
    font-size: 15.5px;
    line-height: 1.75;
    margin: 0 0 22px;
}
.rv-feature-text .rv-svc-caps { margin-bottom: 0; }
.rv-feature-media {
    background: linear-gradient(135deg, #f4f6fb 0%, #e9edf6 100%);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-lg);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rv-feature-media img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--rv-shadow-md);
}

/* Capability cards (e.g. User Configuration / Architecture) */
.rv-cap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 56px;
}
.rv-cap-card {
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-lg);
    padding: 34px 32px;
}
.rv-cap-card h3 {
    font-family: var(--rv-font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--rv-text-primary);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.rv-cap-card h3 .rv-cap-ic {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    background: var(--rv-gradient-primary);
    box-shadow: var(--rv-shadow-glow);
}
.rv-cap-card .rv-svc-caps { margin-bottom: 0; }

/* Technology stack — text chips (consistent + always legible) */
.rv-tech-band {
    margin-top: 64px;
    text-align: center;
}
.rv-tech-band .rv-eyebrow-line { margin-bottom: 22px; }
.rv-tech-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 760px;
    margin: 0 auto;
}
.rv-tech-chips .rv-chip {
    font-size: 14px;
    padding: 9px 20px;
    background: var(--rv-bg-card);
    color: var(--rv-text-primary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 860px) {
    .rv-feature-rows { gap: 56px; margin-top: 44px; }
    .rv-feature-row { grid-template-columns: 1fr; gap: 28px; }
    .rv-feature-row--rev .rv-feature-media { order: 0; }
    .rv-feature-text h3 { font-size: 24px; }
}
@media (max-width: 767px) {
    .rv-cap-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   FEATURED WORK — icon-based portfolio cards (image-free, production look)
   Used on the homepage (below Industries) and works.php
   ===================================================================== */
.rv-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.rv-work-card {
    display: flex;
    flex-direction: column;
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-lg);
    overflow: hidden;
    scroll-margin-top: 110px;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.rv-work-card:hover {
    border-color: rgba(245, 126, 0, 0.35);
    box-shadow: var(--rv-shadow-lg);
    transform: translateY(-4px);
}
.rv-work-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 20%, rgba(245, 126, 0, 0.20), transparent 56%),
        linear-gradient(150deg, #1b2138 0%, #0c1020 100%);
}
/* fine dot-grid texture */
.rv-work-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1.5px);
    background-size: 18px 18px;
    -webkit-mask-image: radial-gradient(130% 110% at 50% 0%, #000 35%, transparent 78%);
    mask-image: radial-gradient(130% 110% at 50% 0%, #000 35%, transparent 78%);
    pointer-events: none;
}
/* soft sweeping glow on hover */
.rv-work-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 80% at 50% 120%, rgba(245, 126, 0, 0.22), transparent 70%);
    opacity: 0;
    transition: opacity .4s var(--rv-ease);
    pointer-events: none;
}
.rv-work-card:hover .rv-work-media::after { opacity: 1; }
.rv-work-glyph {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border-radius: 20px;
    background: var(--rv-gradient-primary);
    color: #fff;
    font-size: 31px;
    box-shadow: 0 14px 34px rgba(245, 126, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transition: transform .5s var(--rv-ease);
}
.rv-work-card:hover .rv-work-glyph { transform: translateY(-3px) scale(1.06); }
.rv-work-platform {
    position: absolute;
    z-index: 1;
    top: 14px;
    right: 14px;
    font-family: var(--rv-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(13, 20, 36, 0.58);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--rv-radius-pill);
    padding: 6px 12px;
}
/* legacy icon cover — still used on works.php + cross-link sections */
.rv-work-ic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    padding: 24px;
    background:
        radial-gradient(circle at 82% 18%, rgba(245, 126, 0, 0.24), transparent 55%),
        linear-gradient(135deg, #1a1c2e 0%, #0d0e18 100%);
    overflow: hidden;
}
.rv-work-ic::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1.5px);
    background-size: 17px 17px;
    pointer-events: none;
}
.rv-work-ic i {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: var(--rv-gradient-primary);
    color: #fff;
    font-size: 29px;
    flex-shrink: 0;
    box-shadow: var(--rv-shadow-glow);
}
.rv-work-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 24px 24px;
}
.rv-work-body .rv-card-tag { margin: 0 0 11px; }
.rv-work-card h3 {
    font-family: var(--rv-font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--rv-text-primary);
    margin: 0 0 9px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rv-work-card p {
    color: var(--rv-text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44.8px;
}
.rv-work-card .rv-card-link { margin-top: auto; }
.rv-work-card:hover .rv-card-link i { transform: translateX(4px); }

@media (max-width: 991px) {
    .rv-work-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .rv-work-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   Icon panel for case-study Overview media (image-free alternative)
   Drop-in for .rv-feature-media on pages without screenshots
   ===================================================================== */
.rv-feature-media--icon {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1c2e 0%, #0d0e18 100%);
    border-color: transparent;
    flex-direction: column;
    gap: 22px;
    text-align: center;
    min-height: 300px;
}
.rv-feature-media--icon::after {
    content: "";
    position: absolute;
    top: -30%;
    right: -20%;
    width: 62%;
    height: 85%;
    background: radial-gradient(circle, rgba(245, 126, 0, 0.20), transparent 70%);
    pointer-events: none;
}
.rv-feature-badge {
    position: relative;
    z-index: 1;
    width: 96px;
    height: 96px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #fff;
    background: var(--rv-gradient-primary);
    box-shadow: var(--rv-shadow-glow);
}
.rv-feature-cap {
    position: relative;
    z-index: 1;
    font-family: var(--rv-font-display);
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: .01em;
    margin: 0;
    max-width: 320px;
}
.rv-feature-mini {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.rv-feature-mini span {
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.80);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--rv-radius-pill);
    padding: 6px 13px;
}

/* ============================================================
   FAQ ACCORDION — native <details>, zero-JS
   ============================================================ */
.rv-faq {
    max-width: 840px;
    margin: 6px auto 0;
}
.rv-faq-item {
    border-bottom: 1px solid var(--rv-border);
}
.rv-faq-item summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding: 22px 46px 22px 0;
    font-family: var(--rv-font-display);
    font-size: 16.5px;
    font-weight: 600;
    color: var(--rv-heading);
    transition: color 0.2s var(--rv-ease);
}
.rv-faq-item summary::-webkit-details-marker { display: none; }
.rv-faq-item summary:hover { color: var(--rv-primary); }
.rv-faq-ic {
    position: absolute;
    right: 2px;
    top: 25px;
    font-size: 13px;
    color: var(--rv-primary);
    transition: transform 0.25s var(--rv-ease);
}
.rv-faq-item[open] .rv-faq-ic { transform: rotate(180deg); }
.rv-faq-body {
    padding: 0 46px 24px 0;
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--rv-text-secondary);
}

/* ============================================================
   ENGAGEMENT MODEL CARDS
   ============================================================ */
.rv-engage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 8px;
}
.rv-engage-card {
    display: flex;
    flex-direction: column;
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-lg);
    padding: 30px 28px;
    transition: transform 0.35s var(--rv-ease), box-shadow 0.35s var(--rv-ease), border-color 0.3s ease;
}
.rv-engage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--rv-shadow-md);
    border-color: var(--rv-primary);
}
.rv-engage-ic {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rv-primary-soft);
    color: var(--rv-primary);
    font-size: 22px;
    margin-bottom: 18px;
    transition: background 0.3s ease, color 0.3s ease;
}
.rv-engage-card:hover .rv-engage-ic {
    background: var(--rv-gradient-primary);
    color: #fff;
}
.rv-engage-card h3 {
    font-family: var(--rv-font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--rv-heading);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.rv-engage-best {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--rv-primary);
    background: var(--rv-primary-soft);
    border-radius: var(--rv-radius-pill);
    padding: 4px 11px;
    margin-bottom: 16px;
}
.rv-engage-card > p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--rv-text-secondary);
    margin: 0 0 16px;
}
.rv-engage-card .rv-svc-caps { margin: 0 0 22px; }
.rv-engage-foot { margin-top: auto; }
@media (max-width: 991px) {
    .rv-engage-grid { grid-template-columns: 1fr; }
}

/* ---- Stats bar: light-section variant ---- */
.rv-stats-bar--light {
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    box-shadow: var(--rv-shadow-sm);
}
.rv-stats-bar--light .rv-stat:not(:last-child)::after { background: var(--rv-border); }
.rv-stats-bar--light .rv-stat-label { color: var(--rv-text-secondary); }

/* ============================================================
   INDUSTRIES — image-backed tiles
   ============================================================ */
.rv-ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 10px;
}
.rv-ind-tile {
    position: relative;
    overflow: hidden;
    display: flex;
    border: none;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    box-shadow: none;
    transition: transform 0.45s var(--rv-ease), box-shadow 0.45s var(--rv-ease);
}
.rv-ind-tile:hover {
    transform: scale(1.03);
    box-shadow: var(--rv-shadow-lg);
    z-index: 2;
}
.rv-ind-tile-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--rv-ease);
}
.rv-ind-tile:hover .rv-ind-tile-img { transform: scale(1.14); }
.rv-ind-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.20) 0%, rgba(10, 14, 26, 0.52) 52%, rgba(10, 14, 26, 0.88) 100%);
    transition: background 0.4s ease;
}
.rv-ind-tile:hover .rv-ind-tile-overlay {
    background: linear-gradient(180deg, rgba(245, 126, 0, 0.32) 0%, rgba(10, 14, 26, 0.52) 55%, rgba(10, 14, 26, 0.90) 100%);
}
.rv-ind-tile-content {
    position: relative;
    z-index: 1;
    margin-top: auto;
    width: 100%;
    padding: 26px 24px;
}
.rv-ind-tile-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: var(--rv-gradient-primary);
    color: #fff;
    font-size: 22px;
    box-shadow: var(--rv-shadow-glow);
    margin-bottom: 15px;
    transition: transform 0.4s var(--rv-ease);
}
.rv-ind-tile:hover .rv-ind-tile-ic { transform: scale(1.08) rotate(-3deg); }
.rv-ind-tile-content h3 {
    font-family: var(--rv-font-display);
    font-size: 19.5px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.rv-ind-tile-content p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}
/* collapsed by default — only the top 4 industries show */
.rv-ind-tile--more { display: none; }
.rv-ind-grid.is-expanded .rv-ind-tile--more { display: flex; }
.rv-ind-actions { text-align: center; margin-top: 34px; }
.rv-ind-toggle-arrow { display: inline-block; transition: transform 0.25s var(--rv-ease); }

/* tighter vertical rhythm for the Industries section */
#our-work { padding-top: 58px; }
#our-work .rv-section-head { margin-bottom: 40px; }

/* breakpoints chosen so the 4 visible tiles never leave an orphan */
@media (max-width: 992px) { .rv-ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) {
    #our-work { padding-top: 30px; padding-bottom: 62px; }
    #our-work .rv-section-head { margin-bottom: 26px; }
}
@media (max-width: 480px) { .rv-ind-grid { grid-template-columns: 1fr; gap: 14px; } }

/* ============================================================
   INSIGHTS / BLOG
   ============================================================ */
/* tighter spacing for the homepage/related Insights section + larger tiles */
#testimonials { padding-bottom: 38px; }
.rv-insights-section { padding-top: 46px; }
.rv-insights-section .rv-section-head { margin-bottom: 42px; }

.rv-insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 6px;
}
.rv-insight-card {
    display: flex;
    flex-direction: column;
    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-lg);
    overflow: hidden;
    transition: transform 0.35s var(--rv-ease), box-shadow 0.35s var(--rv-ease), border-color 0.3s ease;
}
.rv-insight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rv-shadow-lg);
    border-color: rgba(245, 126, 0, 0.35);
}
.rv-insight-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--rv-bg-dark);
}
.rv-insight-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--rv-ease);
}
.rv-insight-card:hover .rv-insight-media img { transform: scale(1.06); }
.rv-insight-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #fff;
    background: rgba(13, 20, 36, 0.62);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--rv-radius-pill);
    padding: 6px 12px;
}
.rv-insight-cat i { color: var(--rv-primary-3); font-size: 12px; }
.rv-insight-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 26px 26px 28px;
}
.rv-insight-meta {
    font-size: 13px;
    color: var(--rv-text-tertiary);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 11px;
}
.rv-insight-card h3 {
    font-family: var(--rv-font-display);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.32;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.rv-insight-card h3 a { color: var(--rv-heading); transition: color 0.2s ease; }
.rv-insight-card h3 a:hover { color: var(--rv-primary); }
.rv-insight-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--rv-text-secondary);
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rv-insight-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--rv-border);
}
.rv-insight-author {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--rv-text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.rv-insight-author i { color: var(--rv-primary); font-size: 13px; }
.rv-insight-foot .rv-card-link { font-size: 14.5px; }
@media (max-width: 991px) { .rv-insight-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .rv-insight-grid { grid-template-columns: 1fr; } }

/* ---- Article page ---- */
.rv-article-hero { text-align: left; }
.rv-article-hero .container { max-width: 880px; }
.rv-article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--rv-text-on-dark-muted);
    margin-bottom: 18px;
    transition: color 0.2s ease;
}
.rv-article-back:hover { color: #fff; }
.rv-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin-top: 22px;
}
.rv-article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--rv-text-on-dark-muted);
}
.rv-article-meta i { color: var(--rv-primary-3); }
.rv-article-section .container { max-width: 820px; }
.rv-article-figure {
    margin: 0 0 38px;
    border-radius: var(--rv-radius-lg);
    overflow: hidden;
    box-shadow: var(--rv-shadow-md);
}
.rv-article-figure img { width: 100%; display: block; }
.rv-article-body .rv-lead {
    font-size: 19px;
    line-height: 1.6;
    color: var(--rv-heading);
    font-weight: 500;
    margin: 0 0 28px;
}
.rv-article-body h2 {
    font-family: var(--rv-font-display);
    font-size: 23px;
    font-weight: 700;
    color: var(--rv-heading);
    margin: 36px 0 14px;
    letter-spacing: -0.01em;
}
.rv-article-body p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--rv-text-secondary);
    margin: 0 0 18px;
}
.rv-article-body ul {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}
.rv-article-body li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--rv-text-secondary);
}
.rv-article-body li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rv-primary);
}
.rv-article-body strong { color: var(--rv-heading); font-weight: 600; }
.rv-article-body em { color: var(--rv-text-primary); }
.rv-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 30px 0 0;
}
.rv-author-box {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding: 22px;
    background: var(--rv-bg-soft);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-lg);
}
.rv-author-avatar {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rv-gradient-primary);
    color: #fff;
    font-size: 22px;
    box-shadow: var(--rv-shadow-glow);
}
.rv-author-info { flex: 1; min-width: 150px; }
.rv-author-info strong {
    display: block;
    font-family: var(--rv-font-display);
    font-size: 16px;
    color: var(--rv-heading);
}
.rv-author-info span { font-size: 13px; color: var(--rv-text-secondary); }
.rv-author-cta { flex: 0 0 auto; }
@media (max-width: 575px) {
    .rv-article-body .rv-lead { font-size: 17px; }
    .rv-article-body h2 { font-size: 20px; }
    .rv-author-cta { width: 100%; justify-content: center; }
}

/* ---- Footer: Certified & Recognized strip ---- */
.rv-footer-certs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 28px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.rv-footer-certs-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.rv-footer-certs-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}
.rv-footer-cert {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 8px 14px;
    background: #fff;
    border-radius: var(--rv-radius-md);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.rv-footer-cert img {
    height: 100%;
    width: auto;
    max-width: 92px;
    object-fit: contain;
    display: block;
}
@media (max-width: 575px) {
    .rv-footer-certs { gap: 14px 18px; }
    .rv-footer-cert { height: 46px; padding: 7px 11px; }
}

/* ============================================================
   LIGHT HERO (homepage) + light nav-at-top + full-colour logo
   ============================================================ */
body.rv-light-hero .rv-hero {
    background:
        radial-gradient(ellipse 70% 55% at 50% -8%, rgba(245, 126, 0, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 55% 50% at 88% 12%, rgba(0, 161, 224, 0.09) 0%, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
    color: var(--rv-text-primary);
}
body.rv-light-hero .rv-hero::before { background: radial-gradient(circle, rgba(245, 126, 0, 0.16) 0%, transparent 65%); }
body.rv-light-hero .rv-hero::after  { background: radial-gradient(circle, rgba(0, 161, 224, 0.10) 0%, transparent 65%); }
body.rv-light-hero .rv-hero .rv-hero-grid {
    background-image:
        linear-gradient(rgba(13, 20, 36, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 20, 36, 0.05) 1px, transparent 1px);
}
body.rv-light-hero .rv-hero-eyebrow {
    background: #fff;
    border: 1px solid var(--rv-border);
    color: var(--rv-text-primary);
    box-shadow: var(--rv-shadow-sm);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}
body.rv-light-hero .rv-hero h1 { color: var(--rv-heading); }
body.rv-light-hero .rv-hero p.rv-hero-sub { color: var(--rv-text-secondary); }
body.rv-light-hero .rv-hero .rv-btn-ghost {
    background: #fff;
    color: var(--rv-text-primary);
    border-color: var(--rv-border-strong);
}
body.rv-light-hero .rv-hero .rv-btn-ghost:hover {
    color: var(--rv-primary);
    border-color: var(--rv-primary);
    background: var(--rv-primary-soft);
}

/* --- Nav: light while sitting at the top of the light hero --- */
body.rv-light-hero .rv-navbar:not(.rv-nav-scrolled) .rv-nav-logo img { filter: none; }
body.rv-light-hero .rv-navbar:not(.rv-nav-scrolled) .rv-nav-links a { color: var(--rv-text-secondary); }
body.rv-light-hero .rv-navbar:not(.rv-nav-scrolled) .rv-nav-links a:hover { color: var(--rv-primary); background: var(--rv-primary-soft); }
body.rv-light-hero .rv-navbar:not(.rv-nav-scrolled) .rv-nav-toggle span { background: var(--rv-heading); }

/* ============================================================
   GET-IN-TOUCH MODAL — minimal contact form
   ============================================================ */
.rv-modal .modal-dialog { max-width: 480px; margin: 1.75rem auto; }
.rv-modal .modal-dialog-centered { display: flex; align-items: center; min-height: calc(100% - 3.5rem); }
.rv-modal-content {
    position: relative;
    border: none;
    border-radius: var(--rv-radius-lg);
    background: #fff;
    box-shadow: 0 40px 90px rgba(10, 14, 26, 0.34);
    padding: 40px 38px 34px;
    overflow: hidden;
}
.rv-modal-content::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 140px;
    background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(245, 126, 0, 0.10), transparent 70%);
    pointer-events: none;
}
.rv-modal-close {
    position: absolute; top: 16px; right: 16px; z-index: 2;
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--rv-border); border-radius: 50%;
    background: #fff; color: var(--rv-text-secondary);
    font-size: 15px; cursor: pointer; opacity: 1;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.rv-modal-close:hover { color: var(--rv-primary); border-color: var(--rv-primary); background: var(--rv-primary-soft); }
.rv-modal-head { position: relative; text-align: center; margin-bottom: 26px; }
.rv-modal-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
    color: var(--rv-primary); margin-bottom: 12px;
}
.rv-modal-eyebrow .rv-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rv-primary); }
.rv-modal-title {
    font-family: var(--rv-font-display); font-size: 28px; font-weight: 800;
    letter-spacing: -0.02em; color: var(--rv-heading); margin: 0 0 9px; line-height: 1.15;
}
.rv-modal-title .rv-grad { background: var(--rv-gradient-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rv-modal-sub { font-size: 14.5px; line-height: 1.55; color: var(--rv-text-secondary); margin: 0; }
.rv-modal-form { position: relative; }
.rv-field { margin-bottom: 14px; }
.rv-field-row { display: flex; gap: 14px; }
.rv-field-row .rv-field { flex: 1; }
.rv-modal .form-control {
    width: 100%; height: auto; display: block;
    padding: 13px 16px;
    font-family: var(--rv-font-body); font-size: 15px;
    color: var(--rv-heading);
    background: var(--rv-bg-soft);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-sm);
    box-shadow: none;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.rv-modal .form-control::placeholder { color: var(--rv-text-tertiary); opacity: 1; }
.rv-modal .form-control:focus {
    outline: none; border-color: var(--rv-primary); background: #fff;
    box-shadow: 0 0 0 3px rgba(245, 126, 0, 0.12);
}
.rv-modal textarea.form-control { resize: vertical; min-height: 100px; }
.rv-modal-recaptcha { display: flex; justify-content: center; transform: scale(0.94); transform-origin: center top; margin: 6px 0; }
.rv-modal-submit { width: 100%; justify-content: center; margin-top: 8px; font-size: 15px; padding: 14px 24px; border: none; cursor: pointer; }
.rv-modal-form .alert { font-size: 13.5px; border-radius: var(--rv-radius-sm); padding: 10px 14px; margin-bottom: 14px; }
@media (max-width: 480px) {
    .rv-modal-content { padding: 32px 22px 26px; }
    .rv-field-row { flex-direction: column; gap: 0; }
    .rv-field-row .rv-field { margin-bottom: 14px; }
    .rv-modal-title { font-size: 24px; }
}
