:root {
    --rs-primary: #3b82f6;
    --rs-primary-deep: #2563eb;
    --rs-accent: #14b8a6;
    --rs-ink: #0f172a;
    --rs-muted: #475569;
    --rs-body: #f6f9ff;
    --rs-surface: #ffffff;
    --rs-surface-soft: #f8fbff;
    --rs-line: #d9e5f3;
    --rs-dark: #081327;
    --rs-radius: 18px;
    --rs-shadow-sm: 0 10px 26px rgba(15, 23, 42, 0.07);
    --rs-shadow-lg: 0 24px 55px rgba(15, 23, 42, 0.16);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

html.rs-smooth-page {
    scroll-behavior: smooth;
}

html.rs-smooth-page body {
    -webkit-overflow-scrolling: touch;
}

body {
    margin: 0;
    background: radial-gradient(circle at 0% -10%, #eef5ff 0, transparent 44%), var(--rs-body);
    color: var(--rs-ink);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.rs-site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    isolation: isolate;
}

.rs-main {
    flex: 1 0 auto;
    position: relative;
    z-index: 0;
    overflow: visible;
}

a,
.text-primary {
    color: var(--rs-primary-deep) !important;
}

.container-main {
    position: relative;
    z-index: 0;
    overflow: visible;
}

body:has(.rs-blog-detail-section) .container-main {
    overflow: visible;
}

.rs-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2147483647;
    overflow: visible;
    isolation: isolate;
    display: flex;
    align-items: center;
    gap: 1.35rem;
    min-height: 72px;
    padding: 0 1.6rem !important;
    background: rgba(255, 255, 255, 0.68);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(16px);
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease, transform .28s ease;
    will-change: transform;
}

.rs-navbar.is-hidden {
    transform: translateY(-110%);
}

.rs-navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(59, 130, 246, .16),
        rgba(20, 184, 166, .08) 24%,
        transparent 46%
    );
    opacity: 0;
    transition: opacity .25s ease;
}

.rs-navbar:hover::before {
    opacity: 1;
}

.rs-navbar > * {
    position: relative;
    z-index: 1;
}

.rs-navbar + .rs-hero.rs-hero--premium {
    padding-top: calc(5.5rem + 72px) !important;
}

.rs-navbar.is-scrolled {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(14, 55, 118, 0.12);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.rs-brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; margin-left: .65rem; }
.rs-brand img { width: 114px !important; height: 64px !important; object-fit: contain; transform: scale(1.08); transform-origin: left center; }

.rs-menu-panel { display: flex; justify-content: flex-end; flex: 1 1 auto; overflow: visible; }
.rs-menu-links { display: flex; align-items: center; gap: 1.15rem; margin-left: auto; overflow: visible; }

.rs-navbar .nav-link {
    padding: .55rem .85rem !important;
    border-radius: 999px;
    color: #334155 !important;
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .02em;
    transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.rs-navbar .nav-link:hover,
.rs-navbar .nav-link:focus-visible {
    color: var(--rs-primary-deep) !important;
    background: #e9f1ff;
    transform: translateY(-1px);
}

.rs-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .62rem 1rem;
    border-radius: 999px;
    background: linear-gradient(125deg, var(--rs-primary), var(--rs-primary-deep));
    color: #fff !important;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(37, 99, 235, .28);
    transition: transform .2s ease, box-shadow .2s ease;
}

.rs-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(37, 99, 235, .35); }

.rs-menu-toggle { display: none; width: 40px; height: 40px; border: 1px solid var(--rs-line); border-radius: 10px; background: #fff; padding: 7px; }
.rs-menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--rs-ink); border-radius: 999px; }

.rs-nav-dropdown { position: relative; display: block; }
.rs-nav-dropdown > summary {
    list-style: none;
    cursor: pointer;
}
.rs-nav-dropdown > summary::-webkit-details-marker {
    display: none;
}
.rs-nav-dropdown::after {
    content: "";
    position: absolute;
    left: -1rem;
    right: -1rem;
    top: 100%;
    height: 16px;
}
.rs-nav-dropdown-toggle { display: inline-flex; align-items: center; gap: .42rem; border: 0; background: transparent; }
.rs-nav-dropdown-toggle i { font-size: .68rem; transition: transform .2s ease; }
.rs-nav-dropdown[open] .rs-nav-dropdown-toggle i { transform: rotate(180deg); }
.rs-nav-dropdown-menu {
    position: absolute;
    display: block;
    top: calc(100% + 12px);
    left: 50%;
    z-index: 2147483647;
    width: min(760px, calc(100vw - 2rem));
    padding: 1rem;
    border: 1px solid rgba(73, 109, 151, .18);
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 24px 58px rgba(15, 23, 42, .16);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
}
.rs-nav-dropdown[open] .rs-nav-dropdown-menu,
.rs-nav-dropdown-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.rs-nav-dropdown[open] .rs-nav-dropdown-menu,
.rs-nav-dropdown-menu.is-open,
.rs-nav-dropdown:hover .rs-nav-dropdown-menu,
.rs-nav-dropdown:focus-within .rs-nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.rs-nav-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .8rem;
}
.rs-nav-product-card {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: .72rem;
    min-height: 74px;
    padding: .72rem;
    border: 1px solid #e4edf8;
    border-radius: 12px;
    background: #f8fbff;
    color: #0f172a !important;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.rs-nav-product-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, .34);
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .09);
}
.rs-nav-product-card span {
    grid-row: span 2;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e0e9f5;
    overflow: hidden;
}
.rs-nav-product-card img { width: 100%; height: 100%; object-fit: contain; padding: .28rem; }
.rs-nav-product-card strong { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .84rem; line-height: 1.2; }
.rs-nav-product-card small { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #64748b; font-size: .72rem; font-weight: 700; }
.rs-nav-product-card--all { border-style: dashed; }
.rs-portfolio-mega {
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    z-index: 10000;
    width: min(760px, calc(100vw - 2rem));
    padding: 1rem;
    border: 1px solid rgba(73, 109, 151, .18);
    border-radius: 18px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 24px 58px rgba(15, 23, 42, .16);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
    transition: opacity .2s ease, transform .2s ease;
}
.rs-portfolio-mega.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 991.98px) {
    .rs-portfolio-mega {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .rs-nav-dropdown-menu {
        position: fixed;
        top: 76px;
        left: 50vw;
        z-index: 2147483647;
        max-height: calc(100vh - 96px);
        overflow: auto;
    }
}

.rs-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 12%, rgba(83, 151, 255, .46), transparent 50%),
        radial-gradient(circle at 88% 8%, rgba(20, 184, 166, .36), transparent 40%),
        linear-gradient(128deg, #061328 0%, #0f2f63 58%, #1546a4 100%);
    color: #fff;
    min-height: 640px;
    display: flex;
    align-items: center;
    padding: 5.5rem 0 4.8rem;
}

.rs-eyebrow { display: inline-flex; align-items: center; gap: .5rem; color: #c6dcff; font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.rs-hero h1 { max-width: 690px; color: #fff; font-size: clamp(2.1rem, 4.7vw, 3.8rem); line-height: 1.06; letter-spacing: -.02em; margin: .9rem 0 1rem; }
.rs-hero p { max-width: 610px; color: #d9e8ff; font-size: 1.02rem; }

.rs-hero-actions { display: flex; flex-wrap: wrap; gap: .82rem; margin-top: 1.8rem; }
.rs-hero-actions .btn {
    border-radius: 12px;
    padding: .88rem 1.25rem;
    font-size: .93rem;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn.btn-primary {
    background: linear-gradient(125deg, var(--rs-primary), var(--rs-primary-deep)) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(37, 99, 235, .28);
}

.btn.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(37, 99, 235, .35); }
.btn.btn-outline-light { border-color: rgba(255, 255, 255, .56); color: #fff !important; background: rgba(255, 255, 255, .08); }
.btn.btn-outline-light:hover { background: #fff; color: #0b2248 !important; }

.rs-hero-panel {
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .23);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    padding: 1.1rem 1.15rem;
    box-shadow: 0 30px 65px rgba(3, 8, 20, .35);
}

.rs-stack-item { display: flex; gap: .75rem; padding: .8rem 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.rs-stack-item:last-child { border-bottom: 0; }
.rs-stack-item i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: rgba(20, 184, 166, .22); color: #8cf5e4; }
.rs-stack-item strong { display: block; color: #fff; margin-bottom: .25rem; }
.rs-stack-item span { color: #d3e4ff; font-size: .84rem; line-height: 1.5; }

.rs-trust-strip {
    position: relative;
    margin-top: -34px;
    z-index: 5;
    padding: .8rem 0;
}

.rs-trust-item {
    display: flex; align-items: center; gap: .5rem;
    height: 100%;
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 14px;
    box-shadow: var(--rs-shadow-sm);
    color: #334155;
    font-size: .84rem;
    font-weight: 700;
    padding: .9rem .95rem;
}
.rs-trust-item i { color: var(--rs-accent); }

.rs-section { position: relative; padding: 5rem 0; }
.rs-section-soft { background: linear-gradient(180deg, #f8fbff 0%, #f3f8ff 100%); }

.rs-section-title { max-width: 760px; margin: 0 auto 2.15rem; text-align: center; }
.rs-section-title h6 { color: var(--rs-primary-deep); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .74rem; margin-bottom: .75rem; }
.rs-section-title h2 { color: #0f1f3e; font-size: clamp(1.65rem, 3.1vw, 2.5rem); font-weight: 800; letter-spacing: -.01em; margin-bottom: .8rem; }
.rs-section-title p { color: var(--rs-muted); font-size: 1.02rem; }

.rs-card,
.rs-price-item,
.rs-metric,
.rs-process-step,
.rs-contact-form,
.rs-mini-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(73, 109, 151, 0.22);
    border-radius: var(--rs-radius);
    box-shadow: var(--rs-shadow-sm);
    backdrop-filter: blur(9px);
}

.rs-card { height: 100%; padding: 1.3rem; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.rs-card:hover,
.rs-price-item:hover,
.rs-metric:hover,
.rs-process-step:hover,
.rs-mini-card:hover {
    transform: translateY(-7px);
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: var(--rs-shadow-lg);
}

.rs-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: linear-gradient(145deg, #eaf2ff, #d9e9ff); color: var(--rs-primary-deep); font-size: 1.1rem; margin-bottom: .8rem; }
.rs-card h4, .rs-card h5 { color: #0f1f3e; font-weight: 800; }
.rs-card p, .rs-feature-row p, .rs-process-step p { color: var(--rs-muted); }

.rs-link { color: var(--rs-primary-deep); font-weight: 700; text-decoration: none; }
.rs-link:hover { color: #1d4ed8 !important; }

.rs-portfolio-products .rs-section-title { max-width: 830px; }
.rs-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .9rem;
}
.rs-product-tile {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 34px;
    align-items: center;
    gap: .85rem;
    min-height: 92px;
    padding: .9rem 1rem;
    border: 1px solid #dfe9f6;
    border-radius: 14px;
    background: rgba(255, 255, 255, .86);
    color: #0f172a !important;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.rs-product-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, .35);
    box-shadow: 0 18px 38px rgba(15, 23, 42, .12);
}
.rs-product-logo {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid #e0e9f5;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}
.rs-product-logo img { width: 100%; height: 100%; object-fit: contain; padding: .35rem; }
.rs-product-copy { min-width: 0; }
.rs-product-copy strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #0f1f3e;
    font-size: .95rem;
    font-weight: 800;
}
.rs-product-copy small { display: block; color: #64748b; font-size: .78rem; font-weight: 700; margin-top: .15rem; }
.rs-product-tile > i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #edf4ff;
    color: var(--rs-primary-deep);
}
.rs-empty-state {
    grid-column: 1 / -1;
    padding: 3rem 1rem;
    text-align: center;
}
.rs-featured-portfolio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.35rem;
    border-radius: 16px;
    background: linear-gradient(125deg, #071327 0%, #0d2d5f 100%);
    color: #dbeafe;
    box-shadow: 0 22px 46px rgba(15, 23, 42, .18);
}
.rs-featured-portfolio span {
    display: inline-flex;
    margin-bottom: .35rem;
    color: #93c5fd;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.rs-featured-portfolio h3 { color: #fff; font-weight: 800; margin-bottom: .3rem; }
.rs-featured-portfolio p { max-width: 680px; margin: 0; color: #cbd5e1; }
.rs-back-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: 1rem;
    color: var(--rs-primary-deep) !important;
    font-weight: 800;
    text-decoration: none;
}
.rs-portfolio-detail-hero {
    background:
        radial-gradient(circle at 8% 2%, rgba(59, 130, 246, .18), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}
.rs-portfolio-detail-hero h1 {
    color: #0f1f3e;
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    font-weight: 850;
    letter-spacing: -.01em;
    line-height: 1.08;
    margin: .7rem 0 1rem;
}
.rs-portfolio-detail-hero p { max-width: 620px; color: #475569; font-size: 1.05rem; }
.rs-portfolio-detail-media {
    min-height: 360px;
    display: grid;
    place-items: center;
    border: 1px solid #dce8f7;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--rs-shadow-lg);
    overflow: hidden;
}
.rs-portfolio-detail-media img { width: 100%; height: 100%; max-height: 430px; object-fit: contain; padding: 1.5rem; }
.rs-portfolio-detail-media i { font-size: 4rem; color: var(--rs-primary-deep); }
.rs-detail-panel {
    height: 100%;
    padding: 1.5rem;
    border: 1px solid #dce8f7;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--rs-shadow-sm);
}
.rs-detail-panel h2,
.rs-detail-panel h3 { color: #0f1f3e; font-weight: 800; margin-bottom: .85rem; }

.rs-portfolio-description img,
.rs-portfolio-description img.rs-solution-inline-media {
    display: block;
    width: auto;
    max-width: min(100%, 320px);
    max-height: 220px;
    height: auto;
    object-fit: contain;
    margin: 1rem 0;
    border-radius: 12px;
    border: 1px solid rgba(73, 109, 151, .16);
    box-shadow: var(--rs-shadow-sm);
}

.rs-highlight-list { display: grid; gap: .75rem; padding: 0; margin: 0; list-style: none; }
.rs-highlight-list li { display: flex; gap: .65rem; color: #334155; font-weight: 700; }
.rs-highlight-list i { color: var(--rs-accent); margin-top: .28rem; }

@media (max-width: 991.98px) {
    .rs-nav-dropdown,
    .rs-nav-dropdown-toggle { width: 100%; }

    .rs-nav-dropdown-toggle { justify-content: center; }

    .rs-nav-dropdown-menu {
        position: static;
        width: 100%;
        margin: .4rem 0 .8rem;
        transform: none;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        display: none;
    }

    .rs-nav-dropdown[open] .rs-nav-dropdown-menu,
    .rs-nav-dropdown-menu.is-open {
        display: block;
        transform: none;
    }

    .rs-nav-products,
    .rs-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .rs-navbar + .rs-hero.rs-hero--premium {
        padding-top: calc(4rem + 72px) !important;
    }
}

@media (max-width: 767.98px) {
    .rs-navbar + .rs-hero.rs-hero--premium {
        padding-top: calc(3.25rem + 62px) !important;
    }

    .rs-nav-products,
    .rs-product-grid {
        grid-template-columns: 1fr;
    }

    .rs-featured-portfolio {
        align-items: flex-start;
        flex-direction: column;
    }

    .rs-product-tile {
        grid-template-columns: 52px minmax(0, 1fr) 32px;
    }

    .rs-product-logo {
        width: 52px;
        height: 52px;
    }
}

.rs-blog-page {
    position: relative;
    padding: 3.5rem 0 5rem;
    background:
        radial-gradient(circle at 8% 0%, rgba(59, 130, 246, .14), transparent 34%),
        radial-gradient(circle at 92% 8%, rgba(20, 184, 166, .1), transparent 30%),
        linear-gradient(180deg, #070f1f 0%, #0a1628 48%, #0d1b31 100%);
    color: #e2e8f0;
}

.rs-blog-page-header {
    max-width: 720px;
    margin: 0 auto 2.4rem;
    text-align: center;
}

.rs-blog-page-header h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: .65rem;
}

.rs-blog-page-header p {
    color: #94a3b8;
    font-size: 1.02rem;
    margin: 0;
}

.rs-blog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.rs-blog-filters {
    display: flex;
    align-items: center;
    gap: .55rem;
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    padding-bottom: .2rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(148, 163, 184, .35) transparent;
}

.rs-blog-filters::-webkit-scrollbar {
    height: 4px;
}

.rs-blog-filters::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, .35);
    border-radius: 999px;
}

.rs-blog-filter {
    flex: 0 0 auto;
    padding: .55rem 1.05rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, .22);
    background: rgba(15, 23, 42, .72);
    color: #cbd5e1;
    font-size: .84rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.rs-blog-filter:hover {
    color: #fff;
    border-color: rgba(96, 165, 250, .55);
    background: rgba(30, 41, 59, .9);
    transform: translateY(-1px);
}

.rs-blog-filter.is-active {
    color: #fff;
    border-color: var(--rs-primary);
    background: rgba(37, 99, 235, .18);
    box-shadow: 0 0 0 1px rgba(59, 130, 246, .35);
}

.rs-blog-search {
    position: relative;
    flex: 0 1 320px;
    width: 100%;
    max-width: 320px;
}

.rs-blog-search input {
    width: 100%;
    padding: .72rem 2.8rem .72rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, .24);
    background: rgba(15, 23, 42, .78);
    color: #f8fafc;
    font-size: .88rem;
    font-weight: 500;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.rs-blog-search input::placeholder {
    color: #64748b;
}

.rs-blog-search input:focus {
    border-color: rgba(96, 165, 250, .65);
    background: rgba(15, 23, 42, .95);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, .14);
}

.rs-blog-search button {
    position: absolute;
    top: 50%;
    right: .45rem;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(125deg, var(--rs-primary), var(--rs-primary-deep));
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.rs-blog-search button:hover {
    transform: translateY(-50%) scale(1.04);
    box-shadow: 0 8px 18px rgba(37, 99, 235, .35);
}

.rs-blog-results-meta {
    color: #94a3b8;
    font-size: .86rem;
    font-weight: 600;
    margin: 0 0 1.25rem;
}

.rs-blog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, .14);
    background: rgba(15, 23, 42, .72);
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(2, 6, 23, .35);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.rs-blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, .35);
    box-shadow: 0 26px 52px rgba(2, 6, 23, .48);
}

.rs-blog-card-link {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.rs-blog-card-image {
    width: 100%;
    height: 230px;
    flex: 0 0 auto;
    object-fit: cover;
}

.rs-blog-card-image--placeholder {
    position: relative;
    overflow: hidden;
}

.rs-blog-card-image-pattern {
    position: absolute;
    inset: 0;
    opacity: .45;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .35) 0, transparent 42%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, .2) 0, transparent 38%);
}

.rs-blog-card-image--gradient-1 {
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 45%, #f59e0b 100%);
}

.rs-blog-card-image--gradient-2 {
    background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 50%, #ec4899 100%);
}

.rs-blog-card-image--gradient-3 {
    background: linear-gradient(135deg, #14b8a6 0%, #3b82f6 55%, #a855f7 100%);
}

.rs-blog-card-image--gradient-4 {
    background: linear-gradient(135deg, #f97316 0%, #8b5cf6 48%, #06b6d4 100%);
}

.rs-blog-card-body {
    flex: 1 1 auto;
    padding: 1.35rem 1.35rem .85rem;
}

.rs-blog-card-category {
    display: inline-block;
    margin-bottom: .65rem;
    color: #60a5fa;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.rs-blog-card-title {
    color: #f8fafc;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.42;
    margin-bottom: .75rem;
    transition: color .2s ease;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.rs-blog-card:hover .rs-blog-card-title {
    color: #dbeafe;
}

.rs-blog-card-excerpt {
    color: #94a3b8;
    font-size: .9rem;
    line-height: 1.65;
    margin: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rs-blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    flex-shrink: 0;
    padding: 1rem 1.35rem 1.25rem;
    border-top: 1px solid rgba(148, 163, 184, .12);
}

.rs-blog-card-meta-left {
    min-width: 0;
}

.rs-blog-card-author {
    display: flex;
    align-items: center;
    gap: .55rem;
    flex-wrap: wrap;
    color: #cbd5e1;
    font-size: .8rem;
    font-weight: 600;
}

.rs-blog-card-avatar {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(145deg, rgba(59, 130, 246, .35), rgba(20, 184, 166, .28));
    color: #eff6ff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .03em;
}

.rs-blog-card-author-name {
    color: #e2e8f0;
}

.rs-blog-card-date {
    color: #64748b;
}

.rs-blog-card-date::before {
    content: "•";
    margin-right: .45rem;
    color: #475569;
}

.rs-blog-card-arrow {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, .2);
    background: rgba(15, 23, 42, .65);
    color: #cbd5e1;
    transition: transform .22s ease, border-color .22s ease, background-color .22s ease, color .22s ease;
}

.rs-blog-card-arrow i {
    font-size: .82rem;
    transform: rotate(45deg);
    transition: transform .22s ease;
}

.rs-blog-card:hover .rs-blog-card-arrow {
    border-color: rgba(96, 165, 250, .45);
    background: rgba(37, 99, 235, .22);
    color: #fff;
}

.rs-blog-card:hover .rs-blog-card-arrow i {
    transform: rotate(45deg) translate(1px, -1px);
}

.rs-blog-empty {
    text-align: center;
    padding: 4rem 1.5rem;
    border-radius: 22px;
    border: 1px dashed rgba(148, 163, 184, .28);
    background: rgba(15, 23, 42, .45);
}

.rs-blog-empty i {
    font-size: 2rem;
    color: #60a5fa;
    margin-bottom: 1rem;
}

.rs-blog-empty h3 {
    color: #f8fafc;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: .55rem;
}

.rs-blog-empty p {
    color: #94a3b8;
    margin-bottom: 1.2rem;
}

.rs-blog-pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.rs-blog-pagination .pagination {
    gap: .35rem;
}

.rs-blog-pagination .page-link {
    border-radius: 10px;
    border-color: rgba(148, 163, 184, .24);
    background: rgba(15, 23, 42, .72);
    color: #cbd5e1;
    font-weight: 700;
}

.rs-blog-pagination .page-link:hover,
.rs-blog-pagination .page-item.active .page-link {
    background: linear-gradient(125deg, var(--rs-primary), var(--rs-primary-deep));
    border-color: transparent;
    color: #fff;
}

.rs-mini-card { height: 100%; display: flex; align-items: center; gap: .65rem; padding: .95rem 1rem; font-weight: 700; color: #1e293b; }
.rs-mini-card i { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; background: #e7f0ff; color: var(--rs-primary-deep); }

.rs-about-image { min-height: 370px; border-radius: var(--rs-radius); overflow: hidden; position: relative; box-shadow: var(--rs-shadow-lg); }
.rs-about-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rs-feature-row { display: flex; gap: .88rem; padding: .8rem 0; border-top: 1px solid #e5edf8; }
.rs-feature-row i { width: 26px; color: var(--rs-accent); font-size: 1.02rem; margin-top: .16rem; }

.rs-metric { height: 100%; padding: 1.2rem; }
.rs-metric h2 { color: var(--rs-primary-deep); font-weight: 800; letter-spacing: -.01em; }

.rs-process { counter-reset: process; position: relative; }
.rs-process::before { content: ""; position: absolute; top: 36px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, #c8dcf8, transparent); }
.rs-process-step { position: relative; height: 100%; padding: 3.8rem 1.1rem 1.1rem; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.rs-process-step::before {
    counter-increment: process;
    content: counter(process);
    position: absolute;
    top: .92rem;
    left: 1rem;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(130deg, var(--rs-primary), var(--rs-primary-deep));
    color: #fff;
    font-size: .83rem;
    font-weight: 800;
}
.rs-process-step i { position: absolute; top: 1rem; right: 1rem; color: var(--rs-primary-deep); font-size: 1.2rem; opacity: .9; }

.rs-cta-band {
    background: radial-gradient(circle at 12% 16%, rgba(81, 156, 255, .25), transparent 42%), linear-gradient(124deg, #071328 0%, #0c2d63 68%, #1348a8 100%);
    color: #fff;
    padding: 3.9rem 0;
}
.rs-cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 800; letter-spacing: -.01em; }

.rs-price-item { height: 100%; padding: 1.3rem; }
.rs-price-item h1 { color: #0f1f3e; font-weight: 800; letter-spacing: -.01em; }

.rs-contact-form { padding: 1.35rem; box-shadow: var(--rs-shadow-lg); }
.rs-map iframe { width: 100%; min-height: 390px; border-radius: var(--rs-radius); border: 1px solid #d6e3f5; box-shadow: var(--rs-shadow-sm); }

.form-control {
    border: 1px solid #c9d8ed;
    border-radius: 12px;
    background: #fff;
    padding: .82rem .92rem;
}
.form-control:focus {
    border-color: #6ea8ff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, .16);
}

.rs-footer {
    background: radial-gradient(circle at 14% 14%, rgba(56, 130, 246, .22), transparent 36%), linear-gradient(160deg, #040d1e 0%, #07162d 55%, #0a1d3b 100%) !important;
    border-top: 1px solid rgba(148, 163, 184, .24);
    margin-top: 0 !important;
}
.rs-footer--sticky { position: relative; bottom: 0; width: 100%; }
.rs-footer-brand img { height: 46px; margin-left: .45rem; margin-right: 10px; background: rgba(255, 255, 255, .96); border-radius: 8px; padding: 2px; transform: scale(1.06); transform-origin: left center; }
.rs-footer-heading { letter-spacing: .01em; font-weight: 700; }
.rs-footer-description { max-width: 410px; line-height: 1.8; }
.rs-footer .btn-link { display: block; padding: .15rem 0; font-weight: 500; text-align: left; transition: color .2s ease, transform .2s ease; }
.rs-footer .btn-link:hover { color: #fff !important; transform: translateX(4px); }
.rs-footer-socials { gap: .45rem; }
.rs-footer .btn-social {
    width: 38px; height: 38px; display: inline-grid; place-items: center; border-radius: 10px;
    border-color: rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .05);
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.rs-footer .btn-social:hover { transform: translateY(-2px); background: rgba(255, 255, 255, .2); border-color: rgba(255, 255, 255, .65); }
.rs-footer-newsletter {
    max-width: 100%;
    width: 100%;
    min-width: 0;
}

.rs-footer-contact-line {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.rs-footer-newsletter .rs-footer-heading,
.rs-footer-newsletter p {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.rs-footer .form-control {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.rs-footer .form-control::placeholder { color: rgba(226, 236, 255, .82); }

.rs-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    align-items: stretch;
}
.rs-newsletter-form .form-control,
.rs-newsletter-form .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    display: block;
    margin: 0;
}
.rs-newsletter-form .form-control {
    min-height: 44px;
    border-radius: 8px;
    padding: .68rem .78rem;
    font-size: .86rem;
}
.rs-newsletter-form .btn {
    min-height: 44px;
    border-radius: 8px;
    font-weight: 800;
    padding: .68rem .78rem;
}
.rs-newsletter-form .btn.btn-primary {
    box-shadow: none;
}
.rs-newsletter-form .btn.btn-primary:hover {
    box-shadow: none;
    transform: none;
}
.rs-newsletter-alert {
    margin-bottom: .8rem;
    border: 1px solid rgba(15, 186, 157, .34);
    border-radius: 8px;
    background: rgba(15, 186, 157, .12);
    color: #c9fff2;
    font-size: .84rem;
    font-weight: 700;
    padding: .68rem .78rem;
}
.rs-newsletter-error {
    color: #ffd6d6;
    font-size: .84rem;
    margin: .6rem 0 0;
}

.rs-blog-detail-section {
    background:
        radial-gradient(circle at 12% 0%, rgba(214, 162, 58, .1), transparent 34%),
        linear-gradient(180deg, #f7f9fd 0%, #eef3f9 100%);
    scroll-behavior: smooth;
}

.rs-blog-detail-section .rs-blog-article-wrap,
.rs-blog-detail-section .rs-blog-toc,
.rs-blog-detail-section.rs-section {
    opacity: 1;
    transform: none;
    filter: none;
}

.rs-blog-detail-section .rs-reveal-card {
    overflow: visible;
}

.rs-blog-detail-section .container,
.rs-blog-detail-section .row {
    overflow: visible;
}

.rs-blog-article-header {
    max-width: 880px;
    margin: 0 auto 2rem;
}

.rs-blog-body-row {
    justify-content: center;
}

@media (min-width: 992px) {
    .rs-blog-body-row {
        flex-wrap: nowrap;
    }

    .rs-blog-toc-col {
        position: sticky;
        top: 88px;
        align-self: flex-start;
        z-index: 6;
        padding-left: 1.35rem;
    }
}

.rs-blog-toc {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(73, 109, 151, .18);
    border-radius: 14px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 14px 34px rgba(11, 18, 32, .08);
    backdrop-filter: blur(14px);
    padding: 1rem;
}

.rs-blog-toc-label {
    flex: 0 0 auto;
    display: block;
    color: #0b1220;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .7rem;
}

.rs-blog-toc-nav-wrap {
    position: relative;
    flex: 1 1 auto;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(248, 250, 252, .9), rgba(255, 255, 255, .75));
}

.rs-blog-toc-nav-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2rem;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .96));
}

.rs-blog-toc-nav {
    display: grid;
    gap: .15rem;
    max-height: 300px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scroll-behavior: smooth;
    padding: .35rem .2rem .75rem 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(37, 99, 235, .4) transparent;
}

.rs-blog-toc-nav::-webkit-scrollbar {
    width: 6px;
}

.rs-blog-toc-nav::-webkit-scrollbar-thumb {
    background: rgba(37, 99, 235, .35);
    border-radius: 999px;
}

.rs-blog-toc-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(37, 99, 235, .55);
}

.rs-blog-toc a {
    border-left: 2px solid transparent;
    color: #475569 !important;
    font-size: .86rem;
    font-weight: 700;
    line-height: 1.45;
    padding: .42rem .35rem .42rem .65rem;
    text-decoration: none;
    border-radius: 0 8px 8px 0;
    transition: color .3s ease, border-color .3s ease, background-color .3s ease, transform .3s ease;
}

.rs-blog-toc a.is-active {
    border-color: var(--rs-primary-deep);
    background: rgba(37, 99, 235, .1);
    color: #143f9c !important;
}

.rs-blog-article-wrap { max-width: 880px; }
.rs-blog-breadcrumb .breadcrumb { margin-bottom: 0; font-size: .9rem; }
.rs-blog-article-title {
    color: #081327;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1rem;
}
.rs-blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .85rem 1.35rem;
    color: #64748b;
    font-size: .94rem;
    font-weight: 700;
    margin-bottom: 1.45rem;
}
.rs-blog-article-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border: 1px solid rgba(73, 109, 151, .18);
    border-radius: 12px;
    box-shadow: var(--rs-shadow-sm);
    margin-bottom: 0;
}
.rs-blog-content {
    max-width: 820px;
    color: #1f2937;
    font-size: 1.06rem;
    line-height: 1.9;
}

.rs-blog-detail-section .rs-blog-content {
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(73, 109, 151, .14);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(11, 18, 32, .06);
    padding: clamp(1.35rem, 3vw, 2.2rem);
    transition: box-shadow .35s ease, border-color .35s ease;
}
.rs-blog-content h2,
.rs-blog-content h3,
.rs-blog-content h4 {
    scroll-margin-top: 110px;
    color: #0b1220;
    font-weight: 800;
    line-height: 1.22;
}
.rs-blog-content h2 { margin: 2.35rem 0 .75rem; font-size: 1.78rem; }
.rs-blog-content h3 { margin: 1.8rem 0 .65rem; font-size: 1.34rem; }
.rs-blog-content p { margin-bottom: 1.15rem; }
.rs-blog-content ul,
.rs-blog-content ol { padding-left: 1.35rem; margin: 0 0 1.35rem; }
.rs-blog-content li { margin-bottom: .45rem; }
.rs-blog-content a {
    color: var(--rs-primary-deep) !important;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.rs-blog-content blockquote {
    margin: 1.75rem 0;
    border-left: 4px solid var(--rs-gold);
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--rs-shadow-sm);
    padding: 1rem 1.2rem;
    color: #334155;
    font-weight: 700;
}

.rs-blog-content img.rs-blog-inline-media {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 12px;
    border: 1px solid rgba(73, 109, 151, .16);
    box-shadow: var(--rs-shadow-sm);
}

.rs-blog-content .rs-blog-video-embed {
    margin: 1.75rem 0;
}

.rs-blog-content .rs-blog-video-embed iframe,
.rs-blog-content .rs-blog-video-embed video {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 220px;
    border: 0;
    border-radius: 12px;
    background: #0f172a;
    box-shadow: var(--rs-shadow-sm);
}
.rs-blog-toc a:hover,
.rs-blog-toc a:focus-visible {
    border-color: var(--rs-gold);
    background: rgba(214, 162, 58, .08);
    color: #0b1220 !important;
    transform: translateX(2px);
}

.rs-blog-toc a.is-sub {
    margin-left: .7rem;
    font-size: .8rem;
}

.rs-blog-toc p {
    color: #64748b;
    font-size: .88rem;
    margin: 0;
}

.rs-blog-tags {
    max-width: 760px;
    margin-top: 3rem;
    padding-top: 1.4rem;
    border-top: 1px solid #dbe5f2;
}
.rs-blog-tags h5 {
    color: #0b1220;
    font-weight: 800;
    margin-bottom: .9rem;
}

.rs-reveal-card { position: relative; overflow: hidden; }
.rs-reveal-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity .25s ease;
    background: radial-gradient(260px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(59, 130, 246, .2), rgba(20, 184, 166, .08) 38%, transparent 68%);
}
.rs-reveal-card:hover::after { opacity: 1; }

.rs-animate { animation: rsFadeUp .75s ease both; }
.rs-animate-delay-1 { animation-delay: .12s; }
.rs-animate-delay-2 { animation-delay: .24s; }
@keyframes rsFadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 991.98px) {
    .rs-navbar { min-height: 66px; padding: 0 .95rem !important; flex-wrap: wrap; }
    .rs-menu-toggle { display: block; margin-left: auto; }
    .rs-menu-panel { display: none; flex-basis: 100%; padding: .4rem 0 .95rem; }
    .rs-menu-panel.is-open { display: block; }
    .rs-menu-links { align-items: stretch; flex-direction: column; gap: .4rem; }
    .rs-navbar .nav-link { border-radius: 11px; padding: .7rem .8rem !important; }
    .rs-nav-cta { margin-top: .3rem; justify-content: center; }
    .rs-hero { min-height: auto; padding: 4.2rem 0 3.4rem; }
    .rs-hero h1 { font-size: clamp(1.9rem, 8vw, 3rem); }
    .rs-trust-strip { margin-top: 0; padding-top: 1.05rem; }
    .rs-section { padding: 3.75rem 0; }
    .rs-process::before { display: none; }
    .rs-blog-toolbar { align-items: stretch; }
    .rs-blog-search { max-width: none; flex-basis: 100%; }
}

@media (max-width: 767.98px) {
    .rs-hero-actions .btn,
    .rs-hero-actions a {
        width: 100%;
        justify-content: center;
    }
    .rs-section-title p { font-size: .95rem; }
    .rs-about-image { min-height: 300px; }
    .rs-blog-page { padding: 2.5rem 0 3.75rem; }
    .rs-blog-card-meta { flex-direction: column; align-items: flex-start; }
    .rs-blog-card-arrow { align-self: flex-end; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

.rs-blog-article-wrap {
    max-width: 820px;
}

.rs-blog-breadcrumb .breadcrumb {
    margin-bottom: 0;
    font-size: .9rem;
    font-weight: 700;
}

.rs-blog-article-title {
    color: #0b1220;
    font-size: clamp(2rem, 4.2vw, 3.45rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
    margin-bottom: 1rem;
}

.rs-blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.15rem;
    color: #556174;
    font-weight: 700;
    margin-bottom: 1.45rem;
}

.rs-blog-article-image {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--rs-shadow-lg);
    margin: .8rem 0 2rem;
}

.rs-blog-content {
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(73, 109, 151, .18);
    border-radius: 8px;
    box-shadow: var(--rs-shadow-sm);
    color: #1d2939;
    font-size: 1.02rem;
    line-height: 1.85;
    padding: clamp(1.35rem, 3vw, 2.4rem);
}

.rs-blog-content h2,
.rs-blog-content h3,
.rs-blog-content h4 {
    color: #0b1220;
    font-weight: 800;
    line-height: 1.2;
    scroll-margin-top: 110px;
    transition: color .3s ease;
}

.rs-blog-content h2 { font-size: 1.65rem; margin: 2rem 0 .75rem; }
.rs-blog-content h3 { font-size: 1.28rem; margin: 1.55rem 0 .65rem; }
.rs-blog-content h4 { font-size: 1.08rem; margin: 1.25rem 0 .55rem; }
.rs-blog-content p { margin-bottom: 1.05rem; }
.rs-blog-content ul,
.rs-blog-content ol { padding-left: 1.35rem; margin-bottom: 1.15rem; }
.rs-blog-content li { margin-bottom: .4rem; }
.rs-blog-content a { font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.rs-blog-content blockquote {
    border-left: 4px solid var(--rs-gold);
    background: #f8fafc;
    color: #334155;
    margin: 1.4rem 0;
    padding: 1rem 1.15rem;
}
.rs-blog-content code {
    border-radius: 6px;
    background: #edf2f7;
    color: #143f9c;
    padding: .15rem .35rem;
}
.rs-blog-content pre {
    overflow-x: auto;
    border-radius: 8px;
    background: #08111f;
    color: #dbeafe;
    padding: 1rem;
}

.rs-blog-tags {
    margin-top: 1.7rem;
}

.rs-blog-toc-col {
    display: block;
}

.rs-admin-editor {
    overflow: hidden;
    border: 1px solid #cfd9e8;
    border-radius: 8px;
    background: #fff;
}

.rs-admin-editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
    padding: .55rem;
}

.rs-admin-editor-toolbar button {
    width: 34px;
    min-width: 34px;
    height: 32px;
    border: 1px solid #cbd5e1;
    border-radius: 7px;
    background: #fff;
    color: #0f172a;
    font-size: .8rem;
    font-weight: 800;
}

.rs-admin-editor-toolbar button:hover {
    border-color: #2563eb;
    color: #143f9c;
}

.rs-admin-editor-canvas {
    min-height: 320px;
    color: #111827;
    outline: 0;
    overflow-y: auto;
    padding: 1rem;
}

.rs-admin-editor-canvas:empty::before {
    content: attr(data-placeholder);
    color: #94a3b8;
}

.rs-admin-editor-canvas h2,
.rs-admin-editor-canvas h3,
.rs-admin-editor-canvas h4 {
    font-weight: 800;
}

.rs-admin-editor-canvas p {
    margin: .55rem 0;
}

.rs-admin-editor-canvas ul,
.rs-admin-editor-canvas ol {
    margin: .55rem 0;
    padding-left: 1.45rem;
}

.rs-admin-editor-canvas li {
    margin-bottom: .25rem;
}

.rs-admin-editor-canvas blockquote {
    margin: .75rem 0;
    padding: .65rem .9rem;
    border-left: 4px solid #cbd5e1;
    background: #f8fafc;
    color: #475569;
}

@media (max-width: 991.98px) {
    .rs-blog-toc-col {
        position: static;
    }

    .rs-blog-toc {
        position: static;
    }
}

/* Hero polish and additional technology visuals */
body .rs-hero--saas .rs-hero-actions .rs-hero-secondary-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 192px;
    border: 1px solid rgba(37, 99, 235, .45) !important;
    background: #ffffff !important;
    color: #143f9c !important;
    font-weight: 800;
    opacity: 1 !important;
    box-shadow: 0 16px 36px rgba(37, 99, 235, .18);
}

body .rs-hero--saas .rs-hero-actions .rs-hero-secondary-cta i,
body .rs-hero--saas .rs-hero-actions .rs-hero-secondary-cta * {
    color: #143f9c !important;
    opacity: 1 !important;
}

.rs-hero-panel--scene {
    left: 28px !important;
    right: auto !important;
    bottom: 24px !important;
    width: min(305px, calc(100% - 56px)) !important;
    padding: .64rem .8rem !important;
    background: rgba(255, 255, 255, .84) !important;
    border-color: rgba(37, 99, 235, .18) !important;
    color: #10213a !important;
}

.rs-hero-panel--scene .rs-stack-item {
    gap: .58rem;
    padding: .48rem 0 !important;
}

.rs-hero-panel--scene .rs-stack-item i {
    width: 32px;
    height: 32px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #0fba9d);
}

.rs-hero-panel--scene .rs-stack-item strong {
    color: #10213a;
    font-size: .88rem;
}

.rs-hero-panel--scene .rs-stack-item span {
    color: #52637c !important;
    display: block;
    font-size: .74rem;
    line-height: 1.42;
}

.rs-tech-visuals {
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(37, 99, 235, .09), transparent 30%),
        radial-gradient(circle at 86% 16%, rgba(15, 186, 157, .1), transparent 28%),
        linear-gradient(180deg, #f7fbff 0%, #edf4ff 100%);
}

.rs-tech-card {
    position: relative;
    min-height: 420px;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 26px 70px rgba(15, 23, 42, .11);
    padding: 1.25rem;
    backdrop-filter: blur(14px);
}

.rs-tech-card h3 {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 4.95rem;
    color: #0b1220;
    font-size: 1.18rem;
    font-weight: 800;
    margin: 0;
}

.rs-tech-card p {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.15rem;
    color: #53657d;
    font-size: .92rem;
    line-height: 1.6;
    margin: 0;
}

.rs-code-window {
    position: absolute;
    inset: 1.2rem 1.2rem 9rem;
    border: 10px solid #5b6ee8;
    border-bottom-width: 24px;
    border-radius: 8px;
    background: #171b3f;
    box-shadow: 0 30px 60px rgba(91, 110, 232, .22);
}

.rs-code-window > span {
    position: absolute;
    top: 13px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #b7c8ff;
}
.rs-code-window > span:nth-child(1) { left: 16px; }
.rs-code-window > span:nth-child(2) { left: 36px; }
.rs-code-window > span:nth-child(3) { left: 56px; }

.rs-code-window div {
    height: 10px;
    margin: 18px 22px 0 54px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 194, 209, .48), rgba(151, 164, 220, .6));
    animation: rsCodeLine 3.2s ease-in-out infinite;
}
.rs-code-window div:nth-of-type(2) { width: 72%; animation-delay: .2s; }
.rs-code-window div:nth-of-type(3) { width: 55%; animation-delay: .4s; }
.rs-code-window div:nth-of-type(4) { width: 82%; animation-delay: .6s; }
.rs-code-window div:nth-of-type(5) { width: 62%; animation-delay: .8s; }

.rs-server-stack {
    position: absolute;
    top: 1.4rem;
    left: 50%;
    width: 220px;
    height: 250px;
    transform: translateX(-50%) rotateX(58deg) rotateZ(-35deg);
    transform-style: preserve-3d;
}

.rs-server-stack span {
    position: absolute;
    left: 0;
    right: 0;
    height: 46px;
    border: 1px solid rgba(37, 99, 235, .18);
    border-radius: 6px;
    background: linear-gradient(135deg, #e7f4ff, #b9d5ec);
    box-shadow: 18px 18px 34px rgba(38, 74, 116, .18);
    animation: rsServerFloat 4.4s ease-in-out infinite;
}
.rs-server-stack span:nth-child(1) { top: 0; }
.rs-server-stack span:nth-child(2) { top: 54px; animation-delay: .2s; }
.rs-server-stack span:nth-child(3) { top: 108px; animation-delay: .4s; }
.rs-server-stack span:nth-child(4) { top: 162px; animation-delay: .6s; }

.rs-server-stack i,
.rs-server-stack b {
    position: absolute;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #16a34a;
    box-shadow: 0 0 12px rgba(22, 163, 74, .8);
}
.rs-server-stack i:nth-child(1) { left: 26px; }
.rs-server-stack i:nth-child(2) { left: 44px; background: #38bdf8; }
.rs-server-stack i:nth-child(3) { left: 62px; background: #f472b6; }
.rs-server-stack b {
    right: 26px;
    width: 34px;
    height: 5px;
    border-radius: 999px;
    background: #2563eb;
}
.rs-server-stack b:nth-of-type(2) { right: 70px; width: 24px; background: #0fba9d; }
.rs-server-stack b:nth-of-type(3) { right: 104px; width: 18px; background: #93c5fd; }

.rs-security-console {
    position: absolute;
    inset: 1.2rem 1.2rem 9rem;
    border-radius: 8px;
    overflow: hidden;
    background:
        radial-gradient(circle at 52% 48%, rgba(56, 189, 248, .34), transparent 22%),
        radial-gradient(circle at 50% 50%, #143f9c 0%, #08162d 42%, #020816 100%);
    box-shadow: 0 30px 72px rgba(2, 8, 22, .3);
}

.rs-security-console::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(147, 197, 253, .8) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: .28;
}

.rs-security-orbit,
.rs-security-pulse {
    position: absolute;
    inset: 50%;
    width: 126px;
    height: 126px;
    margin: -63px;
    border: 1px solid rgba(125, 211, 252, .55);
    border-radius: 999px;
    animation: rsOrbit 7s linear infinite;
}

.rs-security-pulse {
    width: 58px;
    height: 58px;
    margin: -29px;
    background: rgba(37, 99, 235, .25);
    box-shadow: 0 0 40px rgba(56, 189, 248, .55);
    animation: rsPulse 2.4s ease-in-out infinite;
}

.rs-security-bars {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 22px;
    display: flex;
    gap: 8px;
}

.rs-security-bars span {
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #38bdf8, #2563eb);
    animation: rsBarGlow 2s ease-in-out infinite;
}
.rs-security-bars span:nth-child(2) { animation-delay: .3s; }
.rs-security-bars span:nth-child(3) { animation-delay: .6s; }

@keyframes rsCodeLine {
    0%, 100% { opacity: .5; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(12px); }
}

@keyframes rsServerFloat {
    0%, 100% { transform: translateZ(0); }
    50% { transform: translateZ(12px); }
}

@keyframes rsOrbit {
    to { transform: rotate(360deg); }
}

@keyframes rsPulse {
    0%, 100% { transform: scale(.9); opacity: .75; }
    50% { transform: scale(1.14); opacity: 1; }
}

@keyframes rsBarGlow {
    0%, 100% { opacity: .45; }
    50% { opacity: 1; }
}

@media (max-width: 767.98px) {
    .rs-hero-panel--scene {
        left: 18px !important;
        right: 18px !important;
        width: auto !important;
    }

    .rs-tech-card {
        min-height: 380px;
    }
}

/* Restored premium motion + footer overrides */
:root {
    --rs-primary: #2563eb;
    --rs-primary-deep: #143f9c;
    --rs-accent: #0fba9d;
    --rs-gold: #d6a23a;
    --rs-ink: #0b1220;
    --rs-muted: #4b5870;
    --rs-body: #f4f7fb;
    --rs-line: #d8e1ee;
    --rs-radius: 8px;
    --rs-shadow-sm: 0 12px 32px rgba(11, 18, 32, 0.08);
    --rs-shadow-lg: 0 28px 70px rgba(11, 18, 32, 0.18);
}

body {
    background:
        radial-gradient(circle at 0% -10%, rgba(214, 162, 58, .16) 0, transparent 34%),
        radial-gradient(circle at 100% 8%, rgba(37, 99, 235, .12) 0, transparent 36%),
        var(--rs-body);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .34;
    background:
        radial-gradient(420px circle at var(--cursor-x, 50vw) var(--cursor-y, 35vh), rgba(37, 99, 235, .055), transparent 52%),
        linear-gradient(180deg, rgba(255, 255, 255, .14), transparent 42%);
    transition: opacity .2s ease;
}

.rs-site-shell {
    position: relative;
    z-index: 1;
}

.rs-hero {
    background:
        radial-gradient(circle at 15% 12%, rgba(71, 126, 218, .48), transparent 48%),
        radial-gradient(circle at 88% 8%, rgba(214, 162, 58, .26), transparent 36%),
        radial-gradient(circle at 72% 84%, rgba(15, 186, 157, .22), transparent 38%),
        linear-gradient(128deg, #050b16 0%, #10264d 58%, #173f89 100%);
}

.rs-hero-panel {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(15, 32, 62, .52), rgba(74, 104, 140, .36)),
        rgba(255, 255, 255, .1);
}

.rs-hero-panel::before {
    content: "API_GATEWAY  CLOUD_SYNC  ZERO_TRUST  CI/CD_PIPELINE\A0101  1100  1010  0110  1001  0011  1110\AAUTOMATION  DASHBOARD  ENCRYPTION  MONITORING\Adeploy --secure  migrate --cloud  audit --live\AWEB_APPS  AI_WORKFLOWS  DEVOPS  BACKUP  SUPPORT";
    position: absolute;
    inset: -22% -12%;
    z-index: 0;
    color: rgba(214, 232, 255, .32);
    font-family: Consolas, "Courier New", monospace;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 2.35;
    white-space: pre;
    transform: rotate(-18deg);
    animation: rsCodeDrift 9s linear infinite;
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.rs-stack-item {
    position: relative;
    z-index: 1;
}

.rs-footer {
    position: static;
    overflow-x: clip;
    overflow-y: visible;
    background:
        radial-gradient(circle at 14% 12%, rgba(37, 99, 235, .14), transparent 34%),
        radial-gradient(circle at 88% 22%, rgba(214, 162, 58, .16), transparent 30%),
        linear-gradient(155deg, #05070d 0%, #0b1320 52%, #132033 100%) !important;
    border-top: 1px solid rgba(214, 162, 58, .22);
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.rs-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: .35;
}

.rs-footer > .container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1140px;
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
}

.rs-footer .row > [class*="col-"] {
    min-width: 0;
}

.rs-footer--static {
    position: static;
    bottom: auto;
    width: 100%;
}

.rs-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .48rem;
    margin: -.25rem 0 1rem;
}

.rs-footer-badges span {
    border: 1px solid rgba(214, 162, 58, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: #f8e4b9;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .02em;
    padding: .32rem .62rem;
}

.rs-footer a,
.rs-footer .btn-link,
.rs-footer .text-white-50 {
    color: rgba(232, 238, 247, .72) !important;
}

.rs-footer a:hover,
.rs-footer a:focus-visible,
.rs-footer .btn-link:hover,
.rs-footer .btn-link:focus-visible {
    color: #f4d68f !important;
}

.rs-footer .border-bottom {
    border-color: rgba(214, 162, 58, .46) !important;
}

.rs-footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 1.15rem 0;
}

.rs-footer-copyright {
    position: relative;
    z-index: 3;
    margin-top: .25rem;
    padding: 1.15rem 0 1.4rem;
    border-top: 1px solid rgba(214, 162, 58, .2);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(0, 0, 0, .12)),
        rgba(4, 8, 14, .45);
}

.rs-footer-copyright-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
}

.rs-footer-copyright-brand {
    display: flex;
    align-items: center;
}

.rs-footer-copyright-text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .45rem .55rem;
    color: rgba(226, 232, 240, .84);
    font-size: .9rem;
    line-height: 1.55;
}

.rs-footer-copyright-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    color: #f4d68f;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    transform: translateY(-.5px);
}

.rs-footer-copyright-brand strong {
    color: #f8fafc;
    font-weight: 700;
    letter-spacing: .01em;
}

.rs-footer-copyright-divider {
    width: 1px;
    height: 14px;
    background: rgba(148, 163, 184, .45);
}

.rs-footer-copyright-note {
    color: rgba(148, 163, 184, .92);
    font-size: .82rem;
    font-weight: 500;
}

.rs-footer-copyright-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .7rem;
}

.rs-footer-copyright-links a {
    color: rgba(226, 232, 240, .78) !important;
    font-size: .84rem;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.rs-footer-copyright-links a:hover,
.rs-footer-copyright-links a:focus-visible {
    color: #f4d68f !important;
    transform: translateY(-1px);
}

.rs-footer-copyright-dot {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(214, 162, 58, .65);
}

.rs-footer.rs-reveal-card::after {
    z-index: 2;
    opacity: 0;
    background:
        radial-gradient(360px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(244, 214, 143, .18), rgba(15, 186, 157, .105) 32%, rgba(37, 99, 235, .08) 52%, transparent 74%);
}

.rs-footer.rs-reveal-card:hover::after {
    opacity: .9;
}

.rs-reveal-card::after {
    background: radial-gradient(240px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, .105), rgba(214, 162, 58, .075) 30%, rgba(37, 99, 235, .055) 48%, transparent 72%);
}

.rs-reveal-card:hover::after {
    opacity: .72;
}

.rs-scroll-reveal {
    opacity: 0;
    transform: translateY(26px) scale(.985);
    filter: blur(7px);
    transition:
        opacity .7s ease var(--reveal-delay, 0ms),
        transform .7s cubic-bezier(.2, .8, .2, 1) var(--reveal-delay, 0ms),
        filter .7s ease var(--reveal-delay, 0ms);
}

.rs-scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

@keyframes rsCodeDrift {
    from { transform: translate3d(-7%, -4%, 0) rotate(-18deg); }
    to { transform: translate3d(7%, 10%, 0) rotate(-18deg); }
}

@media (max-width: 767.98px) {
    .rs-newsletter-form { grid-template-columns: 1fr; }
}

.rs-hero--saas {
    min-height: 720px;
    background:
        radial-gradient(circle at 82% 18%, rgba(59, 130, 246, .22), transparent 28%),
        radial-gradient(circle at 18% 8%, rgba(15, 186, 157, .14), transparent 30%),
        linear-gradient(135deg, #f8fbff 0%, #eef5ff 48%, #e8f1ff 100%);
    color: #0b1220;
}

.rs-hero--saas::before {
    opacity: .5;
    background:
        linear-gradient(rgba(37, 99, 235, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, .07) 1px, transparent 1px);
}

.rs-hero--saas .rs-eyebrow {
    color: #1d4ed8;
}

.rs-hero--saas .rs-hero h1,
.rs-hero--saas h1 {
    color: #08111f;
    max-width: 720px;
}

.rs-hero--saas p {
    color: #40516b;
}

.rs-hero--saas .btn.btn-outline-light {
    border-color: rgba(37, 99, 235, .28);
    color: #143f9c !important;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 14px 32px rgba(37, 99, 235, .12);
}

.rs-hero--saas .rs-hero-actions .btn.btn-outline-light,
.rs-hero--saas .rs-hero-actions a.btn-outline-light,
.rs-hero--saas .rs-hero-actions .btn.btn-outline-light i {
    color: #143f9c !important;
    text-shadow: none !important;
}

.rs-hero--saas .rs-hero-actions .btn.btn-outline-light {
    background: rgba(255, 255, 255, .96) !important;
}

body .rs-hero--saas .rs-hero-actions .rs-hero-secondary-cta,
body .rs-hero--saas .rs-hero-actions .rs-hero-secondary-cta i {
    color: #143f9c !important;
    opacity: 1 !important;
}

.rs-hero--saas .btn.btn-outline-light:hover {
    background: #fff;
    color: #0b1220 !important;
}

.rs-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    max-width: 640px;
    margin-top: 2rem;
}

.rs-hero-metrics div {
    border: 1px solid rgba(37, 99, 235, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
    padding: .85rem .95rem;
    backdrop-filter: blur(12px);
}

.rs-hero-metrics strong {
    display: block;
    color: #143f9c;
    font-size: 1.02rem;
    font-weight: 800;
}

.rs-hero-metrics span {
    color: #5b6b83;
    font-size: .78rem;
    font-weight: 700;
}

.rs-hero-scene-shell {
    position: relative;
    min-height: 560px;
    container-type: inline-size;
    container-name: hero-scene;
    border: 1px solid rgba(37, 99, 235, .14);
    border-radius: 8px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(232, 241, 255, .54)),
        radial-gradient(circle at 70% 28%, rgba(37, 99, 235, .18), transparent 36%);
    box-shadow: 0 34px 90px rgba(15, 23, 42, .16);
    backdrop-filter: blur(18px);
}

.rs-hero-scene-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 560px;
    height: 560px;
    transform: translate(-50%, -50%) scale(min(1, calc(100cqw / 560px)));
    transform-origin: center center;
}

.rs-hero-scene-inner .rs-hero-three {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.rs-hero-scene-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(37, 99, 235, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, .06) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: .7;
}

.rs-hero-three {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.rs-scene-panel,
.rs-scene-tile,
.rs-hero-panel--scene {
    position: absolute;
    z-index: 3;
    border: 1px solid rgba(37, 99, 235, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 22px 54px rgba(15, 23, 42, .14);
    backdrop-filter: blur(14px);
}

.rs-scene-panel--dashboard {
    top: 34px;
    left: 32px;
    width: 220px;
    padding: .9rem;
    animation: rsFloatPanel 6s ease-in-out infinite;
}

.rs-scene-panel-head {
    display: flex;
    gap: .28rem;
    margin-bottom: .7rem;
}

.rs-scene-panel-head span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #93c5fd;
}

.rs-scene-panel strong {
    color: #10213a;
    display: block;
    font-size: .88rem;
    font-weight: 800;
    margin-bottom: .6rem;
}

.rs-scene-chart {
    display: flex;
    align-items: end;
    gap: .38rem;
    height: 74px;
}

.rs-scene-chart span {
    flex: 1;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, #2563eb, #8bd7ff);
    box-shadow: 0 10px 24px rgba(37, 99, 235, .2);
}

.rs-scene-tile {
    display: inline-flex;
    align-items: center;
    gap: .48rem;
    min-width: 128px;
    color: #10213a;
    font-size: .8rem;
    font-weight: 800;
    padding: .72rem .8rem;
    animation: rsFloatPanel 7s ease-in-out infinite;
}

.rs-scene-tile i {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #0fba9d);
}

.rs-scene-tile--cloud { top: 124px; right: 34px; animation-delay: .4s; }
.rs-scene-tile--security { top: 232px; left: 44px; animation-delay: .9s; }
.rs-scene-tile--database { right: 44px; bottom: 148px; animation-delay: 1.3s; }
.rs-scene-tile--api { left: 120px; bottom: 64px; animation-delay: 1.7s; }

.rs-hero-panel--scene {
    right: 28px;
    bottom: 28px;
    width: min(360px, calc(100% - 56px));
    padding: .85rem 1rem;
    background: rgba(13, 31, 61, .78);
    border-color: rgba(255, 255, 255, .22);
    color: #fff;
}

.rs-hero-panel--scene::before {
    opacity: .7;
}

.rs-hero-panel--scene .rs-stack-item {
    padding: .68rem 0;
}

.rs-hero-panel--scene .rs-stack-item span {
    color: #d8e9ff;
}

@keyframes rsFloatPanel {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -10px, 0); }
}

@media (max-width: 991.98px) {
    .rs-hero--saas {
        padding-top: 4rem;
    }

    .rs-hero-scene-shell {
        min-height: 520px;
    }
}

@media (max-width: 767.98px) {
    .rs-hero--saas h1 {
        max-width: 100%;
        font-size: clamp(1.85rem, 8.4vw, 2.2rem);
        line-height: 1.14;
        overflow-wrap: break-word;
    }

    .rs-hero--saas p {
        max-width: 100%;
    }

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

    .rs-hero-scene-shell {
        min-height: 610px;
    }

    .rs-scene-panel--dashboard {
        left: 18px;
        right: 18px;
        width: auto;
    }

    .rs-scene-tile--cloud { top: 154px; right: 18px; }
    .rs-scene-tile--security { top: 240px; left: 18px; }
    .rs-scene-tile--database { right: 18px; bottom: 190px; }
    .rs-scene-tile--api { left: 18px; bottom: 132px; }
    .rs-hero-panel--scene {
        left: 18px;
        right: 18px;
        width: auto;
        bottom: 18px;
    }
}

@media (max-width: 991.98px) {
    .rs-blog-toc-col {
        position: static;
    }

    .rs-blog-toc {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .rs-newsletter-form {
        grid-template-columns: 1fr;
    }

    .rs-blog-article-title {
        font-size: 2rem;
    }

    .rs-blog-content {
        font-size: 1rem;
    }
}

/* ── Premium homepage redesign ── */

body {
    background:
        radial-gradient(circle at 0% -10%, rgba(37, 99, 235, .08) 0, transparent 38%),
        radial-gradient(circle at 100% 12%, rgba(15, 186, 157, .06) 0, transparent 34%),
        linear-gradient(180deg, #eef2f8 0%, #f4f7fb 40%, #eef2f8 100%);
}

.rs-section-dark {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(37, 99, 235, .18), transparent 34%),
        radial-gradient(circle at 88% 72%, rgba(15, 186, 157, .12), transparent 32%),
        radial-gradient(circle at 50% 100%, rgba(214, 162, 58, .08), transparent 40%),
        linear-gradient(155deg, #050b16 0%, #0a1628 48%, #0f2244 100%);
    color: #e2e8f0;
}

.rs-section-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .28;
    background:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 48px 48px;
}

.rs-section-dark > .container {
    position: relative;
    z-index: 1;
}

.rs-eyebrow--light {
    color: #93c5fd !important;
}

.rs-heading-light {
    color: #f8fafc;
    font-size: clamp(1.75rem, 3.2vw, 2.55rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.12;
}

.rs-text-muted-light {
    color: #94a3b8;
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 620px;
}

.rs-lead-text {
    color: var(--rs-muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.rs-section-title--light h6 {
    color: #60a5fa;
}

.rs-section-title--light h2 {
    color: #f1f5f9;
}

/* Hero — premium dark + video */
.rs-hero--premium {
    position: relative;
    min-height: 780px;
    padding: 5.8rem 0 5rem;
    color: #fff;
    background:
        radial-gradient(circle at 18% 14%, rgba(37, 99, 235, .32), transparent 42%),
        radial-gradient(circle at 82% 20%, rgba(15, 186, 157, .18), transparent 36%),
        radial-gradient(circle at 60% 90%, rgba(214, 162, 58, .12), transparent 38%),
        linear-gradient(135deg, #030712 0%, #0a1628 42%, #0f2744 100%);
    overflow: hidden;
}

.rs-hero--premium h1 {
    color: #fff;
    max-width: 640px;
    font-size: clamp(2.15rem, 4.8vw, 3.65rem);
    line-height: 1.06;
    letter-spacing: -.025em;
    margin: .85rem 0 1rem;
}

.rs-hero--premium p {
    color: #b8cce8;
    max-width: 560px;
    font-size: 1.05rem;
}

.rs-hero--premium .btn.btn-outline-light,
.rs-hero--premium .rs-hero-secondary-cta {
    border-color: rgba(255, 255, 255, .28) !important;
    background: rgba(255, 255, 255, .06) !important;
    color: #fff !important;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .22);
}

.rs-hero--premium .rs-hero-secondary-cta i,
.rs-hero--premium .rs-hero-secondary-cta span {
    color: #fff !important;
}

.rs-hero--premium .btn.btn-outline-light:hover,
.rs-hero--premium .rs-hero-secondary-cta:hover {
    background: rgba(255, 255, 255, .14) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

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

.rs-hero-grid {
    position: absolute;
    inset: 0;
    opacity: .35;
    background:
        linear-gradient(rgba(147, 197, 253, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(147, 197, 253, .06) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

.rs-hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    animation: rsOrbFloat 12s ease-in-out infinite;
}

.rs-hero-orb--1 {
    top: -8%;
    left: -4%;
    width: 420px;
    height: 420px;
    background: rgba(37, 99, 235, .28);
}

.rs-hero-orb--2 {
    top: 20%;
    right: -6%;
    width: 360px;
    height: 360px;
    background: rgba(15, 186, 157, .2);
    animation-delay: -4s;
}

.rs-hero-orb--3 {
    bottom: -10%;
    left: 35%;
    width: 280px;
    height: 280px;
    background: rgba(214, 162, 58, .14);
    animation-delay: -7s;
}

@keyframes rsOrbFloat {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, -24px, 0) scale(1.06); }
}

.rs-glass-chip {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

.rs-hero--premium .rs-hero-metrics {
    margin-top: 2.2rem;
}

.rs-hero--premium .rs-glass-chip {
    padding: .85rem .95rem;
}

.rs-hero--premium .rs-glass-chip strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
}

.rs-hero--premium .rs-glass-chip span {
    color: #94a3b8;
    font-size: .76rem;
    font-weight: 700;
}

.rs-trust-strip .rs-trust-item.rs-glass-chip {
    background: rgba(255, 255, 255, .92);
    border-color: rgba(37, 99, 235, .12);
    color: #334155;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .1);
}

.rs-trust-strip .rs-trust-item i {
    color: var(--rs-accent);
}

/* Hero video showcase */
.rs-hero-video-shell {
    position: relative;
    min-height: auto;
}

.rs-hero-video-frame {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(8, 17, 35, .85);
    box-shadow:
        0 40px 90px rgba(0, 0, 0, .45),
        0 0 0 1px rgba(255, 255, 255, .06) inset;
    backdrop-filter: blur(20px);
    animation: rsFloatPanel 7s ease-in-out infinite;
    line-height: 0;
}

.rs-hero-video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    vertical-align: middle;
}

.rs-hero-video-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(3, 7, 18, .08) 0%, transparent 28%, transparent 72%, rgba(3, 7, 18, .22) 100%),
        linear-gradient(135deg, rgba(37, 99, 235, .12), transparent 55%);
}

.rs-hero-video-glow {
    position: absolute;
    inset: 10% 8%;
    z-index: 0;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(37, 99, 235, .35), rgba(15, 186, 157, .12) 45%, transparent 70%);
    filter: blur(40px);
    animation: rsPulse 4s ease-in-out infinite;
}

.rs-hero-float-badge {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .65rem .9rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(8, 17, 35, .78);
    backdrop-filter: blur(16px);
    color: #e2e8f0;
    font-size: .78rem;
    font-weight: 700;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .32);
    animation: rsFloatPanel 6s ease-in-out infinite;
}

.rs-hero-float-badge i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #2563eb, #0fba9d);
    color: #fff;
    font-size: .72rem;
}

.rs-hero-float-badge--top {
    top: 18px;
    left: -12px;
    animation-delay: .5s;
}

.rs-hero-float-badge--bottom {
    right: 12px;
    bottom: 22px;
    animation-delay: 1.2s;
}

/* Section dividers */
.rs-section-divider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 64px;
    pointer-events: none;
}

.rs-section-divider--hero {
    background: linear-gradient(180deg, transparent, rgba(238, 242, 248, .95));
}

.rs-section-divider--wave {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath fill='%23eef2f8' d='M0,32 C360,64 720,0 1080,32 C1260,48 1380,56 1440,48 L1440,64 L0,64 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
}

.rs-section-divider--wave-light {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath fill='%23eef2f8' d='M0,32 C360,64 720,0 1080,32 C1260,48 1380,56 1440,48 L1440,64 L0,64 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
}

/* Problem section */
.rs-problem-section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
}

.rs-problem-visual {
    position: relative;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, .04);
    box-shadow: 0 32px 72px rgba(0, 0, 0, .35);
}

.rs-problem-visual img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.rs-problem-visual-glow {
    position: absolute;
    inset: -20%;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(239, 68, 68, .18), transparent 55%);
    filter: blur(30px);
}

.rs-problem-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.rs-problem-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    color: #cbd5e1;
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: .75rem;
}

.rs-problem-list li i {
    color: #f87171;
    margin-top: .2rem;
    flex-shrink: 0;
}

/* Showcase grid */
.rs-showcase-section {
    background:
        radial-gradient(circle at 8% 12%, rgba(37, 99, 235, .07), transparent 32%),
        radial-gradient(circle at 92% 88%, rgba(15, 186, 157, .06), transparent 30%),
        linear-gradient(180deg, #eef2f8 0%, #e8eef6 100%);
}

.rs-showcase-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
}

.rs-showcase-card {
    position: relative;
    display: flex;
    flex-direction: column;
    grid-column: span 4;
    border: 1px solid rgba(37, 99, 235, .12);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 22px 55px rgba(15, 23, 42, .1);
    backdrop-filter: blur(14px);
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.rs-showcase-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, .28);
    box-shadow: 0 32px 70px rgba(15, 23, 42, .16);
}

.rs-showcase-card--featured {
    grid-column: span 12;
    flex-direction: row;
    min-height: 320px;
}

.rs-showcase-media {
    position: relative;
    overflow: hidden;
    flex: 1 1 auto;
    min-height: 220px;
    background: linear-gradient(135deg, #0a1628, #132a52);
}

.rs-showcase-card--featured .rs-showcase-media {
    flex: 0 0 58%;
    min-height: 320px;
}

.rs-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
}

.rs-showcase-media--video {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-showcase-video-el {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: contain;
    object-position: center;
}

.rs-showcase-card:hover .rs-showcase-media img {
    transform: scale(1.04);
}

.rs-showcase-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 1.65rem;
    flex: 1 1 auto;
}

.rs-showcase-card--featured .rs-showcase-content {
    flex: 1 1 42%;
    padding: 2rem 2.2rem;
}

.rs-showcase-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    width: fit-content;
    margin-bottom: .75rem;
    padding: .35rem .75rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, .1);
    color: var(--rs-primary-deep);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.rs-showcase-content h3 {
    color: #0b1220;
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: .65rem;
}

.rs-showcase-card--featured .rs-showcase-content h3 {
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.rs-showcase-content p {
    color: var(--rs-muted);
    font-size: .92rem;
    line-height: 1.65;
    margin: 0;
}

/* About / metrics section */
.rs-about-metrics-section {
    background:
        radial-gradient(circle at 100% 0%, rgba(214, 162, 58, .08), transparent 34%),
        linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.rs-contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(37, 99, 235, .14);
    border-radius: 14px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--rs-shadow-sm);
}

.rs-contact-chip i {
    color: var(--rs-primary-deep);
}

.rs-contact-chip span {
    display: block;
    color: var(--rs-muted);
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: .2rem;
}

.rs-contact-chip strong {
    color: var(--rs-primary-deep);
    font-size: 1.35rem;
    font-weight: 800;
}

.rs-metric--premium {
    border: 1px solid rgba(37, 99, 235, .12);
    background: rgba(255, 255, 255, .94);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.rs-metric--premium i {
    color: var(--rs-primary-deep);
}

.rs-metric--premium h2 {
    color: var(--rs-primary-deep);
}

.rs-metric--premium p {
    color: var(--rs-muted);
}

/* Services — dark section */
.rs-services-section .btn-outline-light {
    border-color: rgba(255, 255, 255, .28) !important;
    color: #fff !important;
    background: rgba(255, 255, 255, .06);
    font-weight: 700;
    border-radius: 12px;
    padding: .75rem 1.25rem;
    transition: background .2s ease, transform .2s ease;
}

.rs-services-section .btn-outline-light:hover {
    background: rgba(255, 255, 255, .14);
    color: #fff !important;
    transform: translateY(-2px);
}

.rs-hero--premium + .rs-trust-strip {
    margin-top: -18px;
    position: relative;
    z-index: 6;
}

.rs-service-card {
    height: 100%;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background-color .28s ease;
}

.rs-service-card-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.rs-service-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.rs-service-card:hover .rs-service-card-media img {
    transform: scale(1.04);
}

.rs-service-card-body {
    padding: 1.45rem 1.35rem;
}

.rs-service-card-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    margin: 1.45rem 1.35rem 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, .35), rgba(15, 186, 157, .25));
    color: #93c5fd;
    font-size: 1.1rem;
}

.rs-service-card-body .rs-service-card-icon,
.rs-service-card > .rs-service-card-icon {
    margin-bottom: 1rem;
}

.rs-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, .35);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .32);
}

.rs-service-card h4 {
    color: #f1f5f9;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: .65rem;
}

.rs-service-card p {
    color: #94a3b8;
    font-size: .9rem;
    line-height: 1.65;
    margin-bottom: .85rem;
}

.rs-service-link {
    color: #60a5fa !important;
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease;
}

.rs-service-link:hover {
    color: #93c5fd !important;
}

.rs-process-band {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.rs-process-step--dark {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
}

.rs-process-step--dark h5 {
    color: #f1f5f9;
    font-weight: 800;
}

.rs-process-step--dark p {
    color: #94a3b8 !important;
}

.rs-section-dark .rs-process::before {
    background: linear-gradient(90deg, transparent, rgba(148, 163, 184, .25), transparent);
}

/* Solutions section */
.rs-solutions-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(37, 99, 235, .06), transparent 40%),
        linear-gradient(180deg, #eef2f8 0%, #e8eef6 100%);
}

.rs-solution-card {
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.rs-solution-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, .3);
}

/* Contact section polish */
.rs-contact-form {
    border: 1px solid rgba(37, 99, 235, .12);
    background: rgba(255, 255, 255, .94);
}

@media (max-width: 991.98px) {
    .rs-hero--premium {
        min-height: auto;
        padding: 4.5rem 0 4rem;
    }

    .rs-hero-video-shell {
        min-height: auto;
        margin-top: .5rem;
    }

    .rs-hero-float-badge--top {
        left: 12px;
        top: 12px;
    }

    .rs-showcase-card,
    .rs-showcase-card--featured {
        grid-column: span 12;
        flex-direction: column;
    }

    .rs-showcase-card--featured .rs-showcase-media {
        flex: none;
        min-height: 240px;
    }
}

@media (max-width: 767.98px) {
    .rs-hero--premium .rs-hero-metrics {
        grid-template-columns: 1fr;
    }

    .rs-hero-float-badge {
        display: none;
    }

    .rs-problem-section,
    .rs-services-section {
        padding-top: 3.75rem;
        padding-bottom: 3.75rem;
    }

    .rs-showcase-content,
    .rs-showcase-card--featured .rs-showcase-content {
        padding: 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rs-hero-video-shell .rs-hero-video-frame,
    .rs-hero-float-badge,
    .rs-hero-orb {
        animation: none !important;
    }
}

/* ═══════════════════════════════════════════
   Cinematic 3D Welcome Hero (v2)
   ═══════════════════════════════════════════ */

body {
    background: #060a12;
}

.rs-hero--welcome {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 6.5rem 0 3rem;
    overflow: hidden;
    color: #fff;
    background: #030712;
}

.rs-hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.rs-hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    filter: blur(18px) brightness(.45) saturate(1.2);
    transform: scale(1.08);
}

.rs-hero-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(3, 7, 18, .94) 0%, rgba(3, 7, 18, .78) 42%, rgba(3, 7, 18, .35) 68%, rgba(3, 7, 18, .55) 100%),
        linear-gradient(180deg, rgba(3, 7, 18, .4) 0%, transparent 30%, rgba(3, 7, 18, .85) 100%);
}

.rs-hero-noise {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.rs-hero--welcome .rs-hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(90px);
    animation: rsOrbFloat 14s ease-in-out infinite;
}

.rs-hero--welcome .rs-hero-orb--1 {
    top: 10%;
    right: 8%;
    width: 380px;
    height: 380px;
    background: rgba(37, 99, 235, .22);
}

.rs-hero--welcome .rs-hero-orb--2 {
    bottom: 15%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: rgba(15, 186, 157, .14);
    animation-delay: -5s;
}

.rs-hero--welcome .rs-hero-orb--3 {
    top: 40%;
    left: 45%;
    width: 200px;
    height: 200px;
    background: rgba(214, 162, 58, .1);
    animation-delay: -9s;
}

.rs-hero-body {
    position: relative;
    z-index: 3;
    width: 100%;
}

.rs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .9rem;
    border: 1px solid rgba(96, 165, 250, .35);
    border-radius: 999px;
    background: rgba(37, 99, 235, .15);
    color: #93c5fd;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 24px rgba(37, 99, 235, .2);
}

.rs-hero-badge i {
    color: #fbbf24;
    font-size: .65rem;
}

.rs-hero--welcome h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5.2vw, 3.85rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
    margin-bottom: 1.1rem;
    text-shadow: 0 2px 40px rgba(0, 0, 0, .4);
}

.rs-hero-lead {
    color: #b4c5dc;
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 1.75rem;
}

.rs-hero--welcome .rs-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-bottom: 2rem;
}

.rs-hero--welcome .rs-hero-actions .btn-lg {
    border-radius: 14px;
    padding: .95rem 1.45rem;
    font-weight: 700;
    font-size: .95rem;
}

.rs-btn-glow {
    box-shadow: 0 0 0 1px rgba(96, 165, 250, .3), 0 16px 40px rgba(37, 99, 235, .4) !important;
}

.rs-btn-glow:hover {
    box-shadow: 0 0 0 1px rgba(147, 197, 253, .5), 0 20px 50px rgba(37, 99, 235, .55) !important;
}

.rs-hero--welcome .btn-outline-light {
    border-color: rgba(255, 255, 255, .25) !important;
    background: rgba(255, 255, 255, .06) !important;
    color: #fff !important;
    backdrop-filter: blur(10px);
}

.rs-hero--welcome .btn-outline-light:hover {
    background: rgba(255, 255, 255, .14) !important;
    color: #fff !important;
}

.rs-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.rs-hero-stats div {
    padding: .65rem 1rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(14px);
}

.rs-hero-stats strong {
    display: block;
    color: #fff;
    font-size: .95rem;
    font-weight: 800;
    line-height: 1.2;
}

.rs-hero-stats span {
    color: #8899b4;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* 3D Hero Stage */
.rs-hero-3d-stage {
    position: relative;
    min-height: 480px;
    perspective: 1200px;
    transform-style: preserve-3d;
    transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform .15s ease-out;
}

.rs-3d-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 420px;
    height: 420px;
    margin: -210px 0 0 -210px;
    border: 1px solid rgba(96, 165, 250, .15);
    border-radius: 999px;
    animation: rsRingSpin 20s linear infinite;
    pointer-events: none;
}

.rs-3d-ring--2 {
    width: 340px;
    height: 340px;
    margin: -170px 0 0 -170px;
    border-color: rgba(15, 186, 157, .12);
    animation-direction: reverse;
    animation-duration: 26s;
}

@keyframes rsRingSpin {
    to { transform: rotate(360deg); }
}

.rs-3d-card {
    position: absolute;
    transform-style: preserve-3d;
    transition: transform .12s ease-out, box-shadow .3s ease;
    will-change: transform;
}

.rs-3d-card-inner {
    position: relative;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(8, 17, 35, .75);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, .5),
        0 0 0 1px rgba(255, 255, 255, .06) inset,
        0 0 60px rgba(37, 99, 235, .15);
    backdrop-filter: blur(16px);
}

.rs-3d-card-inner img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.rs-3d-card-video {
    display: block;
    width: 100%;
    min-height: 280px;
    max-height: 400px;
    object-fit: cover;
    vertical-align: middle;
}

.rs-3d-chip {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .85rem;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(8, 17, 35, .82);
    backdrop-filter: blur(14px);
    color: #e2e8f0;
    font-size: .72rem;
    font-weight: 700;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .35);
    pointer-events: none;
}

.rs-3d-chip i {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #2563eb, #0fba9d);
    color: #fff;
    font-size: .65rem;
}

.rs-3d-chip--a {
    top: 8%;
    right: 4%;
    animation: rsSatFloatA 8s ease-in-out infinite;
}

.rs-3d-chip--b {
    bottom: 12%;
    left: 0;
    animation: rsSatFloatB 9s ease-in-out infinite;
}

.rs-3d-chip--c {
    top: 42%;
    right: -2%;
    animation: rsSatFloatA 7s ease-in-out infinite reverse;
}

.rs-3d-card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .12) 0%, transparent 45%, transparent 100%);
    pointer-events: none;
}

.rs-3d-label {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem .85rem;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(8, 17, 35, .88);
    color: #e2e8f0;
    font-size: .72rem;
    font-weight: 700;
    white-space: nowrap;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

.rs-3d-label i {
    color: #60a5fa;
    font-size: .65rem;
}

.rs-3d-card--hero {
    top: 50%;
    left: 50%;
    width: min(92%, 520px);
    transform: translate(-50%, -50%) translateZ(40px);
    z-index: 3;
    animation: rsHeroFloat 7s ease-in-out infinite;
}

.rs-3d-card--sat-a {
    top: 6%;
    right: 0;
    width: min(42%, 210px);
    z-index: 4;
    animation: rsSatFloatA 8s ease-in-out infinite;
}

.rs-3d-card--sat-b {
    bottom: 4%;
    left: 2%;
    width: min(42%, 210px);
    z-index: 4;
    animation: rsSatFloatB 9s ease-in-out infinite;
}

/* sat cards removed — chips used instead */

@keyframes rsHeroFloat {
    0%, 100% { transform: translate(-50%, -50%) translateZ(40px) translateY(0); }
    50% { transform: translate(-50%, -50%) translateZ(40px) translateY(-12px); }
}

@keyframes rsSatFloatA {
    0%, 100% { transform: translateY(0) translateZ(60px); }
    50% { transform: translateY(-10px) translateZ(60px); }
}

@keyframes rsSatFloatB {
    0%, 100% { transform: translateY(0) translateZ(50px); }
    50% { transform: translateY(-8px) translateZ(50px); }
}

/* Dark trust strip */
.rs-trust-strip--dark {
    position: relative;
    z-index: 5;
    margin-top: -2rem;
    padding: 0 0 2.5rem;
    background: linear-gradient(180deg, transparent, #060a12 40%);
}

.rs-trust-pill {
    display: flex;
    align-items: center;
    gap: .55rem;
    height: 100%;
    padding: .85rem 1rem;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(14px);
    color: #cbd5e1;
    font-size: .84rem;
    font-weight: 700;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.rs-trust-pill:hover {
    border-color: rgba(96, 165, 250, .35);
    background: rgba(37, 99, 235, .1);
    transform: translateY(-3px);
}

.rs-trust-pill i {
    color: #34d399;
}

/* 3D Bento Gallery */
.rs-gallery-3d {
    padding-top: 4rem;
    padding-bottom: 5rem;
}

.rs-gallery-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.15rem;
}

.rs-bento-card {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.rs-bento-card:hover {
    border-color: rgba(96, 165, 250, .3);
    box-shadow: 0 32px 70px rgba(0, 0, 0, .45), 0 0 40px rgba(37, 99, 235, .12);
}

.rs-bento-card--wide {
    grid-column: span 8;
    flex-direction: row;
    min-height: 300px;
}

.rs-bento-card--challenge {
    grid-column: span 4;
}

.rs-bento-media {
    position: relative;
    overflow: hidden;
    flex: 1 1 auto;
    min-height: 200px;
    background: #0a1628;
}

.rs-bento-card--wide .rs-bento-media {
    flex: 0 0 58%;
    min-height: 300px;
}

.rs-bento-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
}

.rs-bento-card:hover .rs-bento-media img {
    transform: scale(1.05);
}

.rs-bento-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(3, 7, 18, .5) 100%);
    pointer-events: none;
}

.rs-bento-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.35rem 1.5rem;
    flex: 1 1 auto;
}

.rs-bento-card--wide .rs-bento-body {
    padding: 1.75rem 2rem;
}

.rs-bento-tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    width: fit-content;
    margin-bottom: .65rem;
    padding: .3rem .7rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, .18);
    color: #93c5fd;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.rs-bento-tag--warn {
    background: rgba(239, 68, 68, .15);
    color: #fca5a5;
}

.rs-bento-body h3 {
    color: #f1f5f9;
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: .55rem;
}

.rs-bento-card--wide .rs-bento-body h3 {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.rs-bento-body p {
    color: #94a3b8;
    font-size: .88rem;
    line-height: 1.65;
    margin: 0;
}

.rs-bento-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: .85rem;
    color: #60a5fa !important;
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none;
    transition: gap .2s ease;
}

.rs-bento-link:hover {
    gap: .65rem;
    color: #93c5fd !important;
}

/* About metrics on dark flow */
.rs-about-metrics-section {
    background:
        radial-gradient(circle at 0% 0%, rgba(37, 99, 235, .08), transparent 40%),
        linear-gradient(180deg, #0a1018 0%, #0d1520 100%);
    color: #e2e8f0;
}

.rs-about-metrics-section .rs-eyebrow {
    color: #60a5fa;
}

.rs-about-metrics-section h2 {
    color: #f1f5f9;
}

.rs-about-metrics-section .rs-lead-text {
    color: #94a3b8;
}

.rs-about-metrics-section .rs-contact-chip {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .1);
}

.rs-about-metrics-section .rs-contact-chip span {
    color: #94a3b8;
}

.rs-about-metrics-section .rs-contact-chip strong {
    color: #93c5fd;
}

.rs-about-metrics-section .rs-metric--premium {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .1);
}

.rs-about-metrics-section .rs-metric--premium h2 {
    color: #93c5fd;
}

.rs-about-metrics-section .rs-metric--premium p {
    color: #94a3b8;
}

.rs-about-metrics-section .rs-metric--premium i {
    color: #60a5fa;
}

/* Navbar on dark hero */
.rs-navbar {
    background: rgba(3, 7, 18, .55);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.rs-navbar.is-scrolled {
    background: rgba(3, 7, 18, .92);
    border-color: rgba(255, 255, 255, .1);
}

.rs-navbar .nav-link {
    color: rgba(226, 232, 240, .85) !important;
}

.rs-navbar .nav-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, .08);
}

.rs-brand-text strong {
    color: #f1f5f9;
}

.rs-brand-text span {
    color: #64748b;
}

@media (max-width: 991.98px) {
    .rs-hero--welcome {
        min-height: auto;
        padding: 5.5rem 0 2rem;
    }

    .rs-hero-3d-stage {
        min-height: 400px;
        margin-top: 1.5rem;
    }

    .rs-3d-card--hero {
        width: min(88%, 440px);
    }

    .rs-3d-chip--a { top: 4%; right: 2%; }
    .rs-3d-chip--b { bottom: 6%; left: 2%; }
    .rs-3d-chip--c { display: none; }

    .rs-bento-card,
    .rs-bento-card--wide,
    .rs-bento-card--challenge {
        grid-column: span 12;
        flex-direction: column;
    }

    .rs-bento-card--wide .rs-bento-media {
        flex: none;
        min-height: 220px;
    }
}

@media (max-width: 767.98px) {
    .rs-hero--welcome h1 {
        font-size: clamp(1.9rem, 8vw, 2.4rem);
    }

    .rs-hero-3d-stage {
        min-height: 360px;
    }

    .rs-3d-chip {
        font-size: .65rem;
        padding: .45rem .7rem;
    }

    .rs-3d-label {
        font-size: .62rem;
        padding: .3rem .6rem;
    }

    .rs-hero--welcome .rs-hero-actions .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .rs-trust-strip--dark {
        margin-top: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rs-3d-card--hero,
    .rs-3d-chip,
    .rs-3d-ring {
        animation: none !important;
    }
}

/* Restore original premium layout (not cinematic) */
body {
    background:
        radial-gradient(circle at 0% -10%, rgba(37, 99, 235, .08) 0, transparent 38%),
        radial-gradient(circle at 100% 12%, rgba(15, 186, 157, .06) 0, transparent 34%),
        linear-gradient(180deg, #eef2f8 0%, #f4f7fb 40%, #eef2f8 100%) !important;
}

.rs-navbar {
    background: rgba(255, 255, 255, 0.68) !important;
    border-bottom: 1px solid transparent !important;
}

.rs-navbar.is-scrolled {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(14, 55, 118, 0.12) !important;
}

.rs-navbar .nav-link {
    color: #334155 !important;
}

.rs-navbar .nav-link:hover {
    color: var(--rs-primary-deep) !important;
    background: #e9f1ff;
}

.rs-brand-text strong {
    color: var(--rs-ink) !important;
}

.rs-brand-text span {
    color: #64748b !important;
}

.rs-hero--premium {
    min-height: 720px;
    padding: 5.5rem 0 3.25rem;
    color: #fff;
    background:
        radial-gradient(circle at 15% 12%, rgba(71, 126, 218, .48), transparent 48%),
        radial-gradient(circle at 88% 8%, rgba(15, 186, 157, .22), transparent 36%),
        radial-gradient(circle at 72% 84%, rgba(214, 162, 58, .14), transparent 38%),
        linear-gradient(128deg, #050b16 0%, #10264d 58%, #173f89 100%) !important;
}

.rs-hero--premium h1 {
    color: #fff !important;
    max-width: 640px;
    font-size: clamp(2.1rem, 4.7vw, 3.65rem);
}

.rs-hero--premium p {
    color: #d9e8ff !important;
    max-width: 560px;
}

.rs-hero-video-shell {
    position: relative;
    min-height: auto;
}

.rs-hero-video-frame .rs-hero-video {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
}

.rs-hero--premium + .rs-trust-strip {
    margin-top: -34px;
    position: relative;
    z-index: 6;
}

.rs-problem-section .row {
    align-items: center;
}

.rs-problem-visual {
    max-width: 520px;
    margin: 0 auto;
}

.rs-showcase-media img {
    min-height: 220px;
    object-fit: cover;
}

.rs-showcase-card--featured .rs-showcase-media img {
    min-height: 300px;
}

.rs-metric--premium i {
    color: var(--rs-primary-deep);
}

.rs-metric--premium h2 {
    color: var(--rs-primary-deep);
}

.rs-metric--premium p {
    color: var(--rs-muted);
}

.rs-hero-right-stack {
    height: 100%;
}

.rs-hero--premium .rs-hero-scene-shell {
    min-height: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 560px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    background:
        radial-gradient(circle at 30% 20%, rgba(37, 99, 235, .2), transparent 45%),
        radial-gradient(circle at 80% 75%, rgba(15, 186, 157, .12), transparent 40%),
        linear-gradient(145deg, rgba(8, 17, 35, .92), rgba(15, 32, 62, .78));
    box-shadow: 0 40px 90px rgba(0, 0, 0, .45);
}

.rs-hero-video-strip {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-rows: 1fr;
    align-items: center;
    gap: .75rem;
    min-height: clamp(240px, 28vw, 300px);
    padding: .65rem 1rem;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(3, 7, 18, .8);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .4);
    line-height: 0;
}

.rs-hero-video-media {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    z-index: 2;
    line-height: 0;
}

.rs-hero-video-strip .rs-hero-video {
    display: block;
    width: auto;
    max-width: min(520px, 46vw);
    max-height: clamp(240px, 28vw, 300px);
    height: auto;
    object-fit: contain;
    object-position: center;
    vertical-align: middle;
}

.rs-hero-video-frame--below,
.rs-hero-video-frame--in-scene,
.rs-hero-video-frame--left {
    display: none;
}

.rs-hero--premium .rs-hero-scene-shell::before {
    opacity: .35;
    background:
        linear-gradient(rgba(147, 197, 253, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(147, 197, 253, .08) 1px, transparent 1px);
}

.rs-hero--premium .rs-scene-panel,
.rs-hero--premium .rs-scene-tile {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .16);
    color: #e2e8f0;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .35);
}

.rs-hero--premium .rs-scene-panel strong {
    color: #f1f5f9;
}

.rs-hero--premium .rs-scene-tile i {
    background: linear-gradient(135deg, #2563eb, #0fba9d);
    color: #fff;
}

.rs-hero-video-overlay--light {
    background:
        linear-gradient(180deg, rgba(3, 7, 18, .05) 0%, transparent 35%, transparent 65%, rgba(3, 7, 18, .12) 100%),
        linear-gradient(135deg, rgba(37, 99, 235, .08), transparent 50%);
}

.rs-hero--premium .rs-scene-panel--dashboard,
.rs-hero--premium .rs-scene-tile {
    z-index: 4;
}

/* Hero layout: text left | 3D right | video below */
.rs-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 2rem;
    align-items: stretch;
}

.rs-hero-col-text {
    min-width: 0;
}

.rs-hero-col-scene {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.rs-hero-col-scene .rs-hero-scene-shell {
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    width: 100%;
}

.rs-hero-video-row {
    margin-top: 1.25rem;
    width: 100%;
}

.rs-hero-video-side {
    overflow: hidden;
    min-width: 0;
    height: 100%;
    max-height: clamp(240px, 28vw, 300px);
    position: relative;
    z-index: 1;
    mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

.rs-hero-video-side--left {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: .25rem;
}

.rs-hero-video-side--right {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: .25rem;
}

.rs-hero-video-flow {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    width: max-content;
    max-width: 100%;
}

.rs-hero-video-flow--left {
    animation: rsHeroVideoScrollUpLeft 18s linear infinite;
}

.rs-hero-video-flow--right {
    animation: rsHeroVideoScrollDownRight 18s linear infinite;
}

@keyframes rsHeroVideoScrollUpLeft {
    0% { transform: translate(14px, 0); }
    100% { transform: translate(-18px, -50%); }
}

@keyframes rsHeroVideoScrollDownRight {
    0% { transform: translate(-14px, -50%); }
    100% { transform: translate(18px, 0); }
}

.rs-hero-video-tag {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .48rem .82rem;
    border-radius: 999px;
    border: 1px solid rgba(147, 197, 253, .22);
    background: rgba(255, 255, 255, .07);
    color: #dbeafe;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .01em;
    white-space: nowrap;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
}

.rs-hero-video-tag i {
    color: #60a5fa;
    font-size: .68rem;
}

.rs-hero-video-marquee {
    display: none;
    overflow: hidden;
    grid-column: 1 / -1;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.rs-hero-video-marquee-track {
    display: flex;
    align-items: center;
    gap: .65rem;
    width: max-content;
}

.rs-hero-video-marquee--left .rs-hero-video-marquee-track {
    animation: rsHeroVideoMarqueeLeft 22s linear infinite;
}

.rs-hero-video-marquee--right .rs-hero-video-marquee-track {
    animation: rsHeroVideoMarqueeRight 22s linear infinite;
}

@keyframes rsHeroVideoMarqueeLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes rsHeroVideoMarqueeRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.rs-hero--premium .rs-animate {
    opacity: 1;
    animation: rsFadeUp .75s ease both;
}

@media (max-width: 991.98px) {
    .rs-hero-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .rs-hero-col-scene .rs-hero-scene-shell {
        min-height: 440px;
    }

    .rs-hero-video-row {
        grid-template-columns: 1fr;
    }

    .rs-hero-video-strip {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: .55rem;
        min-height: 0;
        padding: .75rem .85rem;
    }

    .rs-hero-video-side {
        display: none;
    }

    .rs-hero-video-media {
        grid-column: 1;
        grid-row: 2;
        display: flex;
        justify-content: center;
    }

    .rs-hero-video-strip .rs-hero-video {
        max-width: 100%;
    }

    .rs-hero-video-marquee {
        display: block;
    }

    .rs-hero-video-marquee--left {
        grid-row: 1;
    }

    .rs-hero-video-marquee--right {
        grid-row: 3;
    }
}

@media (max-width: 767.98px) {
    .rs-hero-col-scene .rs-hero-scene-shell {
        min-height: 380px;
    }

    .rs-hero-video-row {
        margin-top: 1rem;
    }

    .rs-hero-video-strip .rs-hero-video {
        max-height: clamp(190px, 42vw, 220px);
    }

    .rs-hero--premium {
        padding-bottom: 2.5rem;
    }

    .rs-hero--premium .rs-scene-panel--dashboard {
        top: 16px;
        left: 16px;
        width: 180px;
        padding: .7rem;
    }
}

/* legacy bootstrap hero cols — unused */
.rs-hero--premium .row.align-items-center {
    align-items: stretch !important;
}

.rs-hero--premium .col-lg-7 {
    display: flex;
}

.rs-hero--premium .col-lg-7 .rs-hero-scene-shell {
    flex: 1 1 auto;
}

@media (max-width: 991.98px) {
    .rs-hero--premium .rs-hero-scene-shell {
        margin-top: .5rem;
    }
}

/* ── Soft dark palette (original dark, slightly lifted — not bright blue) ── */
body {
    background:
        radial-gradient(circle at 0% -10%, rgba(37, 99, 235, .08) 0, transparent 38%),
        radial-gradient(circle at 100% 12%, rgba(15, 186, 157, .06) 0, transparent 34%),
        linear-gradient(180deg, #eef2f8 0%, #f4f7fb 40%, #eef2f8 100%) !important;
}

.rs-hero--premium {
    background:
        radial-gradient(circle at 15% 12%, rgba(71, 126, 218, .4), transparent 48%),
        radial-gradient(circle at 88% 8%, rgba(15, 186, 157, .18), transparent 36%),
        radial-gradient(circle at 72% 84%, rgba(214, 162, 58, .1), transparent 38%),
        linear-gradient(128deg, #0a1220 0%, #142d52 58%, #1a4088 100%) !important;
}

.rs-hero--premium p {
    color: #d9e8ff !important;
}

.rs-hero--premium .rs-glass-chip {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .16);
}

.rs-hero--premium .rs-glass-chip span {
    color: #94a3b8;
}

.rs-hero--premium .rs-hero-scene-shell {
    border-color: rgba(255, 255, 255, .14);
    background:
        radial-gradient(circle at 30% 20%, rgba(37, 99, 235, .16), transparent 45%),
        radial-gradient(circle at 80% 75%, rgba(15, 186, 157, .1), transparent 40%),
        linear-gradient(145deg, rgba(12, 24, 48, .88), rgba(18, 36, 68, .76));
    box-shadow: 0 40px 90px rgba(0, 0, 0, .38);
}

.rs-hero--premium .rs-scene-panel,
.rs-hero--premium .rs-scene-tile {
    background: rgba(255, 255, 255, .11);
    border-color: rgba(255, 255, 255, .15);
    color: #e2e8f0;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .32);
}

.rs-hero--premium .rs-scene-panel strong {
    color: #f1f5f9;
}

.rs-hero--premium .rs-scene-tile i {
    background: linear-gradient(135deg, #2563eb, #0fba9d);
    color: #fff;
}

.rs-hero-video-strip {
    background: rgba(8, 17, 35, .72);
    border-color: rgba(255, 255, 255, .14);
}

.rs-section-dark {
    background:
        radial-gradient(circle at 12% 18%, rgba(37, 99, 235, .14), transparent 34%),
        radial-gradient(circle at 88% 72%, rgba(15, 186, 157, .09), transparent 32%),
        linear-gradient(155deg, #0a1220 0%, #101e32 48%, #152845 100%) !important;
}

.rs-section-dark::before {
    opacity: .22;
}

.rs-cta-band {
    background:
        radial-gradient(circle at 12% 16%, rgba(81, 156, 255, .2), transparent 42%),
        linear-gradient(124deg, #0a1628 0%, #123060 62%, #1850a0 100%) !important;
}

.rs-cta-band--home {
    padding: 4rem 0;
}

.rs-cta-band--home .rs-cta-band-inner {
    max-width: 780px;
    margin: 0 auto;
}

.rs-cta-band--home h2 {
    color: #fff;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    font-weight: 800;
}

.rs-cta-band--home p {
    color: #d8e4f6;
    font-size: 1.05rem;
    line-height: 1.75;
}

.rs-eyebrow--cta {
    color: #93c5fd !important;
}

.rs-trust-item.rs-glass-chip {
    background: rgba(255, 255, 255, .92) !important;
}

.rs-showcase-section {
    background:
        radial-gradient(circle at 8% 12%, rgba(37, 99, 235, .07), transparent 32%),
        radial-gradient(circle at 92% 88%, rgba(15, 186, 157, .06), transparent 30%),
        linear-gradient(180deg, #eef2f8 0%, #e8eef6 100%) !important;
}

.rs-service-card {
    background: rgba(255, 255, 255, .06) !important;
    border-color: rgba(255, 255, 255, .11) !important;
}

.rs-section-divider--hero {
    background: linear-gradient(180deg, transparent, rgba(238, 242, 248, .95));
}

/* ── Contact page ── */
.rs-contact-hero {
    position: relative;
    padding: 5rem 0 4.5rem;
    overflow: hidden;
    color: #e2e8f0;
}

.rs-contact-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(59, 130, 246, .22), transparent 38%),
        radial-gradient(circle at 88% 12%, rgba(214, 162, 58, .14), transparent 32%),
        linear-gradient(128deg, #050b16 0%, #10264d 58%, #173f89 100%);
}

.rs-contact-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: .35;
}

.rs-contact-hero .container {
    position: relative;
    z-index: 2;
}

.rs-contact-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.12;
    margin: .85rem 0 1rem;
}

.rs-contact-hero-lead {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: 540px;
}

.rs-contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.rs-contact-hero-scene {
    position: relative;
    min-height: 340px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.rs-contact-scene-glow {
    position: absolute;
    inset: 15% 10%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(37, 99, 235, .35), transparent 68%);
    animation: rsContactPulse 6s ease-in-out infinite;
}

.rs-contact-scene-headset {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(37, 99, 235, .9), rgba(15, 186, 157, .75));
    color: #fff;
    font-size: 2.2rem;
    box-shadow: 0 24px 50px rgba(0, 0, 0, .35);
    animation: rsFloatPanel 7s ease-in-out infinite;
    z-index: 2;
}

.rs-contact-scene-card {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .75rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(15, 23, 42, .72);
    color: #e2e8f0;
    font-size: .78rem;
    font-weight: 700;
    z-index: 1;
}

.rs-contact-scene-card--dash { left: 8%; top: 16%; animation: rsFloatPanel 8s ease-in-out infinite; }
.rs-contact-scene-card--cloud { right: 8%; top: 20%; animation: rsFloatPanel 9s ease-in-out infinite reverse; }
.rs-contact-scene-card--chat { left: 12%; bottom: 18%; animation: rsFloatPanel 7.5s ease-in-out infinite; }

.rs-contact-scene-node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #93c5fd;
    box-shadow: 0 0 18px rgba(147, 197, 253, .8);
}

.rs-contact-scene-node--1 { right: 22%; top: 42%; }
.rs-contact-scene-node--2 { right: 30%; bottom: 28%; }
.rs-contact-scene-node--3 { left: 28%; top: 38%; }

@keyframes rsContactPulse {
    0%, 100% { opacity: .55; transform: scale(1); }
    50% { opacity: .85; transform: scale(1.06); }
}

.rs-contact-main {
    background: linear-gradient(180deg, #f8fafc 0%, #eef3f9 100%);
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-top: -2rem;
}

.rs-contact-form-panel,
.rs-contact-info-panel {
    height: 100%;
    padding: clamp(1.5rem, 3vw, 2rem);
    border: 1px solid rgba(37, 99, 235, .12);
    border-radius: 20px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 22px 55px rgba(15, 23, 42, .08);
}

.rs-contact-form-panel h2,
.rs-contact-info-panel h3 {
    color: #0b1220;
    font-weight: 800;
    margin-bottom: .5rem;
}

.rs-contact-form-panel h2 { font-size: clamp(1.35rem, 2.5vw, 1.65rem); }
.rs-contact-info-panel h3 { font-size: 1.15rem; }

.rs-contact-form-intro {
    color: var(--rs-muted);
    font-size: .94rem;
    line-height: 1.65;
    margin-bottom: 1.35rem;
}

.rs-form-field {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .4rem;
    width: 100%;
}

.rs-form-field label {
    display: block;
    width: 100%;
    color: #334155;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .01em;
    margin: 0;
}

.rs-contact-form .rs-form-field .form-control,
.rs-contact-form .rs-form-field .form-select {
    display: block;
    width: 100%;
    min-height: 48px;
    border-radius: 12px;
    border-color: #c9d8ed;
}

.rs-contact-textarea {
    min-height: 140px;
    resize: vertical;
}

.rs-contact-info-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.rs-contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
}

.rs-contact-info-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(37, 99, 235, .1);
    color: var(--rs-primary-deep);
    flex-shrink: 0;
}

.rs-contact-info-list strong {
    display: block;
    color: #0b1220;
    font-size: .88rem;
    margin-bottom: .15rem;
}

.rs-contact-info-list span,
.rs-contact-info-list a {
    color: var(--rs-muted);
    font-size: .92rem;
    text-decoration: none;
}

.rs-contact-info-list a:hover { color: var(--rs-primary-deep) !important; }

.rs-contact-why { background: #fff; }
.rs-contact-why-card {
    height: 100%;
    padding: 1.35rem;
    border: 1px solid rgba(37, 99, 235, .12);
    border-radius: 16px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--rs-shadow-sm);
    transition: transform .28s ease, box-shadow .28s ease;
}

.rs-contact-why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rs-shadow-lg);
}

.rs-contact-why-icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: .85rem;
    border-radius: 12px;
    background: rgba(37, 99, 235, .1);
    color: var(--rs-primary-deep);
    font-size: 1.05rem;
}

.rs-contact-why-card h3 {
    color: #0b1220;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: .45rem;
}

.rs-contact-why-card p {
    color: var(--rs-muted);
    font-size: .9rem;
    line-height: 1.6;
    margin: 0;
}

.rs-contact-process {
    background: linear-gradient(180deg, #eef3f9 0%, #f8fafc 100%);
}

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

.rs-contact-step {
    position: relative;
    padding: 1.35rem 1.15rem;
    border: 1px solid rgba(37, 99, 235, .12);
    border-radius: 16px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--rs-shadow-sm);
}

.rs-contact-step-num {
    display: inline-block;
    color: var(--rs-primary-deep);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: .65rem;
}

.rs-contact-step h3 {
    color: #0b1220;
    font-size: .98rem;
    font-weight: 800;
    margin-bottom: .4rem;
}

.rs-contact-step p {
    color: var(--rs-muted);
    font-size: .86rem;
    line-height: 1.55;
    margin: 0;
}

.rs-contact-booking { background: #fff; }

.rs-contact-booking-shell {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border: 1px solid rgba(37, 99, 235, .12);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(37, 99, 235, .06), rgba(15, 186, 157, .04));
    box-shadow: var(--rs-shadow-sm);
}

.rs-contact-booking-shell h2 {
    color: #0b1220;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    margin-bottom: .65rem;
}

.rs-contact-booking-shell p {
    color: var(--rs-muted);
    font-size: .95rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.rs-calendly-widget,
.rs-booking-placeholder {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, .12);
    background: #fff;
}

.rs-booking-actions {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, .12);
    background: #fff;
}

.rs-booking-actions .btn {
    justify-content: center;
}

.rs-contact-faq { background: #f8fafc; }

.rs-contact-faq-list {
    display: grid;
    gap: .75rem;
}

.rs-contact-faq-item {
    border: 1px solid rgba(37, 99, 235, .12);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.rs-contact-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 1rem 1.15rem;
    color: #0b1220;
    font-weight: 700;
    font-size: .95rem;
}

.rs-contact-faq-item summary::-webkit-details-marker { display: none; }

.rs-contact-faq-item p {
    margin: 0;
    padding: 0 1.15rem 1rem;
    color: var(--rs-muted);
    font-size: .9rem;
    line-height: 1.65;
}

.rs-contact-stats {
    padding: 3rem 0;
    background:
        radial-gradient(circle at 14% 14%, rgba(56, 130, 246, .18), transparent 36%),
        linear-gradient(124deg, #071328 0%, #0c2d63 68%, #1348a8 100%);
}

.rs-contact-stat {
    padding: 1.25rem 1rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
}

.rs-contact-stat strong {
    display: block;
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: .25rem;
}

.rs-contact-stat span {
    color: #cbd5e1;
    font-size: .82rem;
    font-weight: 700;
}

.rs-contact-testimonials { background: #fff; }

.rs-contact-quote {
    height: 100%;
    margin: 0;
    padding: 1.35rem;
    border: 1px solid rgba(37, 99, 235, .12);
    border-radius: 16px;
    background: rgba(248, 250, 252, .96);
}

.rs-contact-quote p {
    color: #334155;
    font-size: .94rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.rs-contact-quote footer strong {
    display: block;
    color: #0b1220;
    font-size: .88rem;
}

.rs-contact-quote footer span {
    color: var(--rs-muted);
    font-size: .8rem;
}

.rs-contact-map-section { background: #f8fafc; }

.rs-contact-map-shell {
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, .12);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--rs-shadow-lg);
}

.rs-contact-map-copy {
    padding: clamp(1.75rem, 3vw, 2.5rem);
}

.rs-contact-map-copy h2 {
    color: #0b1220;
    font-size: clamp(1.45rem, 2.6vw, 1.85rem);
    font-weight: 800;
    margin: .5rem 0 .75rem;
}

.rs-contact-map-copy p {
    color: var(--rs-muted);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.rs-contact-map-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .55rem;
}

.rs-contact-map-points li {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #475569;
    font-size: .9rem;
    font-weight: 600;
}

.rs-contact-map-points i { color: var(--rs-primary-deep); }

.rs-contact-map-shell .col-lg-7 {
    min-height: 320px;
}

.rs-contact-map-visual {
    min-height: 320px;
    height: 100%;
    background: #e2e8f0;
    position: relative;
}

.rs-contact-map-visual iframe,
.rs-contact-map-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border: 0;
}

.rs-contact-map-visual iframe {
    position: absolute;
    inset: 0;
}

.rs-contact-map-visual--image {
    background: #0b1220;
}

.rs-contact-bottom-cta {
    padding: 3.5rem 0;
    background: linear-gradient(124deg, #071328 0%, #0c2d63 68%, #1348a8 100%);
}

.rs-contact-bottom-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.rs-contact-bottom-cta h2 {
    color: #fff;
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0;
}

.rs-eyebrow--contact { color: var(--rs-primary-deep); }

.rs-contact-alert {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    margin-bottom: 1.25rem;
    padding: .85rem 1rem;
    border-radius: 12px;
    font-size: .92rem;
    font-weight: 600;
}

.rs-contact-alert--success {
    border: 1px solid rgba(15, 186, 157, .28);
    background: rgba(15, 186, 157, .1);
    color: #0f766e;
}

.rs-field-error {
    color: #dc2626;
    font-size: .82rem;
    font-weight: 600;
    margin-top: .25rem;
}

.rs-contact-form {
    padding: 0;
    box-shadow: none;
    border: 0;
    background: transparent;
}

.rs-contact-form .form-control:focus,
.rs-contact-form .form-select:focus {
    border-color: #6ea8ff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, .14);
}

.rs-contact-submit {
    width: 100%;
    min-height: 52px;
    border-radius: 12px;
    font-weight: 800;
}

/* About page — editorial story layout */
.rs-about-page {
    padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.rs-about-story-card {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(2rem, 4.5vw, 3.25rem) clamp(1.35rem, 4vw, 3rem) clamp(2.25rem, 4vw, 3rem);
    border-radius: var(--rs-radius);
    border: 1px solid var(--rs-line);
    background: var(--rs-surface);
    box-shadow: var(--rs-shadow-sm);
    color: var(--rs-ink);
}

.rs-about-story-title {
    margin: 0 0 clamp(1.75rem, 3vw, 2.35rem);
    color: var(--rs-ink);
    font-family: 'Caveat', cursive;
    font-size: clamp(2.65rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: .01em;
    text-align: center;
}

.rs-about-story-body {
    font-size: clamp(.98rem, 1.5vw, 1.05rem);
    line-height: 1.85;
}

.rs-about-story-body p {
    margin: 0 0 1.35rem;
    color: var(--rs-muted);
}

.rs-about-lead {
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--rs-ink) !important;
}

.rs-about-rich-content {
    color: var(--rs-muted);
    line-height: 1.85;
}

.rs-about-rich-content p {
    margin: 0 0 1.35rem;
    color: var(--rs-muted);
}

.rs-about-rich-content ul,
.rs-about-rich-content ol {
    margin: 0 0 1.35rem;
    padding-left: 1.35rem;
}

.rs-about-rich-content blockquote {
    margin: 1.25rem 0;
    padding: .2rem 0 .2rem 1.15rem;
    border-left: 3px solid var(--rs-primary-deep);
    color: var(--rs-muted);
}

.rs-about-rich-content h2,
.rs-about-rich-content h3,
.rs-about-rich-content h4 {
    color: var(--rs-ink);
    font-weight: 800;
    margin: 1.5rem 0 .75rem;
}

.rs-about-rich-content a {
    color: var(--rs-primary-deep) !important;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.rs-about-pullquote {
    margin: 1.65rem 0;
    padding: .2rem 0 .2rem 1.15rem;
    border-left: 3px solid var(--rs-primary-deep);
    color: var(--rs-muted);
    font-size: inherit;
    line-height: 1.8;
}

.rs-about-pullquote strong {
    color: var(--rs-ink);
    font-weight: 700;
}

.rs-about-join-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 1.25rem 1.35rem;
    border: 2px dashed rgba(37, 99, 235, .35);
    border-radius: 8px;
    background: var(--rs-surface-soft);
}

.rs-about-join-sign {
    flex: 0 0 52px;
    width: 52px;
    color: var(--rs-primary-deep);
}

.rs-about-join-sign svg {
    display: block;
    width: 100%;
    height: auto;
}

.rs-about-join-title {
    display: flex;
    align-items: center;
    gap: .35rem;
    margin: 0 0 .55rem;
    color: var(--rs-ink);
    font-family: 'Caveat', cursive;
    font-size: clamp(1.75rem, 3.2vw, 2.15rem);
    font-weight: 700;
    line-height: 1.1;
}

.rs-about-join-badge {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    line-height: 1;
}

.rs-about-join-text {
    margin: 0;
    color: var(--rs-muted);
    font-size: .98rem;
    line-height: 1.8;
}

.rs-about-join-link {
    display: inline;
    margin-left: .15rem;
    color: var(--rs-primary-deep) !important;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--rs-primary-deep);
    text-decoration-style: wavy;
    text-underline-offset: 4px;
    transition: color .2s ease;
}

.rs-about-join-link:hover {
    color: var(--rs-primary) !important;
}

.rs-about-signature {
    margin: 2rem 0 0;
    color: var(--rs-muted);
    font-family: 'Caveat', cursive;
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 600;
    text-align: right;
}

@media (max-width: 991.98px) {
    .rs-contact-steps { grid-template-columns: repeat(2, 1fr); }
    .rs-contact-hero-scene { min-height: 280px; margin-top: .5rem; }
}

@media (max-width: 767.98px) {
    .rs-contact-hero { padding: 3.5rem 0 3rem; }
    .rs-contact-main { margin-top: 0; padding-top: 2.5rem; }
    .rs-contact-steps { grid-template-columns: 1fr; }
    .rs-contact-bottom-cta-inner { flex-direction: column; text-align: center; }
    .rs-contact-hero-actions { flex-direction: column; }
    .rs-contact-hero-actions .btn { width: 100%; }
}
