/*
 * Remote Specialist Hub shared experience layer.
 * Loaded after each legacy theme so public, portal, authentication, and
 * consultation surfaces share one accessible visual and motion language.
 */
:root {
    --rsh-navy-950: #0b1825;
    --rsh-navy-900: #102b36;
    --rsh-navy-800: #173d49;
    --rsh-green-700: #3d7631;
    --rsh-green-600: #4d8f3d;
    --rsh-green-500: #76b85d;
    --rsh-green-100: #eaf5e6;
    --rsh-blue-500: #4d8ff7;
    --rsh-canvas: #f5f8f7;
    --rsh-surface: #ffffff;
    --rsh-ink: #14213d;
    --rsh-muted: #647084;
    --rsh-border: rgba(20, 43, 54, .12);
    --rsh-shadow-sm: 0 8px 24px rgba(14, 38, 49, .07);
    --rsh-shadow-md: 0 18px 48px rgba(14, 38, 49, .11);
    --rsh-shadow-lg: 0 30px 80px rgba(8, 28, 38, .18);
    --rsh-radius-sm: 12px;
    --rsh-radius-md: 18px;
    --rsh-radius-lg: 28px;
    --rsh-ease: cubic-bezier(.2, .75, .25, 1);
}

html { scroll-behavior: smooth; }
body { text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
::selection { background: rgba(118, 184, 93, .28); color: var(--rsh-navy-950); }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
    outline: 3px solid rgba(77, 143, 247, .42) !important;
    outline-offset: 3px;
}

/* Shared feedback and motion primitives */
.rsh-scroll-progress {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 99999;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rsh-green-500), #9ed681, var(--rsh-blue-500));
    box-shadow: 0 1px 8px rgba(118, 184, 93, .4);
    pointer-events: none;
}

.rsh-back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1050;
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 15px;
    background: rgba(16, 43, 54, .92);
    box-shadow: var(--rsh-shadow-md);
    color: #fff;
    opacity: 0;
    transform: translateY(14px) scale(.92);
    visibility: hidden;
    transition: opacity .25s ease, transform .35s var(--rsh-ease), visibility .25s;
    backdrop-filter: blur(12px);
}
.rsh-back-to-top:hover { background: var(--rsh-green-600); color: #fff; transform: translateY(-2px); }
.rsh-back-to-top.is-visible { opacity: 1; transform: none; visibility: visible; }

.motion-enabled .motion-reveal {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition: opacity .7s var(--rsh-ease), transform .7s var(--rsh-ease);
    transition-delay: var(--motion-delay, 0ms);
}
.motion-enabled .motion-reveal.motion-reveal--left { transform: translate3d(-24px, 0, 0); }
.motion-enabled .motion-reveal.motion-reveal--right { transform: translate3d(24px, 0, 0); }
.motion-enabled .motion-reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }
:where(.btn, button, .consultation-submit, .portal-auth__submit).is-pressed { transform: scale(.975) !important; }

/* Public website */
body.public-site {
    overflow-x: hidden;
    background: var(--rsh-surface);
    color: var(--rsh-ink);
    font-family: "Open Sans", system-ui, sans-serif;
}
.public-site :where(h1, h2, h3, h4, h5, h6) {
    color: var(--rsh-ink);
    font-family: "Roboto Slab", Georgia, serif;
    letter-spacing: -.025em;
}
.public-site section { position: relative; }
.public-site section:not(.hero-section):not(.page-banner):not(.cta-band):not(.promotion-spotlight) {
    padding-top: clamp(4.5rem, 8vw, 7rem);
    padding-bottom: clamp(4.5rem, 8vw, 7rem);
}
.public-site .navbar {
    border-bottom: 1px solid transparent;
    background: linear-gradient(180deg, rgba(6, 22, 31, .8), rgba(6, 22, 31, 0));
}
.public-site .navbar.scrolled {
    border-color: rgba(20, 43, 54, .09);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 10px 36px rgba(11, 38, 49, .09);
    backdrop-filter: blur(18px) saturate(150%);
}
.public-site .navbar > .container { min-width: 0; }
.public-site .navbar-brand { display: inline-flex; align-items: center; min-width: 0; gap: 11px; margin-right: 1rem; text-decoration: none; }
.public-site .navbar-brand img { width: 44px; max-width: none; height: 44px; flex: 0 0 44px; object-fit: contain; transition: transform .35s var(--rsh-ease), filter .3s ease; }
.public-site .navbar-brand:hover img { transform: rotate(-4deg) scale(1.04); }
.public-site .public-brand__name { color: #fff; font-family: "Open Sans", system-ui, sans-serif; font-size: .9rem; font-weight: 650; letter-spacing: -.02em; white-space: nowrap; }
.public-site .public-brand__name strong { color: #a8dc91; font-weight: 800; }
.public-site .navbar.scrolled .public-brand__name { color: var(--rsh-navy-900); }
.public-site .navbar.scrolled .public-brand__name strong { color: var(--rsh-green-600); }
.public-site .navbar.scrolled .navbar-brand img { width: 42px; height: 42px; }
.public-site .navbar-toggler { flex: 0 0 auto; margin-left: auto; }
.public-site .navbar-nav { align-items: center; gap: 3px; }
.public-site .navbar-nav .nav-link {
    padding: .62rem .78rem;
    border-radius: 10px;
    font-family: "Open Sans", system-ui, sans-serif;
    font-size: .89rem;
    font-weight: 650;
}
.public-site .navbar-nav .nav-link::after { right: .78rem; bottom: .35rem; left: .78rem; width: auto; height: 2px; border-radius: 3px; opacity: 0; transform: scaleX(.25); transform-origin: center; transition: opacity .25s ease, transform .3s var(--rsh-ease); }
.public-site .navbar-nav .nav-link:hover::after,
.public-site .navbar-nav .nav-link.active::after { width: auto; opacity: 1; transform: scaleX(1); }
.public-site .navbar-nav .nav-link--cta {
    margin-left: .35rem;
    padding: .62rem 1.2rem !important;
    background: linear-gradient(135deg, var(--rsh-green-500), var(--rsh-green-600));
    box-shadow: 0 8px 22px rgba(77, 143, 61, .25);
}

.public-site header {
    min-height: max(690px, 100svh);
    height: auto;
    isolation: isolate;
    background-attachment: scroll;
}
.public-site header::before {
    background:
        radial-gradient(circle at 18% 20%, rgba(118, 184, 93, .2), transparent 33%),
        radial-gradient(circle at 82% 72%, rgba(77, 143, 247, .16), transparent 35%),
        linear-gradient(120deg, rgba(5, 19, 27, .88), rgba(14, 43, 54, .68));
}
.public-site header::after {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(7, 24, 33, .38));
    content: "";
    pointer-events: none;
}
.public-site header .text-center { width: min(100%, 920px); min-width: 0; max-width: 920px; padding: 8rem 1rem 5rem; }
.public-site header h1 {
    color: #fff;
    font-size: clamp(2.65rem, 6vw, 5.4rem);
    line-height: 1.02;
    letter-spacing: -.055em;
    text-wrap: balance;
    overflow-wrap: anywhere;
    text-shadow: 0 7px 28px rgba(0, 0, 0, .2);
}
.public-site header p { max-width: 720px; margin-right: auto; margin-left: auto; color: rgba(255,255,255,.84); font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.7; text-wrap: balance; }

.public-site .page-banner {
    min-height: 490px;
    isolation: isolate;
    overflow: hidden;
    padding-top: 9.5rem;
    background-position: center 38%;
}
.public-site .page-banner::before {
    background:
        radial-gradient(circle at 75% 30%, rgba(118, 184, 93, .22), transparent 28%),
        linear-gradient(115deg, rgba(5, 21, 29, .9), rgba(18, 61, 73, .7));
}
.public-site .page-banner::after {
    position: absolute;
    right: -110px;
    bottom: -170px;
    z-index: 1;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    box-shadow: 0 0 0 44px rgba(255,255,255,.035), 0 0 0 92px rgba(255,255,255,.025);
    content: "";
}
.public-site .page-banner > div { max-width: 800px; }
.public-site .page-banner__eyebrow { color: #a8dc91; }
.public-site .page-banner h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.7rem); line-height: 1.08; text-wrap: balance; }
.public-site .page-banner p { max-width: 660px; margin-inline: auto; font-size: clamp(1rem, 2vw, 1.2rem); }

.public-site .section-eyebrow,
.public-site .section-header__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rsh-green-600);
    font-family: "Open Sans", sans-serif;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.public-site .section-eyebrow::before,
.public-site .section-header__eyebrow::before { width: 22px; height: 2px; border-radius: 2px; background: var(--rsh-green-500); content: ""; }
.public-site .section-header { max-width: 780px; margin-right: auto; margin-left: auto; }
.public-site .section-header h2,
.public-site section h2 { font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.14; text-wrap: balance; }
.public-site .section-header p { color: var(--rsh-muted); font-size: 1.05rem; line-height: 1.75; }

.public-site :where(.card, .service-card, .team-member, .custom-col, .process-step, .highlight-item, .blog-card, .faq-card, .contact-card, .legal-content, .legal-toc) {
    border-color: var(--rsh-border);
    border-radius: var(--rsh-radius-md);
}
.public-site :where(.card, .service-card, .team-member, .process-step, .highlight-item, .blog-card) {
    transition: transform .4s var(--rsh-ease), border-color .3s ease, box-shadow .4s var(--rsh-ease);
}
.public-site :where(.card, .service-card, .team-member, .process-step, .highlight-item, .blog-card):hover {
    border-color: rgba(118, 184, 93, .35);
    box-shadow: var(--rsh-shadow-md);
    transform: translateY(-7px);
}
.public-site :where(.card, .service-card, .team-member, .blog-card) img { transition: transform .7s var(--rsh-ease), filter .5s ease; }
.public-site :where(.card, .service-card, .team-member, .blog-card):hover img { transform: scale(1.035); filter: saturate(1.05); }
.public-site :where(.icon-wrapper, .process-step__number) {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, var(--rsh-green-100), #f4faf1);
    color: var(--rsh-green-600);
    box-shadow: inset 0 0 0 1px rgba(118, 184, 93, .18);
    transition: transform .4s var(--rsh-ease), background .3s ease, color .3s ease;
}
.public-site :where(.custom-col, .process-step, .highlight-item):hover :where(.icon-wrapper, .process-step__number) { background: var(--rsh-green-600); color: #fff; transform: rotate(-4deg) scale(1.06); }

.public-site :where(.btn-custom, .btn-gradient, .btn-primary) {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rsh-green-500), var(--rsh-green-700));
    box-shadow: 0 10px 28px rgba(77, 143, 61, .23);
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-weight: 750;
    transition: transform .25s var(--rsh-ease), box-shadow .3s ease, filter .3s ease;
}
.public-site :where(.btn-custom, .btn-gradient, .btn-primary):hover { color: #fff; filter: brightness(1.04); box-shadow: 0 15px 34px rgba(77, 143, 61, .3); transform: translateY(-2px); }
.public-site .btn-custom-outline { border: 1px solid rgba(20, 43, 54, .22); border-radius: 999px; font-family: "Open Sans", sans-serif; font-weight: 700; transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s var(--rsh-ease); }
.public-site .btn-custom-outline:hover { border-color: var(--rsh-navy-900); background: var(--rsh-navy-900); color: #fff; transform: translateY(-2px); }
.public-site .cta-band {
    isolation: isolate;
    overflow: hidden;
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(118,184,93,.24), transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(77,143,247,.16), transparent 28%),
        linear-gradient(125deg, var(--rsh-navy-950), var(--rsh-navy-800));
}
.public-site .cta-band::after { position: absolute; top: 50%; left: 50%; z-index: -1; width: min(760px, 90vw); height: min(760px, 90vw); border: 1px solid rgba(255,255,255,.08); border-radius: 50%; content: ""; transform: translate(-50%, -50%); box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.018); }
.public-site .cta-band h2 { color: #fff; }
.public-site .cta-band p { color: rgba(255,255,255,.72); }

.public-site :where(.form-control, .form-select) {
    min-height: 50px;
    border: 1px solid var(--rsh-border);
    border-radius: var(--rsh-radius-sm);
    background-color: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.public-site textarea.form-control { min-height: 130px; }
.public-site :where(.form-control, .form-select):focus { border-color: var(--rsh-green-500); box-shadow: 0 0 0 4px rgba(118,184,93,.13); }
.public-site .accordion-item { overflow: hidden; border-color: var(--rsh-border); border-radius: var(--rsh-radius-sm) !important; box-shadow: 0 5px 18px rgba(14,38,49,.035); }
.public-site .accordion-button { min-height: 64px; color: var(--rsh-ink); font-weight: 700; }
.public-site .accordion-button:not(.collapsed) { background: var(--rsh-green-100); color: var(--rsh-green-700); box-shadow: none; }
.public-site .accordion-button::after { transition: transform .35s var(--rsh-ease); }
.public-site .site-footer { position: relative; overflow: hidden; background: var(--rsh-navy-950); }
.public-site .site-footer__brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.public-site .site-footer__brand img { width: 48px; height: 48px; flex: 0 0 48px; object-fit: contain; }
.public-site .site-footer__brand .public-brand__name { color: #fff; font-size: 1rem; }
.public-site .site-footer__top { position: relative; }
.public-site .site-footer__top::after { position: absolute; top: -180px; right: -180px; width: 420px; height: 420px; border-radius: 50%; background: rgba(118,184,93,.055); content: ""; pointer-events: none; }
.public-site .site-footer__links a { transition: color .2s ease, transform .25s var(--rsh-ease); }
.public-site .site-footer__links a:hover { display: inline-block; transform: translateX(4px); }

/* Auth and consultation experiences */
.portal-auth-body,
.consultation-page { background-image: radial-gradient(circle at 10% 10%, rgba(118,184,93,.12), transparent 30%), radial-gradient(circle at 90% 80%, rgba(77,143,247,.08), transparent 28%); background-attachment: fixed; }
.portal-auth__card,
.consultation-card,
.consultation-confirmation__card { border-color: var(--rsh-border) !important; box-shadow: var(--rsh-shadow-lg) !important; transition: transform .4s var(--rsh-ease), box-shadow .4s ease; }
.portal-auth__card:hover,
.consultation-card:hover { box-shadow: 0 34px 90px rgba(8,28,38,.2) !important; transform: translateY(-3px); }
.portal-auth__submit,
.consultation-submit { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--rsh-green-500), var(--rsh-green-700)) !important; box-shadow: 0 10px 26px rgba(77,143,61,.22); transition: transform .25s var(--rsh-ease), box-shadow .25s ease, filter .25s ease; }
.portal-auth__submit:hover,
.consultation-submit:hover { filter: brightness(1.04); box-shadow: 0 14px 32px rgba(77,143,61,.3); transform: translateY(-2px); }
.consultation-nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.88) !important; backdrop-filter: blur(16px); }
.consultation-benefits li { transition: transform .25s var(--rsh-ease); }
.consultation-benefits li:hover { transform: translateX(5px); }

/* Authenticated portals */
.portal-shell { --portal-shadow: var(--rsh-shadow-sm); }
.portal-shell .portal-topbar { background: rgba(255,255,255,.92); box-shadow: 0 8px 28px rgba(14,38,49,.06); backdrop-filter: blur(16px); }
.portal-shell .portal-topbar :where(.navbar, .navbar-header, .navigation) { background: transparent; }
.portal-shell .portal-sidebar { background: linear-gradient(180deg, #102b36, #0a2029 70%, #081b23); box-shadow: 10px 0 35px rgba(8,28,38,.08); }
.portal-shell .portal-sidebar::after { position: absolute; top: 76px; left: -90px; width: 260px; height: 260px; border-radius: 50%; background: rgba(118,184,93,.055); content: ""; pointer-events: none; }
.portal-shell .portal-sidebar .sidebar-nav { position: relative; z-index: 1; }
.portal-shell .portal-sidebar .sidebar-nav ul.metismenu > li > a { transition: color .2s ease, background .2s ease, transform .25s var(--rsh-ease), box-shadow .2s ease; }
.portal-shell .portal-sidebar .sidebar-nav ul.metismenu > li > a:hover { transform: translateX(3px); }
.portal-shell .portal-sidebar .sidebar-nav ul.metismenu > li.active > a { box-shadow: inset 3px 0 0 var(--rsh-green-500), 0 7px 18px rgba(0,0,0,.09); }
.portal-shell .app-main { background-image: radial-gradient(circle at 92% 3%, rgba(118,184,93,.075), transparent 24%); background-attachment: fixed; }
.portal-shell :where(.card, .card-statistics, .widget-card, .table-responsive) { border-color: var(--rsh-border); }
.portal-shell :where(.card, .card-statistics, .widget-card) { transition: transform .32s var(--rsh-ease), border-color .25s ease, box-shadow .32s ease; }
.portal-shell :where(.card, .card-statistics, .widget-card):hover { border-color: rgba(118,184,93,.28); box-shadow: var(--rsh-shadow-md); transform: translateY(-3px); }
.portal-shell .card-header { background: linear-gradient(180deg, #fff, #fcfdfc); }
.portal-shell :where(.btn-primary, .btn-info, .btn-success) { box-shadow: 0 7px 18px rgba(77,143,61,.16); transition: transform .2s var(--rsh-ease), box-shadow .2s ease, filter .2s ease; }
.portal-shell :where(.btn-primary, .btn-info, .btn-success):hover { box-shadow: 0 10px 24px rgba(77,143,61,.24); filter: brightness(1.03); transform: translateY(-1px); }
.portal-shell :where(.form-control, .custom-select, select, textarea) { transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease; }
.portal-shell .table { border-collapse: separate; border-spacing: 0; }
.portal-shell .table thead th { border-bottom-width: 1px; background: #f4f8f6; color: #526174; font-size: 11px; font-weight: 750; letter-spacing: .045em; text-transform: uppercase; }
.portal-shell .table tbody tr { transition: background-color .2s ease, transform .2s ease; }
.portal-shell .table tbody tr:hover { background: rgba(118,184,93,.055); }
.portal-shell .badge { border-radius: 999px; font-weight: 700; }
.portal-shell .dropdown-menu { animation: rshMenuIn .2s var(--rsh-ease); transform-origin: top right; }
@keyframes rshMenuIn { from { opacity: 0; transform: translateY(-5px) scale(.98); } to { opacity: 1; transform: none; } }

@media (max-width: 991.98px) {
    .public-site .navbar-collapse { border: 1px solid rgba(255,255,255,.09); background: rgba(8,29,39,.96); backdrop-filter: blur(18px); }
    .public-site .navbar.scrolled .navbar-collapse { border-color: var(--rsh-border); background: rgba(255,255,255,.97); }
    .public-site .navbar-collapse { width: 100%; }
    .public-site .navbar-nav { align-items: stretch; }
    .public-site .navbar-nav .nav-link { padding: .75rem .9rem; }
    .public-site .navbar-nav .nav-link--cta { justify-content: center; margin: .45rem 0 0; }
    .public-site :where(.card, .service-card, .team-member, .process-step, .highlight-item, .blog-card):hover { transform: translateY(-3px); }
}

@media (max-width: 767.98px) {
    .rsh-back-to-top { right: 14px; bottom: 14px; width: 42px; height: 42px; border-radius: 13px; }
    .public-site header { min-height: 680px; }
    .public-site header .text-center { width: 100%; padding: 7.5rem 18px 4rem; }
    .public-site header h1 { font-size: clamp(2.25rem, 11vw, 3.25rem); }
    .public-site header .btn { max-width: 100%; white-space: normal; }
    .public-site .hero-trust { gap: 1rem 1.25rem; }
    .public-site .hero-trust span { font-size: .82rem; }
    .public-site .page-banner { min-height: 410px; padding-top: 8rem; }
    .public-site .page-banner::after { right: -210px; }
    .public-site section:not(.hero-section):not(.page-banner):not(.cta-band):not(.promotion-spotlight) { padding-top: 4rem; padding-bottom: 4rem; }
    .portal-auth__card,
    .consultation-card,
    .consultation-confirmation__card { border-radius: 18px !important; }
    .portal-auth__card:hover,
    .consultation-card:hover { transform: none; }
}

@media (max-width: 430px) {
    .public-site .navbar { padding: .75rem 0; }
    .public-site .navbar-brand { gap: 8px; margin-right: .5rem; }
    .public-site .navbar-brand img { width: 38px; height: 38px; flex-basis: 38px; }
    .public-site .public-brand__name { font-size: .78rem; }
    .public-site .navbar-toggler { padding: .32rem .48rem; }
    .public-site header h1 { font-size: clamp(2.1rem, 9.5vw, 2.55rem); }
}

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

@media (prefers-contrast: more) {
    :root { --rsh-border: rgba(20,43,54,.3); }
    :where(a, button, input, select, textarea, [tabindex]):focus-visible { outline-color: #1564d8 !important; }
}

/* Services catalog and service cards */
.public-site .services-catalog {
    overflow: hidden;
    padding-top: clamp(3.25rem, 6vw, 5rem) !important;
    background:
        radial-gradient(circle at 4% 12%, rgba(118, 184, 93, .1), transparent 24%),
        linear-gradient(180deg, #fff 0, #f6f9f8 38%, #f3f7f5 100%);
}
.services-catalog .page-breadcrumb { margin: 0 0 2rem; }
.services-catalog__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, .65fr);
    align-items: stretch;
    gap: clamp(2rem, 5vw, 5rem);
    margin-bottom: 2rem;
}
.services-catalog__copy { display: flex; align-items: center; }
.services-catalog__copy .section-header { max-width: 760px; margin: 0; text-align: left !important; }
.services-catalog__copy .section-header h2 { max-width: 720px; margin-bottom: 1.1rem; font-size: clamp(2.2rem, 4.5vw, 4rem); }
.services-catalog__copy .section-header p { max-width: 680px; margin: 0; }
.services-catalog__summary {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--rsh-radius-lg);
    background:
        radial-gradient(circle at 90% 8%, rgba(118,184,93,.25), transparent 31%),
        linear-gradient(145deg, var(--rsh-navy-900), #173f48);
    box-shadow: var(--rsh-shadow-md);
    color: #fff;
}
.services-catalog__summary::after {
    position: absolute;
    right: -85px;
    bottom: -110px;
    z-index: -1;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    box-shadow: 0 0 0 34px rgba(255,255,255,.025), 0 0 0 68px rgba(255,255,255,.018);
    content: "";
}
.services-catalog__summary-label { margin-bottom: .65rem; color: #a8dc91; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.services-catalog__summary > strong { color: #fff; font-family: "Roboto Slab", Georgia, serif; font-size: clamp(3.8rem, 7vw, 5.5rem); line-height: .95; }
.services-catalog__summary > span:not(.services-catalog__summary-label) { margin-top: .45rem; color: rgba(255,255,255,.82); font-weight: 700; }
.services-catalog__summary p { max-width: 300px; margin: 1.35rem 0 1rem; color: rgba(255,255,255,.68); font-size: .88rem; line-height: 1.65; }
.services-catalog__summary a { display: inline-flex; align-items: center; gap: .55rem; width: fit-content; color: #fff; font-size: .88rem; font-weight: 750; text-decoration: none; }
.services-catalog__summary a i { color: #a8dc91; transition: transform .25s var(--rsh-ease); }
.services-catalog__summary a:hover { color: #fff; }
.services-catalog__summary a:hover i { transform: translateX(4px); }
.services-catalog__assurances {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 0 clamp(4rem, 8vw, 6.5rem);
    border: 1px solid var(--rsh-border);
    border-radius: var(--rsh-radius-md);
    background: rgba(255,255,255,.86);
    box-shadow: var(--rsh-shadow-sm);
}
.services-catalog__assurances > span { display: grid; grid-template-columns: 42px 1fr; align-items: center; column-gap: .85rem; min-height: 92px; padding: 1rem 1.35rem; color: var(--rsh-muted); font-size: .78rem; line-height: 1.45; }
.services-catalog__assurances > span + span { border-left: 1px solid var(--rsh-border); }
.services-catalog__assurances i { grid-row: 1 / 3; display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--rsh-green-100); color: var(--rsh-green-600); font-size: 1rem; }
.services-catalog__assurances strong { align-self: end; color: var(--rsh-ink); font-size: .9rem; }
.services-catalog__grid-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.services-catalog__grid-head h2 { margin: .35rem 0 0; font-size: clamp(1.8rem, 3vw, 2.65rem) !important; }
.services-catalog__grid-head > p { margin: 0 0 .35rem; padding: .55rem .9rem; border: 1px solid var(--rsh-border); border-radius: 999px; background: #fff; color: var(--rsh-muted); font-size: .78rem; font-weight: 700; white-space: nowrap; }
.service-grid > [class*="col-"] { display: flex; }

.public-site .service-card--service {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(20,43,54,.1);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(14,38,49,.065);
}
.public-site .service-card--service:hover { border-color: rgba(118,184,93,.4); box-shadow: 0 24px 58px rgba(14,38,49,.14); transform: translateY(-8px); }
.service-card--service .service-card__media { position: relative; height: 218px; overflow: hidden; background: var(--rsh-navy-900); }
.service-card--service .service-card__media::after { background: linear-gradient(180deg, rgba(9,28,37,.04) 25%, rgba(9,28,37,.54) 100%); }
.service-card--service .service-card__media img,
.service-card--service .service-card__placeholder { width: 100%; height: 100%; }
.service-card--service .service-card__placeholder {
    background:
        radial-gradient(circle at 24% 22%, rgba(168,220,145,.25), transparent 28%),
        radial-gradient(circle at 78% 70%, rgba(77,143,247,.18), transparent 30%),
        linear-gradient(135deg, #102b36, #1d5058);
}
.service-card--service .service-card__placeholder i { font-size: 4rem; color: rgba(255,255,255,.9); }
.service-card__sequence {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: inline-grid;
    place-items: center;
    min-width: 42px;
    height: 32px;
    padding: 0 .65rem;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    background: rgba(10,31,40,.62);
    color: rgba(255,255,255,.9);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    backdrop-filter: blur(10px);
}
.service-card--service .card-body { min-height: 310px; padding: 1.5rem 1.6rem 1.35rem; }
.service-card__heading { display: flex; align-items: center; gap: .85rem; min-height: 56px; margin-bottom: 1rem; }
.service-card__icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border: 1px solid rgba(118,184,93,.22);
    border-radius: 16px;
    background: linear-gradient(145deg, var(--rsh-green-100), #f6fbf4);
    box-shadow: 0 8px 18px rgba(77,143,61,.1);
    color: var(--rsh-green-600);
    font-size: 1.25rem;
    transition: color .3s ease, background .3s ease, transform .35s var(--rsh-ease), box-shadow .3s ease;
}
.service-card--service:hover .service-card__icon { background: linear-gradient(145deg, var(--rsh-green-500), var(--rsh-green-700)); box-shadow: 0 10px 24px rgba(77,143,61,.25); color: #fff; transform: rotate(-4deg) scale(1.04); }
.service-card__type { max-width: 125px; color: var(--rsh-green-600); font-size: .67rem; font-weight: 800; letter-spacing: .1em; line-height: 1.45; text-transform: uppercase; }
.service-card--service .card-title { margin-bottom: .75rem; font-size: 1.25rem; line-height: 1.35; }
.service-card--service .card-title a { color: var(--rsh-ink); text-decoration: none; transition: color .25s ease; }
.service-card--service:hover .card-title a { color: var(--rsh-green-700); }
.service-card--service .card-text { -webkit-line-clamp: 3; margin-bottom: 1.35rem; color: var(--rsh-muted); font-size: .9rem; line-height: 1.7; }
.service-card__footer { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--rsh-border); }
.service-card--service .service-card__cta { display: flex; justify-content: space-between; width: 100%; color: var(--rsh-ink); font-size: .86rem; }
.service-card__arrow { display: inline-grid; place-items: center; width: 32px; height: 32px; margin: -.35rem 0; border-radius: 10px; background: #f1f6f3; color: var(--rsh-green-600); transition: color .25s ease, background .25s ease, transform .3s var(--rsh-ease); }
.service-card--service .service-card__cta:hover { color: var(--rsh-green-700); }
.service-card--service .service-card__cta:hover .service-card__arrow { background: var(--rsh-green-600); color: #fff; transform: translateX(3px); }
.services-catalog__empty { padding: 4rem 2rem; border: 1px dashed rgba(20,43,54,.2); border-radius: 24px; background: rgba(255,255,255,.75); text-align: center; }
.services-catalog__empty > i { display: inline-grid; place-items: center; width: 64px; height: 64px; margin-bottom: 1rem; border-radius: 18px; background: var(--rsh-green-100); color: var(--rsh-green-600); font-size: 1.35rem; }
.services-catalog__empty h3 { font-size: 1.35rem; }
.services-catalog__empty p { max-width: 520px; margin: .75rem auto 1.4rem; color: var(--rsh-muted); }
.services-cta__eyebrow { display: inline-block; margin-bottom: 1rem; color: #a8dc91; font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.services-cta .lead { max-width: 660px; margin: 0 auto 1.75rem; }
.services-cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem; }
.services-cta .btn-custom-outline { border-color: rgba(255,255,255,.32); color: #fff; }
.services-cta .btn-custom-outline:hover { border-color: #fff; background: #fff; color: var(--rsh-navy-900); }

@media (max-width: 991.98px) {
    .services-catalog__intro { grid-template-columns: 1fr; }
    .services-catalog__summary { min-height: 260px; }
    .services-catalog__assurances { grid-template-columns: 1fr; }
    .services-catalog__assurances > span + span { border-top: 1px solid var(--rsh-border); border-left: 0; }
}

@media (max-width: 767.98px) {
    .services-catalog .page-breadcrumb { margin-bottom: 1.5rem; }
    .services-catalog__copy .section-header h2 { font-size: clamp(2rem, 9vw, 3rem); }
    .services-catalog__grid-head { align-items: flex-start; flex-direction: column; gap: 1rem; }
    .service-card--service .service-card__media { height: 210px; }
    .service-card--service .card-body { min-height: 0; }
}

/* Blog artwork */
.public-site .blog-card {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(20,43,54,.1);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(14,38,49,.065);
}
.public-site .blog-card:hover { border-color: rgba(118,184,93,.4); box-shadow: 0 24px 58px rgba(14,38,49,.14); transform: translateY(-8px); }
.blog-card .service-card__media { height: 224px; background: var(--rsh-navy-900); }
.blog-card .service-card__media::after { background: linear-gradient(180deg, rgba(9,28,37,.03) 28%, rgba(9,28,37,.6) 100%); }
.blog-card .service-card__media img,
.blog-card .service-card__placeholder { width: 100%; height: 100%; }
.blog-card .blog-card__category { border: 1px solid rgba(255,255,255,.24); box-shadow: 0 8px 22px rgba(8,28,37,.18); backdrop-filter: blur(8px); }
.blog-card .card-body { min-height: 300px; padding: 1.45rem 1.55rem 1.4rem; }
.blog-card .card-title { font-size: 1.2rem; line-height: 1.4; }
.blog-card .card-text { margin-bottom: 1.35rem; color: var(--rsh-muted); line-height: 1.7; }
.blog-card .service-card__cta { padding-top: 1rem; border-top: 1px solid var(--rsh-border); color: var(--rsh-ink); }
.blog-card .service-card__cta:hover { color: var(--rsh-green-700); }
.public-site .blog-post__hero-image { width: 100%; max-height: 500px; object-fit: cover; box-shadow: var(--rsh-shadow-md); }

@media (max-width: 767.98px) {
    .blog-card .service-card__media { height: 210px; }
    .blog-card .card-body { min-height: 0; }
    .public-site .blog-post__hero-image { max-height: 340px; }
}

/* About and team pages */
.about-overview .page-breadcrumb,
.team-showcase .page-breadcrumb {
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.about-overview__visual {
    position: relative;
    isolation: isolate;
    margin: 0 1.25rem 2rem 0;
}
.about-overview__visual::before {
    position: absolute;
    inset: 2rem -1.25rem -1.25rem 2rem;
    z-index: -1;
    border-radius: 28px;
    background:
        radial-gradient(circle at 84% 18%, rgba(255,255,255,.2), transparent 26%),
        linear-gradient(145deg, var(--rsh-green-500), var(--rsh-navy-800));
    content: "";
}
.about-overview__visual > img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 28px;
    box-shadow: var(--rsh-shadow-lg);
    object-fit: cover;
}
.about-overview__badge {
    position: absolute;
    right: -1rem;
    bottom: -2rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    max-width: 245px;
    padding: .9rem 1rem;
    border: 1px solid rgba(20,43,54,.1);
    border-radius: 16px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 42px rgba(14,38,49,.18);
    color: var(--rsh-muted);
    font-size: .82rem;
    line-height: 1.45;
    backdrop-filter: blur(14px);
}
.about-overview__badge strong { display: block; color: var(--rsh-ink); font-size: .9rem; }
.about-overview__badge-icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 13px;
    background: var(--rsh-green-100);
    color: var(--rsh-green-600);
    font-size: 1rem;
}
.about-overview__content { padding-left: clamp(0rem, 2.5vw, 2rem); }
.about-overview__content h2 { margin: .85rem 0 1.25rem; }
.about-overview__content > p { margin-bottom: 1rem; color: var(--rsh-muted); line-height: 1.8; }
.about-overview__content .about-overview__lead { color: var(--rsh-ink); font-size: 1.08rem; font-weight: 650; line-height: 1.7; }
.about-overview__highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem 1rem;
    margin: 1.65rem 0 1.8rem;
    padding: 0;
    list-style: none;
}
.about-overview__highlights li { display: flex; align-items: center; gap: .65rem; color: var(--rsh-ink); font-size: .9rem; font-weight: 700; }
.about-overview__highlights i { display: inline-grid; place-items: center; width: 25px; height: 25px; flex: 0 0 25px; border-radius: 50%; background: var(--rsh-green-100); color: var(--rsh-green-600); font-size: .65rem; }
.about-overview__content .btn { padding: .8rem 1.35rem; }

.about-advantages,
.team-values {
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(118,184,93,.1), transparent 24%),
        linear-gradient(180deg, #f7faf8, #f1f6f3);
}
.about-card-grid,
.approach-grid,
.team-card-grid,
.team-values__grid { margin-bottom: 0; }
.about-value-card,
.team-value-card,
.approach-card,
.team-profile-card {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid var(--rsh-border);
    transition: transform .4s var(--rsh-ease), border-color .3s ease, box-shadow .4s var(--rsh-ease);
}
.about-value-card {
    --rsh-card-inset: clamp(2rem, 3vw, 2.35rem);
    min-height: 330px;
    padding: var(--rsh-card-inset);
    border-radius: 22px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 12px 34px rgba(14,38,49,.055);
}
.about-value-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.25rem; margin-bottom: 2.35rem; }
.about-value-card__icon,
.team-value-card__icon,
.approach-card__icon {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border: 1px solid rgba(118,184,93,.2);
    border-radius: 17px;
    background: linear-gradient(145deg, var(--rsh-green-100), #f8fcf6);
    box-shadow: 0 9px 22px rgba(77,143,61,.1);
    color: var(--rsh-green-600);
    font-size: 1.15rem;
    transition: transform .35s var(--rsh-ease), background .3s ease, color .3s ease;
}
.about-value-card__number { color: rgba(20,43,54,.14); font-family: "Roboto Slab", Georgia, serif; font-size: 2.5rem; font-weight: 800; line-height: 1; }
.about-value-card__eyebrow,
.team-profile-card__eyebrow {
    margin: 0 0 .7rem;
    color: var(--rsh-green-600);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.about-value-card h3,
.team-value-card h3,
.approach-card h3 { margin-bottom: .85rem; font-size: 1.3rem; line-height: 1.4; }
.about-value-card > p:last-child,
.team-value-card > p:last-child,
.approach-card > p:last-child { margin-bottom: 0; color: var(--rsh-muted); line-height: 1.75; }

.about-approach {
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(118,184,93,.2), transparent 26%),
        radial-gradient(circle at 90% 78%, rgba(77,143,247,.13), transparent 28%),
        linear-gradient(135deg, var(--rsh-navy-950), var(--rsh-navy-800));
}
.about-approach::after {
    position: absolute;
    right: -170px;
    bottom: -200px;
    z-index: -1;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255,255,255,.018), 0 0 0 140px rgba(255,255,255,.012);
    content: "";
}
.about-approach .section-eyebrow { color: #a8dc91; }
.about-approach .section-header h2 { color: #fff; }
.about-approach .section-header p { color: rgba(255,255,255,.7); }
.approach-card {
    --rsh-card-inset: clamp(2rem, 3vw, 2.35rem);
    min-height: 290px;
    padding: var(--rsh-card-inset);
    border-color: rgba(255,255,255,.12);
    border-radius: 22px;
    background: rgba(255,255,255,.075);
    box-shadow: 0 16px 42px rgba(4,18,25,.12);
    backdrop-filter: blur(10px);
}
.approach-card__header { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; margin-bottom: 2.2rem; }
.approach-card__icon { border-color: rgba(168,220,145,.18); background: rgba(168,220,145,.11); box-shadow: none; color: #a8dc91; }
.approach-card__number { color: rgba(255,255,255,.42); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.approach-card h3 { color: #fff; }
.approach-card > p:last-child { color: rgba(255,255,255,.68); }
.about-approach__actions,
.team-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: 2.5rem; }
.about-approach .btn-custom-outline,
.team-cta .btn-custom-outline { border-color: rgba(255,255,255,.32); color: #fff; }
.about-approach .btn-custom-outline:hover,
.team-cta .btn-custom-outline:hover { border-color: #fff; background: #fff; color: var(--rsh-navy-900); }

.team-showcase { overflow: hidden; background: #fff; }
.team-showcase__intro { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.team-card-grid { position: relative; }
.team-card-grid::before {
    position: absolute;
    top: 15%;
    left: 50%;
    z-index: 0;
    width: min(840px, 76vw);
    height: 70%;
    border-radius: 50%;
    background: rgba(118,184,93,.08);
    filter: blur(58px);
    content: "";
    transform: translateX(-50%);
    pointer-events: none;
}
.team-card-grid > div { position: relative; z-index: 1; }
.team-profile-card {
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(14,38,49,.1);
}
.team-profile-card__media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: linear-gradient(145deg, #f7f9f8, #eaf1ee); }
.team-profile-card__media::after { position: absolute; inset: auto 0 0; height: 35%; background: linear-gradient(180deg, transparent, rgba(11,24,37,.18)); content: ""; pointer-events: none; }
.team-profile-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform .7s var(--rsh-ease), filter .5s ease; }
.team-profile-card__placeholder { display: grid; width: 100%; height: 100%; place-items: center; background: radial-gradient(circle at 35% 28%, rgba(168,220,145,.46), transparent 28%), linear-gradient(145deg, #eaf3eb, #d8e7df); }
.team-profile-card__placeholder span { display: grid; width: 112px; height: 112px; place-items: center; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; background: rgba(255,255,255,.7); box-shadow: 0 18px 40px rgba(14,38,49,.12); color: var(--rsh-green-700); font-size: 3.2rem; font-weight: 800; }
.team-profile-card__role { position: absolute; right: 1.2rem; bottom: 1.2rem; z-index: 1; padding: .55rem .9rem; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(11,24,37,.72); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(10px); }
.team-profile-card__body { display: flex; align-items: center; justify-content: space-between; gap: 1.75rem; padding: 2rem 2.1rem 2.15rem; }
.team-profile-card__body h3 { margin: 0 0 .35rem; font-size: 1.55rem; }
.team-profile-card__summary { margin: 0; color: var(--rsh-muted); font-size: .86rem; }
.team-profile-card__social { display: flex; flex: 0 0 auto; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.team-profile-card__social a { display: inline-grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--rsh-border); border-radius: 13px; background: #f5f8f7; color: var(--rsh-navy-800); text-decoration: none; transition: background .25s ease, border-color .25s ease, color .25s ease, transform .3s var(--rsh-ease); }
.team-profile-card__social a:hover { border-color: var(--rsh-green-600); background: var(--rsh-green-600); color: #fff; transform: translateY(-3px); }
.team-showcase__empty { max-width: 720px; margin: 0 auto; padding: clamp(2.5rem, 6vw, 4.5rem); border: 1px dashed rgba(20,43,54,.2); border-radius: 26px; background: linear-gradient(145deg, #f8fbf9, #f0f6f2); text-align: center; }
.team-showcase__empty > span { display: inline-grid; width: 70px; height: 70px; margin-bottom: 1.25rem; place-items: center; border-radius: 20px; background: var(--rsh-green-100); color: var(--rsh-green-700); font-size: 1.55rem; }
.team-showcase__empty h3 { margin-bottom: .8rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.team-showcase__empty p { max-width: 530px; margin: 0 auto 1.5rem; color: var(--rsh-muted); line-height: 1.75; }
.team-values .section-header { margin-bottom: .5rem; }
.team-value-card {
    --rsh-card-inset: clamp(2rem, 3vw, 2.35rem);
    min-height: 285px;
    padding: var(--rsh-card-inset);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(14,38,49,.055);
}
.team-value-card__icon { margin-bottom: 1.75rem; }
.team-cta__eyebrow { display: inline-block; margin-bottom: 1rem; color: #a8dc91; font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.team-cta .lead { max-width: 660px; margin: 0 auto; }

@media (hover: hover) and (pointer: fine) {
    .about-value-card:hover,
    .team-value-card:hover,
    .team-profile-card:hover { border-color: rgba(118,184,93,.42); box-shadow: var(--rsh-shadow-md); transform: translateY(-8px); }
    .approach-card:hover { border-color: rgba(168,220,145,.35); background: rgba(255,255,255,.11); box-shadow: 0 24px 54px rgba(4,18,25,.25); transform: translateY(-8px); }
    .about-value-card:hover .about-value-card__icon,
    .team-value-card:hover .team-value-card__icon { background: var(--rsh-green-600); color: #fff; transform: rotate(-4deg) scale(1.05); }
    .approach-card:hover .approach-card__icon { background: #a8dc91; color: var(--rsh-navy-900); transform: rotate(-4deg) scale(1.05); }
    .team-profile-card:hover .team-profile-card__media img { transform: scale(1.035); filter: saturate(1.04); }
}

@media (max-width: 991.98px) {
    .about-overview__content { padding-left: 0; }
    .about-overview__visual { margin-right: 1rem; }
    .team-profile-card__body { align-items: flex-start; flex-direction: column; gap: 1.15rem; }
}

@media (max-width: 767.98px) {
    .about-overview .page-breadcrumb,
    .team-showcase .page-breadcrumb { margin-bottom: 2rem; }
    .about-overview__row { --bs-gutter-y: 3.75rem; }
    .about-overview__visual { margin: 0 .65rem 1.2rem 0; }
    .about-overview__visual::before { inset: 1rem -.65rem -.65rem 1rem; border-radius: 22px; }
    .about-overview__visual > img { border-radius: 22px; }
    .about-overview__badge { right: -.25rem; bottom: -1.4rem; max-width: 220px; padding: .75rem .85rem; }
    .about-overview__badge-icon { width: 38px; height: 38px; flex-basis: 38px; }
    .about-overview__highlights { grid-template-columns: 1fr; }
    .about-value-card,
    .approach-card,
    .team-value-card {
        --rsh-card-inset: 1.75rem;
        min-height: 0;
    }
    .team-showcase__intro { margin-bottom: 2.25rem; }
    .team-profile-card__media { aspect-ratio: 1 / 1; }
    .team-profile-card__body { gap: 1.35rem; padding: 1.75rem; }
    .about-approach__actions,
    .team-cta__actions { align-items: stretch; flex-direction: column; }
    .about-approach__actions .btn,
    .team-cta__actions .btn { width: 100%; margin: 0; }
}

/* Public-site 2026 refinement: homepage and shared page surfaces */
.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100000;
    padding: .75rem 1rem;
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--rsh-shadow-md);
    color: var(--rsh-navy-900);
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.public-site #main-content { display: block; min-width: 0; }

/* Homepage hero */
.public-site .home-hero {
    display: block;
    min-height: 780px;
    height: auto;
    overflow: hidden;
    padding: clamp(9.5rem, 14vw, 11.5rem) 0 clamp(6rem, 9vw, 8rem);
    background: url('../../images/hero-bg.png') center 43% / cover no-repeat;
    color: #fff;
    text-align: left;
}
.public-site .home-hero::before {
    background:
        radial-gradient(circle at 12% 18%, rgba(118,184,93,.24), transparent 29%),
        radial-gradient(circle at 88% 78%, rgba(77,143,247,.18), transparent 32%),
        linear-gradient(112deg, rgba(5,19,27,.96) 0%, rgba(9,34,43,.91) 48%, rgba(16,57,67,.8) 100%);
}
.public-site .home-hero::after {
    right: -120px;
    bottom: -245px;
    left: auto;
    width: 540px;
    height: 540px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 0 0 62px rgba(255,255,255,.025), 0 0 0 124px rgba(255,255,255,.017);
}
.home-hero__container { position: relative; z-index: 2; }
.home-hero__copy { max-width: 760px; }
.home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1.3rem;
    padding: .55rem .85rem;
    border: 1px solid rgba(168,220,145,.2);
    border-radius: 999px;
    background: rgba(168,220,145,.08);
    color: #b9e6a5;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}
.home-hero__eyebrow i { font-size: .45rem; }
.public-site .home-hero h1 {
    max-width: 760px;
    margin: 0 0 1.5rem;
    color: #fff;
    font-size: clamp(3rem, 6.4vw, 5.65rem);
    line-height: 1.01;
    letter-spacing: -.058em;
    text-align: left;
}
.public-site .home-hero h1 span { color: #a8dc91; }
.public-site .home-hero .home-hero__copy > p {
    max-width: 650px;
    margin: 0 0 2rem;
    color: rgba(255,255,255,.76);
    font-size: clamp(1.05rem, 1.7vw, 1.2rem);
    line-height: 1.75;
    text-align: left;
}
.home-hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.home-hero__actions .btn { display: inline-flex; align-items: center; justify-content: center; gap: .65rem; min-height: 52px; margin: 0; padding: .8rem 1.45rem; }
.home-hero__actions .btn-custom-outline { border-color: rgba(255,255,255,.34); color: #fff; }
.home-hero__actions .btn-custom-outline:hover { border-color: #fff; background: #fff; color: var(--rsh-navy-900); }
.home-hero__trust { display: flex; flex-wrap: wrap; gap: .8rem 1.35rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.home-hero__trust li { display: inline-flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.72); font-size: .83rem; font-weight: 700; }
.home-hero__trust i { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(168,220,145,.14); color: #a8dc91; font-size: .58rem; }

.home-hero__workspace {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 27px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 34px 90px rgba(2,15,22,.36);
    color: var(--rsh-ink);
    transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
    backdrop-filter: blur(20px);
}
.home-hero__workspace::before { position: absolute; top: -110px; right: -90px; width: 230px; height: 230px; border-radius: 50%; background: rgba(118,184,93,.12); content: ""; }
.home-hero__workspace-head { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.7rem 1.75rem 1.35rem; border-bottom: 1px solid var(--rsh-border); }
.home-hero__workspace-head > div > span { display: block; margin-bottom: .35rem; color: var(--rsh-green-600); font-size: .67rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.public-site .home-hero__workspace-head h2 { margin: 0; color: var(--rsh-ink); font-size: 1.35rem; line-height: 1.25; }
.home-hero__workspace-status { display: inline-flex; align-items: center; gap: .45rem; padding: .42rem .7rem; border-radius: 999px; background: var(--rsh-green-100); color: var(--rsh-green-700); font-size: .66rem; font-weight: 800; }
.home-hero__workspace-status i { font-size: .42rem; }
.home-hero__service-list { display: grid; padding: .7rem; }
.home-hero__service { display: grid; grid-template-columns: 46px minmax(0, 1fr) auto; align-items: center; gap: .85rem; min-width: 0; padding: .8rem 1rem; border-radius: 15px; color: var(--rsh-ink); text-decoration: none; transition: background .25s ease, transform .3s var(--rsh-ease); }
.home-hero__service + .home-hero__service { border-top: 1px solid rgba(20,43,54,.075); }
.home-hero__service:hover { background: #f2f7f3; color: var(--rsh-green-700); transform: translateX(3px); }
.home-hero__service-icon { display: inline-grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(118,184,93,.2); border-radius: 14px; background: var(--rsh-green-100); color: var(--rsh-green-600); }
.home-hero__service > span:nth-child(2) { min-width: 0; }
.home-hero__service strong { display: block; overflow: hidden; color: var(--rsh-ink); font-size: .86rem; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.home-hero__service small { display: block; margin-top: .15rem; color: var(--rsh-muted); font-size: .68rem; }
.home-hero__service > i { color: var(--rsh-green-600); font-size: .75rem; }
.home-hero__service-empty { padding: 2rem 1.25rem; color: var(--rsh-muted); font-size: .9rem; line-height: 1.7; text-align: center; }
.home-hero__workspace-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.75rem; border-top: 1px solid var(--rsh-border); background: #f7faf8; color: var(--rsh-muted); font-size: .72rem; }
.home-hero__workspace-foot span { display: inline-flex; align-items: center; gap: .45rem; }
.home-hero__workspace-foot i { color: var(--rsh-green-600); }
.home-hero__workspace-foot a { color: var(--rsh-green-700); font-weight: 800; text-decoration: none; }

/* Homepage content */
.home-advantages { overflow: hidden; background: linear-gradient(180deg, #fff, #f7faf8); }
.home-advantages__grid > div,
.home-process__grid > div { display: flex; }
.home-advantage-card,
.home-process-card {
    box-sizing: border-box;
    width: 100%;
    padding: clamp(1.9rem, 3vw, 2.35rem);
    border: 1px solid var(--rsh-border);
    border-radius: 23px;
    transition: transform .4s var(--rsh-ease), border-color .3s ease, box-shadow .4s var(--rsh-ease), background .3s ease;
}
.home-advantage-card { min-height: 320px; background: #fff; box-shadow: 0 12px 34px rgba(14,38,49,.055); }
.home-advantage-card__icon,
.home-process-card__icon {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 2rem;
    border: 1px solid rgba(118,184,93,.22);
    border-radius: 17px;
    background: linear-gradient(145deg, var(--rsh-green-100), #f8fcf6);
    color: var(--rsh-green-600);
    font-size: 1.15rem;
    box-shadow: 0 9px 22px rgba(77,143,61,.09);
    transition: transform .35s var(--rsh-ease), color .3s ease, background .3s ease;
}
.home-advantage-card__eyebrow { margin: 0 0 .65rem; color: var(--rsh-green-600); font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.home-advantage-card h3,
.home-process-card h3 { margin-bottom: .85rem; font-size: 1.3rem; line-height: 1.4; }
.home-advantage-card > p:last-child,
.home-process-card > p:last-child { margin: 0; color: var(--rsh-muted); line-height: 1.75; }
.home-advantages__link { margin-top: 2.25rem; text-align: center; }
.home-advantages__link a,
.home-section-heading__aside a,
.home-faq__intro > a { display: inline-flex; align-items: center; gap: .6rem; color: var(--rsh-green-700); font-weight: 800; text-decoration: none; }
.home-advantages__link a:hover i,
.home-section-heading__aside a:hover i,
.home-faq__intro > a:hover i { transform: translateX(4px); }
.home-advantages__link i,
.home-section-heading__aside i,
.home-faq__intro > a i { font-size: .75rem; transition: transform .25s var(--rsh-ease); }

.home-services { background: #f2f6f4; }
.home-section-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr); align-items: end; gap: 2.5rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.home-section-heading h2 { max-width: 690px; margin: .8rem 0 0; }
.home-section-heading__aside { padding-left: 2rem; border-left: 1px solid rgba(20,43,54,.14); }
.home-section-heading__aside p { margin: 0 0 1rem; color: var(--rsh-muted); line-height: 1.75; }
.home-services__grid > div { display: flex; }
.home-services__mobile-action { display: none; margin-top: 2rem; text-align: center; }
.home-services__empty,
.blog-index__empty { width: 100%; padding: 4rem 2rem; border: 1px dashed rgba(20,43,54,.2); border-radius: 24px; background: rgba(255,255,255,.8); text-align: center; }
.home-services__empty > i,
.blog-index__empty > i { display: inline-grid; place-items: center; width: 62px; height: 62px; margin-bottom: 1rem; border-radius: 18px; background: var(--rsh-green-100); color: var(--rsh-green-600); }
.home-services__empty h3,
.blog-index__empty h2 { font-size: 1.35rem !important; }
.home-services__empty p,
.blog-index__empty p { margin: .6rem 0 0; color: var(--rsh-muted); }

.home-process {
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(118,184,93,.2), transparent 26%),
        radial-gradient(circle at 92% 86%, rgba(77,143,247,.13), transparent 26%),
        linear-gradient(135deg, var(--rsh-navy-950), var(--rsh-navy-800));
}
.home-process .section-eyebrow { color: #a8dc91; }
.home-process .section-header h2 { color: #fff; }
.home-process .section-header p { color: rgba(255,255,255,.68); }
.home-process-card { min-height: 300px; border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.075); box-shadow: 0 18px 44px rgba(4,18,25,.14); backdrop-filter: blur(10px); }
.home-process-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.home-process-card__icon { margin: 0; border-color: rgba(168,220,145,.17); background: rgba(168,220,145,.11); box-shadow: none; color: #a8dc91; }
.home-process-card__number { color: rgba(255,255,255,.4); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.home-process-card h3 { color: #fff; }
.home-process-card > p:last-child { color: rgba(255,255,255,.68); }
.home-process__action { margin-top: 2.5rem; text-align: center; }

.home-faq { background: #fff; }
.home-faq__intro { position: sticky; top: 120px; }
.home-faq__intro h2 { margin: .8rem 0 1.2rem; font-size: clamp(2rem, 3.6vw, 3rem) !important; }
.home-faq__intro > p { margin-bottom: 1.4rem; color: var(--rsh-muted); line-height: 1.8; }
.home-faq__accordion .accordion-item { margin-bottom: .85rem; border-color: var(--rsh-border); border-radius: 17px !important; background: #fff; box-shadow: 0 8px 24px rgba(14,38,49,.045); }
.home-faq__accordion .accordion-button { gap: 1rem; min-height: 68px; padding: 1.2rem 1.35rem; color: var(--rsh-ink); font-family: "Roboto Slab", Georgia, serif; font-size: 1rem; }
.home-faq__accordion .accordion-button > span { color: var(--rsh-green-600); font-family: "Open Sans", sans-serif; font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
.home-faq__accordion .accordion-button:not(.collapsed) { background: #f2f7f3; color: var(--rsh-green-700); }
.home-faq__accordion .accordion-body { padding: 0 1.5rem 1.45rem 3.65rem; color: var(--rsh-muted); line-height: 1.8; }
.home-cta__eyebrow { display: inline-block; margin-bottom: 1rem; color: #a8dc91; font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.home-cta .lead { max-width: 680px; margin: 0 auto; }
.home-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: 2rem; }
.home-cta .btn-custom-outline { border-color: rgba(255,255,255,.34); color: #fff; }
.home-cta .btn-custom-outline:hover { border-color: #fff; background: #fff; color: var(--rsh-navy-900); }

/* Shared catalog, article, contact, and legal surfaces */
.public-site .service-card--service .card-body { padding: 1.75rem 1.8rem 1.6rem; }
.public-site .blog-card .card-body { padding: 1.7rem 1.75rem 1.55rem; }
.blog-index { background: linear-gradient(180deg, #fff, #f7faf8); }
.blog-index .page-breadcrumb { margin-bottom: 2rem; }
.blog-index .blog-filter-pills { padding: .5rem; border: 1px solid var(--rsh-border); border-radius: 16px; background: #f7faf8; }
.blog-index .blog-filter-pills + .blog-filter-pills { margin-top: .8rem; }
.blog-index .blog-filter-pill { border-color: transparent; background: transparent; color: var(--rsh-muted); }
.blog-index .blog-filter-pill:hover { border-color: rgba(118,184,93,.22); background: #fff; color: var(--rsh-green-700); }
.blog-index .blog-filter-pill.active { border-color: var(--rsh-green-600); background: var(--rsh-green-600); color: #fff; }
.blog-index .blog-grid { margin-top: 2.25rem !important; }
.blog-index .blog-grid > div { display: flex; }

.public-content-page { background: linear-gradient(180deg, #fff, #f7faf8); }
.public-content-page .page-breadcrumb,
.public-content-page .service-breadcrumb { margin: 0 0 2rem; }
.public-prose-card {
    --rsh-prose-inset: clamp(1.5rem, 3.3vw, 2.6rem);
    --rsh-prose-pull: clamp(-2.6rem, -3.3vw, -1.5rem);
    overflow: hidden;
    padding: var(--rsh-prose-inset);
    border: 1px solid var(--rsh-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(14,38,49,.075);
}
.public-prose-card > img:first-child,
.public-prose-card > .service-card__placeholder:first-child { width: calc(100% + var(--rsh-prose-inset) + var(--rsh-prose-inset)); max-width: none; margin: var(--rsh-prose-pull) var(--rsh-prose-pull) 2rem !important; border-radius: 24px 24px 0 0 !important; }
.public-prose-card h2 { margin-top: 2rem; padding-top: .25rem; font-size: clamp(1.55rem, 3vw, 2.15rem) !important; }
.public-prose-card h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.public-prose-card :where(p, li) { color: var(--rsh-muted); line-height: 1.85; }
.public-prose-card a { color: var(--rsh-green-700); }
.service-sidebar__card { padding: 1.8rem; border-color: var(--rsh-border); border-radius: 20px; background: #fff; box-shadow: 0 12px 34px rgba(14,38,49,.06); }
.service-sidebar__card h3 { font-size: 1.25rem; }
.service-sidebar__list a { padding: .7rem .75rem; border-radius: 12px; color: var(--rsh-ink); transition: background .2s ease, color .2s ease, transform .25s var(--rsh-ease); }
.service-sidebar__list a:hover { background: #f1f6f3; color: var(--rsh-green-700); text-decoration: none; transform: translateX(3px); }
.service-sidebar__list i { display: inline-grid; place-items: center; width: 34px; height: 34px; flex: 0 0 34px; border-radius: 10px; background: var(--rsh-green-100); color: var(--rsh-green-600); }
.blog-post-byline { padding: .85rem 1rem; border-radius: 12px; background: #f5f8f7; color: var(--rsh-muted); }
.blog-share-buttons { padding: 1rem 0; border-top: 1px solid var(--rsh-border); border-bottom: 1px solid var(--rsh-border); }

.public-site.contact-page-shell,
.public-site.contact-page-shell :where(p, a, span, small, address, dt, dd, label, input, textarea, button, select, option, strong, h1, h2, h3, h4, h5, h6, th, td) { font-family: "Roboto Slab", Georgia, serif !important; }
.contact-page { overflow: hidden; background: linear-gradient(180deg, #fff, #f3f7f5); font-family: "Roboto Slab", Georgia, serif; }
.contact-page :where(p, a, span, small, address, dt, dd, label, input, textarea, button) { font-family: "Roboto Slab", Georgia, serif; }
.contact-page :where(h1, h2, h3, h4) { font-family: "Roboto Slab", Georgia, serif; }
.contact-page .page-breadcrumb { margin: 0 0 2.5rem; }
.contact-page__heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .65fr); align-items: end; gap: 2.5rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.contact-page__heading h2 { max-width: 680px; margin: .8rem 0 0; font-size: clamp(2.15rem, 4.4vw, 3.65rem); line-height: 1.13; }
.contact-page__heading > p { margin: 0; padding-left: 2rem; border-left: 1px solid rgba(20,43,54,.14); color: var(--rsh-muted); font-size: 1rem; line-height: 1.8; }
.contact-page__assurances { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin: 0 0 clamp(2.5rem, 5vw, 4rem); padding: 0; list-style: none; }
.contact-page__assurances li { display: flex; align-items: center; gap: .9rem; min-width: 0; padding: 1.1rem 1.2rem; border: 1px solid var(--rsh-border); border-radius: 17px; background: rgba(255,255,255,.78); box-shadow: 0 8px 26px rgba(14,38,49,.045); }
.contact-page__assurances i { display: inline-grid; place-items: center; width: 40px; height: 40px; flex: 0 0 40px; border-radius: 12px; background: var(--rsh-green-100); color: var(--rsh-green-600); }
.contact-page__assurances span { min-width: 0; }
.contact-page__assurances strong { display: block; margin-bottom: .15rem; color: var(--rsh-ink); font-size: .83rem; line-height: 1.35; }
.contact-page__assurances small { display: block; color: var(--rsh-muted); font-size: .72rem; line-height: 1.45; }
.contact-page__details { display: grid; gap: 1rem; }
.contact-page__quick-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.contact-info-card,
.contact-hours-card,
.contact-form-card {
    border: 1px solid var(--rsh-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(14,38,49,.055);
}
.contact-info-card { display: flex; align-items: flex-start; gap: 1rem; min-width: 0; padding: 1.55rem; }
.contact-info-card--wide { padding: 1.75rem; }
.contact-info-card__icon,
.contact-form-card__icon { display: inline-grid; place-items: center; width: 52px; height: 52px; flex: 0 0 52px; border: 1px solid rgba(118,184,93,.2); border-radius: 16px; background: var(--rsh-green-100); color: var(--rsh-green-600); }
.contact-info-card > div { min-width: 0; }
.contact-info-card p,
.contact-hours-card__head p { margin: 0 0 .35rem; color: var(--rsh-green-600); font-size: .67rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-info-card h3,
.contact-hours-card h3 { margin: 0 0 .35rem; font-size: 1.05rem; font-weight: 700; line-height: 1.45; }
.contact-info-card h3 a { color: var(--rsh-ink); text-decoration: none; }
.contact-page__quick-grid .contact-info-card h3 { font-size: .9rem; }
.contact-info-card h3 a:hover { color: var(--rsh-green-700); }
.contact-info-card address,
.contact-info-card > div > span { margin: 0; color: var(--rsh-muted); font-size: .83rem; font-style: normal; line-height: 1.6; }
.contact-hours-card { padding: 1.75rem; }
.contact-hours-card__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.35rem; }
.contact-hours-card dl { margin: 0; }
.contact-hours-card dl > div { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-top: 1px dashed rgba(20,43,54,.14); }
.contact-hours-card dt,
.contact-hours-card dd { margin: 0; color: var(--rsh-muted); font-size: .85rem; }
.contact-hours-card dd { color: var(--rsh-ink); font-weight: 700; text-align: right; }
.contact-hours-card__note { display: flex; align-items: center; gap: .55rem; margin: 1rem 0 0; color: var(--rsh-green-700); font-size: .78rem; font-weight: 700; }
.contact-map { border-color: var(--rsh-border); border-radius: 22px; box-shadow: 0 12px 34px rgba(14,38,49,.055); }
.contact-map iframe { border: 0; }
.contact-form-card { position: sticky; top: 105px; padding: clamp(1.7rem, 3.6vw, 2.5rem); box-shadow: var(--rsh-shadow-md); }
.contact-form-card__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.contact-form-card__head .section-eyebrow { margin-bottom: .35rem; }
.contact-form-card__head h2 { margin: 0; font-size: clamp(1.75rem, 3vw, 2.4rem) !important; }
.contact-form-card__intro { margin-bottom: 1.6rem; color: var(--rsh-muted); font-size: .94rem; line-height: 1.75; }
.contact-form-card .form-label { margin-bottom: .45rem; color: var(--rsh-ink); font-family: "Roboto Slab", Georgia, serif; font-size: .82rem; font-weight: 750; }
.contact-form-card .form-control { padding: .78rem .9rem; border-radius: var(--rsh-radius-sm); color: var(--rsh-ink); font-family: "Roboto Slab", Georgia, serif; font-size: .93rem; line-height: 1.55; }
.contact-form-card .form-control::placeholder { color: #8a96a4; font-family: "Roboto Slab", Georgia, serif; opacity: 1; }
.contact-form-card textarea.form-control { min-height: 156px; resize: vertical; }
.contact-form-card .form-control:hover { border-color: rgba(77,143,61,.42); }
.contact-form-card .form-control:focus { border-color: var(--rsh-green-500); box-shadow: 0 0 0 4px rgba(118,184,93,.13); }
.contact-form-card__required { color: var(--rsh-green-700); font-weight: 800; }
.contact-form-card__submit { display: inline-flex; align-items: center; justify-content: center; gap: .65rem; width: 100%; min-height: 52px; margin-top: 1.25rem; font-family: "Roboto Slab", Georgia, serif; font-size: .92rem; }
.contact-form-card__submit:disabled { cursor: wait; filter: saturate(.6); opacity: .78; }
.contact-form-card__alert { display: flex; align-items: flex-start; gap: .65rem; margin: 0 0 1.25rem; padding: .85rem 1rem; border: 1px solid; border-radius: 12px; font-size: .82rem; line-height: 1.55; }
.contact-form-card__alert i { margin-top: .2rem; }
.contact-form-card__alert--success { border-color: rgba(77,143,61,.28); background: var(--rsh-green-100); color: var(--rsh-green-700); }
.contact-form-card__alert--error { border-color: rgba(164,61,61,.25); background: #fff4f4; color: #8d3030; }
.contact-form-card__privacy { display: flex; align-items: center; justify-content: center; gap: .5rem; margin: 1rem 0 0; color: var(--rsh-muted); font-size: .72rem; text-align: center; }
.contact-form-card__status { min-height: 1.2rem; margin: .45rem 0 0; color: var(--rsh-muted); font-size: .75rem; line-height: 1.5; text-align: center; }
.contact-form-card__status.is-success { color: var(--rsh-green-700); font-weight: 700; }
.contact-form-card__status.is-error { color: #a43d3d; font-weight: 700; }
.contact-page-dialog,
.contact-page-dialog :where(h2, div, p, button) { font-family: "Roboto Slab", Georgia, serif !important; }

.public-site.legal-page-shell,
.public-site.legal-page-shell :where(p, a, span, small, address, dt, dd, label, input, textarea, button, select, option, strong, em, h1, h2, h3, h4, h5, h6, li, th, td) { font-family: "Roboto Slab", Georgia, serif !important; }
.legal-page { background: linear-gradient(180deg, #fff, #f6f9f7); font-family: "Roboto Slab", Georgia, serif; }
.legal-page :where(p, a, span, small, address, dt, dd, label, input, textarea, button, strong, em, h1, h2, h3, h4, h5, h6, li, th, td) { font-family: "Roboto Slab", Georgia, serif; }
.legal-page .page-breadcrumb { margin: 0 0 2rem; }
.public-site .legal-toc { top: 105px; padding: 1.5rem; border: 1px solid var(--rsh-border); border-radius: 20px; background: #fff; box-shadow: 0 12px 34px rgba(14,38,49,.055); }
.public-site .legal-toc h3 { margin-bottom: 1rem; font-size: 1rem; }
.public-site .legal-toc a { display: block; padding: .34rem .45rem; border-radius: 8px; color: var(--rsh-muted); font-size: .78rem; line-height: 1.5; }
.public-site .legal-toc a:hover { background: #f1f6f3; color: var(--rsh-green-700); text-decoration: none; }
.public-site .legal-content { padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--rsh-border); border-radius: 24px; background: #fff; box-shadow: 0 16px 44px rgba(14,38,49,.07); }
.public-site .legal-updated { display: inline-flex; margin-bottom: .5rem; padding: .5rem .8rem; border-radius: 999px; background: var(--rsh-green-100); color: var(--rsh-green-700); font-weight: 800; }
.public-site .legal-content h2 { scroll-margin-top: 115px; padding-top: 1.3rem; border-top: 1px solid var(--rsh-border); font-size: clamp(1.45rem, 2.6vw, 1.95rem); }
.public-site .legal-content h2:first-of-type { border-top: 0; }
.public-site .legal-content :where(p, li) { color: var(--rsh-muted); }
.public-site .legal-contact-box { border: 1px solid rgba(118,184,93,.22); border-radius: 17px; background: linear-gradient(145deg, var(--rsh-green-100), #f8fcf6); }

.public-site .site-footer { background: var(--rsh-navy-950); }
.public-site .site-footer__top { padding: clamp(4rem, 7vw, 6rem) 0 3.5rem; }
.public-site .site-footer__brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.public-site .site-footer__brand img { width: 46px; height: 46px; object-fit: contain; }
.public-site .site-footer__brand .public-brand__name { color: #fff; }
.public-site .site-footer__links a,
.public-site .site-footer__contact a { transition: color .2s ease, transform .2s ease; }
.public-site .site-footer__links a:hover { color: #a8dc91; transform: translateX(3px); }
.public-site .site-footer__resource-link { display: inline-flex; align-items: center; gap: .6rem; margin-top: .45rem; padding: .72rem 1rem; border: 1px solid rgba(168,220,145,.2); border-radius: 12px; background: rgba(168,220,145,.08); color: #a8dc91; font-size: .82rem; font-weight: 800; text-decoration: none; transition: background .2s ease, border-color .2s ease, transform .25s var(--rsh-ease); }
.public-site .site-footer__resource-link:hover { border-color: rgba(168,220,145,.5); background: rgba(168,220,145,.14); color: #c8efb7; transform: translateY(-2px); }

@media (hover: hover) and (pointer: fine) {
    .home-advantage-card:hover { border-color: rgba(118,184,93,.42); box-shadow: var(--rsh-shadow-md); transform: translateY(-8px); }
    .home-advantage-card:hover .home-advantage-card__icon { background: var(--rsh-green-600); color: #fff; transform: rotate(-4deg) scale(1.05); }
    .home-process-card:hover { border-color: rgba(168,220,145,.35); background: rgba(255,255,255,.11); box-shadow: 0 24px 54px rgba(4,18,25,.24); transform: translateY(-8px); }
    .home-process-card:hover .home-process-card__icon { background: #a8dc91; color: var(--rsh-navy-900); transform: rotate(-4deg) scale(1.05); }
    .contact-info-card:hover { border-color: rgba(118,184,93,.38); box-shadow: var(--rsh-shadow-md); transform: translateY(-4px); }
}

@media (max-width: 1199.98px) {
    .public-site .home-hero h1 { font-size: clamp(3rem, 6vw, 4.75rem); }
    .home-hero__workspace { transform: none; }
    .contact-page__quick-grid { grid-template-columns: 1fr; }
}

@media (max-width: 991.98px) {
    .public-site .home-hero { min-height: 0; padding-top: 9rem; }
    .home-hero__copy { max-width: 760px; }
    .home-hero__workspace { max-width: 680px; margin-top: 1.5rem; }
    .home-section-heading,
    .contact-page__heading { grid-template-columns: 1fr; gap: 1.4rem; }
    .home-section-heading__aside,
    .contact-page__heading > p { padding-left: 0; border-left: 0; }
    .home-section-heading__aside a { display: none; }
    .home-services__mobile-action { display: block; }
    .home-faq__intro { position: static; }
    .contact-form-card { position: static; }
    .contact-page__assurances { grid-template-columns: 1fr; }
    .public-site .legal-toc { position: static; max-height: none; }
}

@media (max-width: 767.98px) {
    .public-site .home-hero { padding: 8.25rem 0 5rem; }
    .public-site .home-hero h1 { font-size: clamp(2.65rem, 12.5vw, 3.8rem); }
    .home-hero__actions { align-items: stretch; flex-direction: column; }
    .home-hero__actions .btn { width: 100%; }
    .home-hero__trust { display: grid; grid-template-columns: 1fr; }
    .home-hero__workspace-head { padding: 1.4rem 1.25rem 1.1rem; }
    .home-hero__workspace-status { display: none; }
    .home-hero__service-list { padding: .45rem; }
    .home-hero__service { grid-template-columns: 42px minmax(0, 1fr) auto; padding: .75rem; }
    .home-hero__service-icon { width: 42px; height: 42px; }
    .home-hero__workspace-foot { padding: .9rem 1.2rem; }
    .home-advantage-card,
    .home-process-card { min-height: 0; padding: 1.75rem; }
    .home-section-heading { margin-bottom: 2.25rem; }
    .home-faq__accordion .accordion-button { align-items: flex-start; padding: 1rem; }
    .home-faq__accordion .accordion-body { padding: 0 1rem 1.2rem; }
    .home-cta__actions { align-items: stretch; flex-direction: column; }
    .home-cta__actions .btn { width: 100%; }
    .public-site .service-card--service .card-body,
    .public-site .blog-card .card-body { padding: 1.55rem; }
    .contact-page__quick-grid { grid-template-columns: 1fr; }
    .contact-page__assurances li { padding: 1rem; }
    .contact-info-card,
    .contact-info-card--wide,
    .contact-hours-card,
    .contact-form-card { padding: 1.5rem; }
    .contact-hours-card dl > div { align-items: flex-start; flex-direction: column; gap: .2rem; }
    .contact-hours-card dd { text-align: left; }
    .contact-form-card__head { align-items: flex-start; }
    .contact-form-card__icon { width: 46px; height: 46px; flex-basis: 46px; }
    .public-prose-card { border-radius: 20px; }
    .public-site .legal-content { border-radius: 20px; }
}
