:root {
    --bs-primary: #14324a;
    --bs-primary-rgb: 20, 50, 74;
    --bs-secondary: #7d6b4e;
    --bs-secondary-rgb: 125, 107, 78;
    --bs-light: #f6f2eb;
    --bs-light-rgb: 246, 242, 235;
    --bs-body-bg: #f8f7f4;
    --bs-body-color: #233341;
    --studio-accent: #c9b48a;
    --studio-surface: #ffffff;
    --studio-muted: #6d7780;
    --studio-border: rgba(20, 50, 74, 0.12);
    --studio-shadow: 0 1rem 2rem rgba(20, 50, 74, 0.08);
}

body {
    background:
        radial-gradient(circle at top left, rgba(201, 180, 138, 0.18), transparent 28%),
        linear-gradient(180deg, #fbfaf7 0%, #f4f1ea 100%);
    color: var(--bs-body-color);
}

html[data-site-theme='dark'] {
    color-scheme: dark;
}

html[data-site-theme='dark'] body {
    background:
        radial-gradient(circle at top left, rgba(201, 180, 138, 0.12), transparent 24%),
        linear-gradient(180deg, #0e1822 0%, #15202c 100%);
    color: #edf3fb;
}

a {
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
}

.site-navbar {
    backdrop-filter: blur(16px);
    background-color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--studio-border);
}

html[data-site-theme='dark'] .site-navbar {
    background-color: rgba(16, 25, 35, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-navbar .navbar-toggler {
    border-radius: 1rem;
    border-width: 0.25rem;
    padding: 0.65rem 0.85rem;
}

.site-navbar .navbar-nav .nav-link {
    border-radius: 0.85rem;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    line-height: 1;
}

.site-brand-logo {
    width: 1.85rem;
    height: 1.85rem;
    object-fit: contain;
    flex: 0 0 auto;
}

.navbar-primary-links {
    gap: 0.35rem;
}

.navbar-primary-links .nav-link {
    padding-inline: 0.95rem;
    color: var(--studio-muted);
}

html[data-site-theme='dark'] .site-navbar .navbar-brand,
html[data-site-theme='dark'] .navbar-primary-links .nav-link,
html[data-site-theme='dark'] .navbar-locale-switcher .nav-link,
html[data-site-theme='dark'] .navbar-theme-switcher .nav-link,
html[data-site-theme='dark'] .nav-company-switcher .nav-link,
html[data-site-theme='dark'] .nav-account-menu .nav-link {
    color: rgba(237, 243, 251, 0.86) !important;
}

.nav-company-switcher .nav-link,
.nav-account-menu .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-weight: 500;
}

.navbar-primary-links .nav-link:hover,
.navbar-primary-links .nav-link:focus {
    color: var(--bs-primary);
    background: rgba(20, 50, 74, 0.05);
}

.navbar-utility {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-utility-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.navbar-utility-actions .btn {
    border-radius: 999px;
    padding-inline: 1rem;
}

.navbar-utility .dropdown-menu {
    border-radius: 1rem;
    border-color: var(--studio-border);
    box-shadow: var(--studio-shadow);
}

html[data-site-theme='dark'] .navbar-utility .dropdown-menu,
html[data-site-theme='dark'] .nav-account-menu .dropdown-menu,
html[data-site-theme='dark'] .nav-company-switcher .dropdown-menu {
    background: #15202c;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.32);
}

html[data-site-theme='dark'] .dropdown-item,
html[data-site-theme='dark'] .dropdown-header {
    color: #edf3fb;
}

html[data-site-theme='dark'] .dropdown-item:hover,
html[data-site-theme='dark'] .dropdown-item:focus {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.navbar-utility .dropdown-header,
.nav-account-menu .dropdown-header {
    color: var(--studio-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.navbar-locale-switcher .nav-link {
    color: var(--studio-muted);
    padding-inline: 0.5rem;
}

.navbar-mobile-panel {
    display: none;
}

.hero-section {
    background:
        linear-gradient(120deg, rgba(20, 50, 74, 0.94), rgba(22, 59, 83, 0.88)),
        linear-gradient(45deg, rgba(201, 180, 138, 0.18), transparent);
    color: #fff;
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
    box-shadow: var(--studio-shadow);
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: auto -10% -30% 45%;
    height: 24rem;
    background: radial-gradient(circle, rgba(201, 180, 138, 0.28), transparent 70%);
}

.section-card,
.card-elevated {
    background: var(--studio-surface);
    border: 1px solid var(--studio-border);
    border-radius: 1.5rem;
    box-shadow: var(--studio-shadow);
}

html[data-site-theme='dark'] .section-card,
html[data-site-theme='dark'] .card-elevated,
html[data-site-theme='dark'] .card,
html[data-site-theme='dark'] .list-group-item,
html[data-site-theme='dark'] .accordion-item,
html[data-site-theme='dark'] .alert-light,
html[data-site-theme='dark'] .bg-light,
html[data-site-theme='dark'] .bg-light-subtle,
html[data-site-theme='dark'] .table,
html[data-site-theme='dark'] .modal-content,
html[data-site-theme='dark'] .navbar-mobile-card,
html[data-site-theme='dark'] .pwa-state-box {
    background: rgba(18, 27, 38, 0.88) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: #edf3fb;
    box-shadow: 0 1.1rem 2.2rem rgba(0, 0, 0, 0.24);
}

html[data-site-theme='dark'] .text-secondary,
html[data-site-theme='dark'] .form-text,
html[data-site-theme='dark'] .placeholder-note,
html[data-site-theme='dark'] .navbar-mobile-user,
html[data-site-theme='dark'] .navbar-utility .dropdown-header,
html[data-site-theme='dark'] .nav-account-menu .dropdown-header {
    color: rgba(237, 243, 251, 0.72) !important;
}

html[data-site-theme='dark'] .service-card h2,
html[data-site-theme='dark'] .service-card .h4 {
    color: #f5f8fc;
}

html[data-site-theme='dark'] .service-card p.text-secondary {
    color: rgba(237, 243, 251, 0.9) !important;
}

html[data-site-theme='dark'] .service-card .badge.text-bg-primary-subtle {
    background: rgba(217, 192, 138, 0.2) !important;
    color: #f1dfb8 !important;
    border: 1px solid rgba(217, 192, 138, 0.3);
}

html[data-site-theme='dark'] .section-card .badge.text-bg-primary-subtle,
html[data-site-theme='dark'] .section-card .badge.text-bg-secondary-subtle {
    border: 1px solid rgba(217, 192, 138, 0.26);
    font-weight: 600;
}

html[data-site-theme='dark'] .section-card .badge.text-bg-primary-subtle {
    background: rgba(217, 192, 138, 0.2) !important;
    color: #f1dfb8 !important;
}

html[data-site-theme='dark'] .section-card .badge.text-bg-secondary-subtle {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #f5f8fc !important;
}

html[data-site-theme='dark'] .service-card .stretched-link {
    color: #6fa8ff;
    font-weight: 600;
}

html[data-site-theme='dark'] .service-card .stretched-link:hover,
html[data-site-theme='dark'] .service-card .stretched-link:focus {
    color: #9dc3ff;
}

html[data-site-theme='dark'] .news-card p.text-secondary,
html[data-site-theme='dark'] .page-header .lead {
    color: rgba(237, 243, 251, 0.88) !important;
}

html[data-site-theme='dark'] .news-card .badge.text-bg-primary-subtle,
html[data-site-theme='dark'] .page-header .badge.text-bg-light {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #f5f8fc !important;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

html[data-site-theme='dark'] .icon-chip {
    background: rgba(255, 255, 255, 0.08);
    color: #d9c08a;
}

html[data-site-theme='dark'] .btn-outline-primary {
    color: #dfe8f2;
    border-color: rgba(217, 192, 138, 0.34);
}

html[data-site-theme='dark'] .btn-outline-primary:hover,
html[data-site-theme='dark'] .btn-outline-primary:focus {
    background: rgba(217, 192, 138, 0.12);
    border-color: rgba(217, 192, 138, 0.48);
    color: #fff;
}

html[data-site-theme='dark'] .form-control,
html[data-site-theme='dark'] .form-select,
html[data-site-theme='dark'] textarea,
html[data-site-theme='dark'] input {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: #edf3fb;
}

html[data-site-theme='dark'] .form-control:focus,
html[data-site-theme='dark'] .form-select:focus,
html[data-site-theme='dark'] textarea:focus,
html[data-site-theme='dark'] input:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(217, 192, 138, 0.46);
    box-shadow: 0 0 0 0.22rem rgba(217, 192, 138, 0.14);
    color: #fff;
}

html[data-site-theme='dark'] .table > :not(caption) > * > * {
    color: #edf3fb;
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

html[data-site-theme='dark'] .table-documents {
    --bs-table-bg: transparent;
    --bs-table-color: #edf3fb;
    --bs-table-border-color: rgba(255, 255, 255, 0.08);
    --bs-table-striped-bg: rgba(255, 255, 255, 0.02);
    --bs-table-striped-color: #edf3fb;
    --bs-table-hover-bg: rgba(255, 255, 255, 0.04);
    --bs-table-hover-color: #ffffff;
}

html[data-site-theme='dark'] .table-documents th,
html[data-site-theme='dark'] .table thead th {
    color: rgba(237, 243, 251, 0.72);
}

html[data-site-theme='dark'] .table-documents td,
html[data-site-theme='dark'] .table-documents td strong,
html[data-site-theme='dark'] .table-documents td a:not(.btn) {
    color: #edf3fb !important;
}

html[data-site-theme='dark'] .table-documents .text-secondary,
html[data-site-theme='dark'] .table-documents .small.text-secondary {
    color: rgba(237, 243, 251, 0.72) !important;
}

html[data-site-theme='dark'] .table-documents .btn-primary {
    color: #fff !important;
}

html[data-site-theme='dark'] .badge.text-bg-light {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #edf3fb !important;
}

html[data-site-theme='dark'] .pagination .page-link {
    background: rgba(18, 27, 38, 0.88);
    color: #edf3fb;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

html[data-site-theme='dark'] .pagination .page-link:hover,
html[data-site-theme='dark'] .pagination .page-link:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(217, 192, 138, 0.34);
}

html[data-site-theme='dark'] .pagination .page-item.active .page-link {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
}

html[data-site-theme='dark'] .pagination .page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(237, 243, 251, 0.38);
    border-color: rgba(255, 255, 255, 0.08);
}

.pagination .page-link {
    border-radius: 0.85rem;
    margin-inline: 0.2rem;
}

html[data-site-theme='dark'] .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.22);
}

html[data-site-theme='dark'] .navbar-toggler-icon {
    filter: invert(1) grayscale(1) brightness(1.5);
}

.section-card {
    padding: 2rem;
}

.news-detail-image {
    aspect-ratio: 21 / 9;
    border: 1px solid var(--studio-border);
    border-radius: 1.5rem;
    box-shadow: var(--studio-shadow);
    overflow: hidden;
}

.news-detail-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-image-cropper {
    max-width: 46rem;
    margin: 0.75rem 0 1.25rem;
}

.news-image-cropper__stage {
    position: relative;
    aspect-ratio: 21 / 9;
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--studio-border);
    border-radius: 1rem;
    background:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        #102437;
    background-size: 33.333% 33.333%;
    cursor: grab;
    touch-action: none;
}

.news-image-cropper__stage:active {
    cursor: grabbing;
}

.news-image-cropper__image {
    position: absolute;
    top: 0;
    left: 0;
    max-width: none;
    max-height: none;
    user-select: none;
    pointer-events: none;
    transform-origin: top left;
}

.news-image-cropper__controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    margin-top: 0.75rem;
}

.news-image-cropper__zoom {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: min(100%, 24rem);
    margin: 0;
    color: var(--studio-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.news-image-cropper__zoom input {
    flex: 1 1 auto;
}

.icon-chip {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: rgba(20, 50, 74, 0.08);
    color: var(--bs-primary);
}

.service-card .badge.text-bg-primary-subtle,
.news-card .badge.text-bg-primary-subtle {
    background: rgba(20, 50, 74, 0.08) !important;
    color: #14324a !important;
    border: 1px solid rgba(20, 50, 74, 0.14);
    font-weight: 600;
}

.section-card .badge.text-bg-primary-subtle,
.section-card .badge.text-bg-secondary-subtle {
    border: 1px solid rgba(20, 50, 74, 0.14);
    font-weight: 600;
}

.section-card .badge.text-bg-primary-subtle {
    background: rgba(20, 50, 74, 0.08) !important;
    color: #14324a !important;
}

.section-card .badge.text-bg-secondary-subtle {
    background: rgba(125, 107, 78, 0.1) !important;
    color: #6f5c3f !important;
}

.home-services-rail {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.home-services-track {
    display: flex;
    gap: 1.75rem;
    width: max-content;
    animation: home-services-marquee 44s linear infinite;
    will-change: transform;
}

.home-services-rail:hover .home-services-track,
.home-services-rail:focus-within .home-services-track {
    animation-play-state: paused;
}

.home-services-item {
    flex: 0 0 29rem;
}

.home-service-card {
    min-height: 100%;
}

@keyframes home-services-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.metric-card {
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.page-header {
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(20, 50, 74, 0.92), rgba(201, 180, 138, 0.86));
    color: #fff;
}

.page-header .section-card {
    color: var(--bs-body-color);
}

.contact-map iframe {
    min-height: 360px;
    border: 0;
    width: 100%;
    border-radius: 1.5rem;
}

.contact-form-card,
.contact-details-card {
    padding: clamp(1.5rem, 2vw, 2.25rem);
}

.contact-form .form-label {
    margin-bottom: 0.45rem;
    color: var(--bs-primary);
    font-weight: 650;
}

.contact-form .form-control {
    min-height: 3.1rem;
    border-color: rgba(20, 50, 74, 0.16);
    border-radius: 0.85rem;
    padding: 0.75rem 0.95rem;
    background: rgba(255, 255, 255, 0.92);
}

.contact-form .form-control:focus {
    border-color: rgba(20, 50, 74, 0.42);
    box-shadow: 0 0 0 0.22rem rgba(20, 50, 74, 0.08);
}

.contact-message-field {
    min-height: 10.5rem;
    resize: vertical;
}

.contact-privacy-check {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(20, 50, 74, 0.12);
    border-radius: 0.9rem;
    background: rgba(20, 50, 74, 0.035);
}

.contact-privacy-check .form-check-input {
    flex: 0 0 auto;
    margin-top: 0.2rem;
    margin-left: 0;
}

.contact-privacy-check .form-check-label {
    color: var(--studio-muted);
    line-height: 1.45;
}

.contact-submit {
    min-height: 3.1rem;
    padding-inline: 1.35rem;
    border-radius: 0.9rem;
    font-weight: 650;
}

.contact-details-list {
    display: grid;
    gap: 0.85rem;
}

.contact-details-list li {
    display: grid;
    gap: 0.15rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(20, 50, 74, 0.1);
}

.contact-details-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-detail-label {
    color: var(--studio-muted);
    font-size: 0.82rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-details-list a {
    overflow-wrap: anywhere;
    font-weight: 650;
}

html[data-site-theme='dark'] .contact-form .form-label {
    color: #f5f8fc;
}

html[data-site-theme='dark'] .contact-form .form-control {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

html[data-site-theme='dark'] .contact-privacy-check {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

html[data-site-theme='dark'] .contact-details-list li {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

html[data-site-theme='dark'] .contact-detail-label {
    color: rgba(237, 243, 251, 0.68);
}

.footer-shell {
    background: #102739;
    color: rgba(255, 255, 255, 0.84);
}

.footer-shell a {
    color: #fff;
}

.footer-shell .footer-legal-link {
    display: inline-flex;
    align-items: center;
    min-height: 1.65rem;
    color: #fff !important;
    font-weight: 500;
    text-decoration: none !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.footer-shell .footer-legal-link:hover,
.footer-shell .footer-legal-link:focus {
    color: #f1dfb8 !important;
}

#iubenda-iframe-overlay,
.iubenda-overlay {
    align-items: center !important;
    display: flex !important;
    justify-content: center !important;
    padding: 1rem !important;
    background: rgba(4, 14, 22, 0.72) !important;
}

#iubenda-iframe,
.iubenda-iframe,
.iubenda-modal {
    inset: 50% auto auto 50% !important;
    width: min(58rem, calc(100vw - 2rem)) !important;
    height: min(78vh, 46rem) !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    transform: translate(-50%, -50%) !important;
    background: #fff !important;
    border: 0 !important;
    border-radius: 1.25rem !important;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.35) !important;
}

.privacy-policy-modal .modal-dialog {
    max-width: min(64rem, calc(100vw - 2rem));
}

.privacy-policy-modal .modal-content {
    height: min(82vh, 46rem);
}

.privacy-policy-modal .modal-body {
    background: #f7f8f8;
    border-radius: 0 0 1.25rem 1.25rem;
    padding: 1.25rem !important;
}

.legal-policy-frame {
    display: block;
    width: 100%;
    height: 100%;
    min-height: min(62vh, 35rem);
    background: #fff;
    border: 1px solid var(--studio-border);
    border-radius: 1rem;
}

.iubenda-iframe iframe,
#iubenda-iframe iframe,
.iubenda-modal iframe,
.iubenda-overlay iframe {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    border: 0 !important;
}

#iubenda-iframe-close-btn,
.iubenda-iframe-close-btn {
    top: 0.85rem !important;
    right: 0.85rem !important;
    width: 2.5rem !important;
    height: 2.5rem !important;
    background: #fff !important;
    border: 1px solid rgba(20, 50, 74, 0.16) !important;
    border-radius: 0.85rem !important;
    box-shadow: 0 0.75rem 1.5rem rgba(20, 50, 74, 0.18) !important;
    color: var(--bs-primary) !important;
}

.legal-modal .modal-dialog {
    max-width: min(58rem, calc(100vw - 2rem));
}

.legal-modal .modal-title {
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    font-weight: 750;
    letter-spacing: 0;
}

.legal-modal .modal-content {
    border: 0;
    border-radius: 1.25rem;
    box-shadow: 0 1.5rem 4rem rgba(20, 50, 74, 0.22);
}

.legal-modal .modal-header,
.legal-modal .modal-footer {
    padding-inline: 1.75rem;
}

.legal-modal .modal-header {
    align-items: center;
    background:
        radial-gradient(circle at top right, rgba(201, 180, 138, 0.24), transparent 30%),
        linear-gradient(135deg, rgba(20, 50, 74, 0.97), rgba(24, 61, 86, 0.92));
    border-bottom: 0;
    color: #fff;
}

.legal-modal .modal-header .btn-close {
    filter: invert(1) grayscale(1) brightness(2);
    opacity: 0.9;
}

.legal-modal-eyebrow {
    margin-bottom: 0.2rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(1rem, 1.4vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.legal-modal-body {
    padding: 1.75rem;
}

.legal-modal-intro {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(180deg, rgba(20, 50, 74, 0.045), rgba(20, 50, 74, 0.02));
    border: 1px solid var(--studio-border);
    border-radius: 1rem;
}

.legal-modal-body .lead {
    color: var(--studio-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.legal-modal-body section {
    padding-top: 1.15rem;
    margin-top: 1.15rem;
    border-top: 1px solid var(--studio-border);
}

.legal-modal-body h3 {
    color: var(--bs-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.legal-modal-body p {
    line-height: 1.7;
}

html[data-site-theme='dark'] .legal-modal-body h3 {
    color: #f1dfb8;
}

html[data-site-theme='dark'] .legal-modal-body .lead {
    color: rgba(237, 243, 251, 0.76);
}

@media (max-width: 767.98px) {
    .privacy-policy-modal .modal-content {
        height: calc(100vh - 2rem);
    }

    .privacy-policy-modal .modal-body {
        padding: 0.75rem !important;
    }

    #iubenda-iframe,
    .iubenda-iframe,
    .iubenda-modal {
        width: calc(100vw - 1rem) !important;
        height: calc(100vh - 2rem) !important;
        border-radius: 1rem !important;
    }

    .legal-modal .modal-header,
    .legal-modal .modal-footer,
    .legal-modal-body {
        padding-inline: 1.15rem;
    }
}

body .ea-sidebar .menu .menu-item a,
body .ea-sidebar .menu .menu-item .menu-item-contents,
body .ea-user-menu .dropdown-menu a,
body .content a {
    text-decoration: none;
}

body .ea-sidebar .menu .menu-item a:hover,
body .ea-sidebar .menu .menu-item a:focus,
body .ea-user-menu .dropdown-menu a:hover,
body .ea-user-menu .dropdown-menu a:focus,
body .content a:hover,
body .content a:focus {
    text-decoration: none;
}

.list-group-clean .list-group-item {
    border-color: var(--studio-border);
    padding-inline: 0;
}

.table-documents th {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--studio-muted);
}

.auth-shell {
    min-height: calc(100vh - 200px);
}

.placeholder-note {
    border-style: dashed;
}

.wysiwyg-content p:last-child {
    margin-bottom: 0;
}

.pwa-settings-panel {
    position: sticky;
    top: 5.5rem;
}

.pwa-state-box {
    padding: 1rem 1.125rem;
    border: 1px solid var(--studio-border);
    border-radius: 1rem;
    background: rgba(20, 50, 74, 0.03);
}

.status-pill {
    min-width: 8rem;
    justify-content: center;
}

.admin-dashboard-shell {
    display: grid;
    gap: 1.25rem;
}

.admin-dashboard-hero,
.admin-dashboard-panel,
.admin-dashboard-finance-card,
.admin-dashboard-metric-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--studio-border);
    box-shadow: var(--studio-shadow);
}

.admin-dashboard-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(18rem, 0.9fr);
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 1.75rem;
    background:
        radial-gradient(circle at top right, rgba(201, 180, 138, 0.28), transparent 28%),
        linear-gradient(135deg, rgba(20, 50, 74, 0.97), rgba(24, 61, 86, 0.92));
    color: #fff;
}

.admin-dashboard-hero-title {
    font-size: clamp(2rem, 2.8vw, 3rem);
    margin-bottom: 0.75rem;
    color: #f8fbff !important;
    text-shadow: 0 0.35rem 1.4rem rgba(7, 19, 31, 0.22);
}

.admin-dashboard-hero-text {
    max-width: 52rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88) !important;
}

.admin-dashboard-hero-stats {
    display: grid;
    gap: 1rem;
}

.admin-dashboard-hero-stat {
    padding: 1.15rem 1.2rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.admin-dashboard-hero-stat span,
.admin-dashboard-hero-stat small {
    display: block;
}

.admin-dashboard-hero-stat span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.admin-dashboard-hero-stat strong {
    display: block;
    font-size: 1.55rem;
    margin-bottom: 0.25rem;
    color: #fff !important;
}

.admin-dashboard-hero-stat small {
    color: rgba(255, 255, 255, 0.82) !important;
}

.admin-dashboard-finance-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.admin-dashboard-finance-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 1.4rem;
}

.admin-dashboard-finance-icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-size: 1.2rem;
}

.admin-dashboard-finance-card-primary .admin-dashboard-finance-icon {
    background: rgba(20, 50, 74, 0.1);
    color: var(--bs-primary);
}

.admin-dashboard-finance-card-success .admin-dashboard-finance-icon {
    background: rgba(25, 135, 84, 0.12);
    color: #198754;
}

.admin-dashboard-finance-card-accent .admin-dashboard-finance-icon {
    background: rgba(201, 180, 138, 0.18);
    color: #8a6c2f;
}

.admin-dashboard-finance-card-secondary .admin-dashboard-finance-icon {
    background: rgba(108, 117, 125, 0.14);
    color: #495057;
}

.admin-dashboard-finance-card-danger .admin-dashboard-finance-icon {
    background: rgba(220, 53, 69, 0.12);
    color: #b42333;
}

.admin-dashboard-finance-label,
.admin-dashboard-finance-caption {
    display: block;
}

.admin-dashboard-finance-label {
    font-size: 0.83rem;
    color: var(--studio-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.3rem;
}

.admin-dashboard-finance-value {
    display: block;
    font-size: 1.5rem;
    line-height: 1.1;
    margin-bottom: 0.35rem;
    color: var(--bs-body-color) !important;
}

.admin-dashboard-finance-caption {
    color: var(--studio-muted);
}

.admin-dashboard-metric-card,
.admin-dashboard-panel {
    border-radius: 1.5rem;
}

.admin-dashboard-metric-card {
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.15rem 1.2rem;
}

.admin-dashboard-metric-icon {
    width: 2.85rem;
    height: 2.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.95rem;
    background: rgba(20, 50, 74, 0.08);
    color: var(--bs-primary);
    font-size: 1.1rem;
}

.admin-dashboard-metric-label {
    color: var(--studio-muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}

.admin-dashboard-metric-value {
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.05;
    color: var(--bs-body-color) !important;
}

.admin-dashboard-panel {
    padding: 1.4rem;
}

.admin-dashboard-panel h2,
.admin-dashboard-panel .h5,
.admin-top-company-item strong,
.admin-dashboard-insight strong {
    color: inherit;
}

.admin-dashboard-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.admin-dashboard-kpi-stack {
    display: grid;
    gap: 0.85rem;
}

.admin-dashboard-kpi {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: rgba(20, 50, 74, 0.04);
    border: 1px solid rgba(20, 50, 74, 0.08);
}

.admin-dashboard-kpi span {
    color: var(--studio-muted);
}

.admin-dashboard-kpi strong {
    font-size: 1.12rem;
    color: var(--bs-body-color) !important;
}

.admin-dashboard-insight {
    padding: 1rem 1.1rem;
    border-radius: 1.15rem;
    background: linear-gradient(135deg, rgba(20, 50, 74, 0.92), rgba(38, 81, 110, 0.9));
    color: #fff;
}

.admin-dashboard-insight-label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0.35rem;
}

.admin-dashboard-insight strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.admin-billing-chart-shell {
    padding: 1rem 0 0.5rem;
    border-radius: 1.5rem;
    background:
        radial-gradient(circle at top right, rgba(201, 180, 138, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(20, 50, 74, 0.04), rgba(20, 50, 74, 0.01));
    border: 1px solid var(--studio-border);
}

.admin-billing-line-chart {
    width: 100%;
    height: auto;
    display: block;
}

.admin-billing-grid-line {
    stroke: rgba(20, 50, 74, 0.12);
    stroke-width: 1;
}

.admin-billing-line-path {
    fill: none;
    stroke: var(--bs-primary);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.admin-billing-line-point {
    fill: #fff;
    stroke: var(--studio-accent);
    stroke-width: 3;
}

.admin-billing-axis-label {
    fill: var(--studio-muted);
    font-size: 12px;
}

.admin-billing-trend-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    width: min(100%, 24rem);
}

.admin-billing-trend-chip {
    padding: 0.9rem 1rem;
    border: 1px solid var(--studio-border);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.72);
    display: grid;
    gap: 0.15rem;
}

.admin-billing-bars-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: end;
}

.admin-billing-bar-item {
    display: grid;
    gap: 0.45rem;
    align-items: end;
}

.admin-billing-bar-value {
    font-size: 0.78rem;
    color: var(--studio-muted);
    min-height: 2rem;
}

.admin-billing-bar-track {
    height: 11rem;
    border-radius: 999px;
    background: rgba(20, 50, 74, 0.08);
    position: relative;
    overflow: hidden;
}

.admin-billing-bar-fill {
    position: absolute;
    inset: auto 0 0 0;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--studio-accent), var(--bs-primary));
    min-height: 0.35rem;
}

.admin-billing-bar-label {
    text-align: center;
    color: var(--studio-muted);
    font-size: 0.78rem;
}

.admin-dashboard-portfolio {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(20, 50, 74, 0.08);
}

.admin-dashboard-portfolio-list {
    display: grid;
    gap: 0.9rem;
}

.admin-dashboard-portfolio-label {
    font-size: 0.9rem;
    color: var(--studio-muted);
}

.admin-dashboard-portfolio-value {
    color: var(--bs-body-color);
}

.admin-dashboard-portfolio-track {
    height: 0.8rem;
    background: rgba(20, 50, 74, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.admin-dashboard-portfolio-fill {
    height: 100%;
    border-radius: 999px;
}

.admin-dashboard-portfolio-fill-primary {
    background: linear-gradient(90deg, rgba(20, 50, 74, 0.88), rgba(56, 91, 121, 0.98));
}

.admin-dashboard-portfolio-fill-success {
    background: linear-gradient(90deg, rgba(57, 142, 111, 0.88), rgba(92, 182, 149, 0.98));
}

.admin-dashboard-portfolio-fill-warning {
    background: linear-gradient(90deg, rgba(201, 180, 138, 0.96), rgba(217, 194, 146, 0.98));
}

.admin-dashboard-portfolio-fill-danger {
    background: linear-gradient(90deg, rgba(194, 88, 88, 0.92), rgba(224, 124, 124, 0.98));
}

.admin-top-company-list {
    display: grid;
    gap: 0.75rem;
}

.admin-top-company-more {
    display: grid;
    gap: 0.75rem;
    max-height: 22rem;
    overflow-y: auto;
    padding-right: 0.35rem;
}

.admin-top-company-more.is-open {
    margin-top: 0.25rem;
}

.admin-top-company-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 0.95rem 1rem;
    border: 1px solid var(--studio-border);
    border-radius: 1rem;
    background: rgba(20, 50, 74, 0.03);
}

.admin-top-company-item span {
    font-weight: 700;
    white-space: nowrap;
}

body.page-content .content-header:empty,
body.page-content .content-header-title:empty {
    display: none;
}

body.ea-light-scheme .admin-dashboard-shell {
    --admin-dashboard-surface: rgba(255, 255, 255, 0.96);
    --admin-dashboard-surface-muted: rgba(20, 50, 74, 0.03);
    --admin-dashboard-border: rgba(20, 50, 74, 0.12);
    --admin-dashboard-text: #22324a;
    --admin-dashboard-subtle: #6c7682;
    --admin-dashboard-axis: #7a8590;
    --admin-page-bg: linear-gradient(180deg, #fbfaf7 0%, #f4f1ea 100%);
    --admin-page-surface: rgba(255, 255, 255, 0.96);
    --admin-page-surface-muted: rgba(20, 50, 74, 0.03);
    --admin-page-border: rgba(20, 50, 74, 0.12);
    --admin-page-text: #22324a;
    --admin-page-subtle: #6c7682;
}

body.ea-dark-scheme .admin-dashboard-shell {
    --admin-dashboard-surface: rgba(18, 27, 38, 0.94);
    --admin-dashboard-surface-muted: rgba(255, 255, 255, 0.04);
    --admin-dashboard-border: rgba(255, 255, 255, 0.08);
    --admin-dashboard-text: #edf3fb;
    --admin-dashboard-subtle: rgba(237, 243, 251, 0.7);
    --admin-dashboard-axis: rgba(237, 243, 251, 0.62);
    --admin-page-bg: linear-gradient(180deg, #0d1721 0%, #101923 100%);
    --admin-page-surface: rgba(18, 27, 38, 0.96);
    --admin-page-surface-muted: rgba(255, 255, 255, 0.04);
    --admin-page-border: rgba(255, 255, 255, 0.08);
    --admin-page-text: #edf3fb;
    --admin-page-subtle: rgba(237, 243, 251, 0.72);
}

body.ea-light-scheme,
body.ea-light-scheme .wrapper,
body.ea-light-scheme .content-wrapper,
body.ea-light-scheme .content {
    background: linear-gradient(180deg, #fbfaf7 0%, #f4f1ea 100%);
}

body.ea-dark-scheme,
body.ea-dark-scheme .wrapper,
body.ea-dark-scheme .content-wrapper,
body.ea-dark-scheme .content {
    background: linear-gradient(180deg, #0d1721 0%, #101923 100%);
}

body.ea-light-scheme .content-top {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 1px 0 rgba(20, 50, 74, 0.08);
}

body.ea-dark-scheme .content-top {
    background: #101923;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.ea .content-top .content-search input[type="search"][name="query"] {
    border-radius: 0.9rem;
    min-height: 2.7rem;
}

body.ea-light-scheme .content-top .content-search input[type="search"][name="query"] {
    background: rgba(20, 50, 74, 0.04);
    border-color: rgba(20, 50, 74, 0.08);
    color: #22324a;
}

body.ea-dark-scheme .content-top .content-search input[type="search"][name="query"] {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: #edf3fb;
}

body.ea-dark-scheme .content-top .content-search .content-search-icon,
body.ea-dark-scheme .content-top .content-search .content-search-reset {
    color: rgba(237, 243, 251, 0.62);
}

body.ea-dark-scheme .text-muted,
body.ea-dark-scheme .text-secondary,
body.ea-dark-scheme .form-text,
body.ea-dark-scheme .help-text,
body.ea-dark-scheme small,
body.ea-dark-scheme .page-item:not(.active) .page-link,
body.ea-dark-scheme .dropdown-item-text {
    color: var(--admin-page-subtle) !important;
}

body.ea-light-scheme .admin-dashboard-panel,
body.ea-light-scheme .admin-dashboard-finance-card,
body.ea-light-scheme .admin-dashboard-metric-card {
    background: var(--admin-dashboard-surface);
    border-color: var(--admin-dashboard-border);
}

body.ea-dark-scheme .admin-dashboard-panel,
body.ea-dark-scheme .admin-dashboard-finance-card,
body.ea-dark-scheme .admin-dashboard-metric-card {
    background: var(--admin-dashboard-surface);
    border-color: var(--admin-dashboard-border);
    box-shadow: 0 1.1rem 2.2rem rgba(0, 0, 0, 0.28);
}

body.ea-dark-scheme .admin-dashboard-finance-label,
body.ea-dark-scheme .admin-dashboard-finance-caption,
body.ea-dark-scheme .admin-dashboard-metric-label,
body.ea-dark-scheme .admin-dashboard-kpi span,
body.ea-dark-scheme .admin-dashboard-panel .text-secondary,
body.ea-dark-scheme .admin-billing-bar-value,
body.ea-dark-scheme .admin-billing-bar-label,
body.ea-dark-scheme .admin-top-company-item .small,
body.ea-dark-scheme .admin-billing-trend-chip .small {
    color: var(--admin-dashboard-subtle) !important;
}

body.ea-dark-scheme .admin-dashboard-finance-value,
body.ea-dark-scheme .admin-dashboard-metric-value,
body.ea-dark-scheme .admin-dashboard-kpi strong,
body.ea-dark-scheme .admin-dashboard-panel h2,
body.ea-dark-scheme .admin-dashboard-panel .h5,
body.ea-dark-scheme .admin-top-company-item strong,
body.ea-dark-scheme .admin-top-company-item span,
body.ea-dark-scheme .admin-billing-trend-chip strong {
    color: var(--admin-dashboard-text) !important;
}

body.ea-dark-scheme .admin-dashboard-finance-icon,
body.ea-dark-scheme .admin-dashboard-metric-icon {
    background: rgba(255, 255, 255, 0.08);
}

body.ea-dark-scheme .content-top,
body.ea-dark-scheme .main-header,
body.ea-dark-scheme .navbar-custom-menu {
    background: #101923;
}

body.ea-dark-scheme .content-top {
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.ea-dark-scheme .user-menu-wrapper .user-details,
body.ea-dark-scheme .dropdown-settings-button,
body.ea-dark-scheme .user-menu-wrapper .user-name,
body.ea-dark-scheme .dropdown-settings .dropdown-item,
body.ea-dark-scheme .dropdown-settings .dropdown-header,
body.ea-dark-scheme .user-menu-wrapper .dropdown-item,
body.ea-dark-scheme .user-menu-wrapper .dropdown-header {
    color: #edf3fb !important;
}

body.ea-dark-scheme .user-menu-wrapper .dropdown-menu,
body.ea-dark-scheme .dropdown-settings .dropdown-menu {
    background: #13202c;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.35);
}

body.ea-dark-scheme .dropdown-settings .dropdown-item:hover,
body.ea-dark-scheme .user-menu-wrapper .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

body.ea-dark-scheme .admin-dashboard-kpi,
body.ea-dark-scheme .admin-top-company-item,
body.ea-dark-scheme .admin-billing-trend-chip,
body.ea-dark-scheme .admin-billing-chart-shell {
    background: var(--admin-dashboard-surface-muted);
    border-color: var(--admin-dashboard-border);
}

body.ea-dark-scheme .admin-billing-grid-line {
    stroke: rgba(255, 255, 255, 0.08);
}

body.ea-dark-scheme .admin-billing-axis-label {
    fill: var(--admin-dashboard-axis);
}

body.ea-dark-scheme .admin-billing-line-point {
    fill: #101a24;
    stroke: #d9c08a;
}

body.ea-dark-scheme .admin-dashboard-portfolio {
    border-top-color: rgba(255, 255, 255, 0.08);
}

body.ea-dark-scheme .admin-dashboard-portfolio-label,
body.ea-dark-scheme .admin-dashboard-portfolio-value {
    color: var(--admin-dashboard-text) !important;
}

body.ea-dark-scheme .admin-dashboard-portfolio-track {
    background: rgba(255, 255, 255, 0.08);
}

body.ea .sidebar,
body.ea .sidebar .main-header,
body.ea .sidebar .main-header .navbar {
    background: var(--sidebar-bg);
}

body.ea .sidebar .main-header .navbar {
    backdrop-filter: none;
    border-bottom: 1px solid var(--sidebar-border-color);
    box-shadow: none;
    padding-inline-start: var(--sidebar-menu-items-padding-left);
}

body.ea .sidebar .main-header #header-logo {
    padding-inline: 0.35rem;
}

body.ea .sidebar .main-header #header-logo a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    padding: 1rem 0.2rem 1.2rem;
}

.admin-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.admin-brand-logo {
    width: 1.85rem;
    height: 1.85rem;
    object-fit: contain;
    flex: 0 0 auto;
}

@media (min-width: 992px) {
    body.ea .sidebar-wrapper {
        position: sticky;
        top: 0;
        align-self: start;
        height: 100vh;
    }

    body.ea .sidebar {
        position: sticky;
        top: 0;
        height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
    }
}

body.ea-light-scheme .sidebar .main-header #header-logo a {
    color: #14324a;
}

body.ea-dark-scheme .sidebar .main-header #header-logo a {
    color: #edf3fb;
}

@media (max-width: 767.98px) {
    .site-navbar .navbar-collapse {
        padding-top: 1rem;
    }

    .site-navbar .container {
        align-items: flex-start;
    }

    .navbar-primary-links {
        gap: 0.25rem;
    }

    .navbar-primary-links .nav-link {
        padding-inline: 0.85rem;
        padding-block: 0.9rem;
        background: rgba(20, 50, 74, 0.03);
    }

    .navbar-utility {
        display: block;
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--studio-border);
    }

    .navbar-utility-actions {
        display: none;
    }

    .navbar-locale-switcher {
        margin-top: 0.5rem;
    }

    .navbar-locale-switcher .nav-link {
        display: inline-flex;
        align-items: center;
        min-height: 2.75rem;
        padding-inline: 0;
    }

    .navbar-mobile-panel {
        display: grid;
        gap: 0.75rem;
    }

    .navbar-mobile-card {
        padding: 1rem;
        border: 1px solid var(--studio-border);
        border-radius: 1rem;
        background: rgba(20, 50, 74, 0.03);
    }

    .navbar-mobile-user {
        margin-bottom: 0.5rem;
        color: var(--bs-primary);
    }

    .navbar-mobile-links {
        display: grid;
        gap: 0.2rem;
    }

    .navbar-mobile-links .nav-link {
        padding: 0.65rem 0;
        border-bottom: 1px solid rgba(20, 50, 74, 0.08);
        border-radius: 0;
        background: transparent;
    }

    .navbar-mobile-links .nav-link:last-child {
        border-bottom: 0;
    }

    .navbar-mobile-panel .btn,
    .nav-auth-action .btn {
        width: 100%;
        border-radius: 0.9rem;
        padding-block: 0.7rem;
    }

    .nav-company-switcher .dropdown-menu,
    .nav-account-menu .dropdown-menu {
        margin-top: 0.35rem;
    }

    .hero-section {
        border-radius: 1.5rem;
    }

    .section-card {
        padding: 1.5rem;
    }

    .home-services-rail {
        overflow-x: auto;
        padding-bottom: 0.35rem;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .home-services-track {
        animation: none;
        padding-inline-end: 1rem;
    }

    .home-services-item {
        flex-basis: min(83vw, 22rem);
    }

    .pwa-settings-panel {
        position: static;
    }

    .admin-billing-trend-list {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .admin-dashboard-hero,
    .admin-dashboard-finance-grid {
        grid-template-columns: 1fr;
    }

    .admin-billing-bars-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (max-width: 1199.98px) {
    .admin-dashboard-hero,
    .admin-dashboard-finance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .admin-dashboard-hero {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-services-track {
        animation: none;
    }
}
