:root {
    --site-primary: #0d1b3e;
    --site-primary-soft: #1c2b3a;
    --site-accent: #e63946;
    --site-accent-strong: #f4500a;
    --site-bg: #f2f6fc;
    --site-surface: #ffffff;
    --site-surface-soft: #eaf1fb;
    --site-text: #0f1728;
    --site-muted: #5f6f86;
    --site-border: rgba(13, 27, 62, 0.08);
    --site-shadow: 0 24px 60px rgba(13, 27, 62, 0.08);
    --site-radius: 1.5rem;
    --site-transition: 0.22s ease;
}

html {
    scroll-behavior: smooth;
}

body.site-body {
    font-family: "Inter", sans-serif;
    color: var(--site-text);
    background:
        radial-gradient(circle at top right, rgba(230, 57, 70, 0.1), transparent 22%),
        linear-gradient(180deg, #f7faff 0%, var(--site-bg) 100%);
}

html[data-theme="dark"] .site-header img,
html[data-theme="dark"] .site-footer img {
    filter: brightness(0) invert(1);
}


.brand-title,
.display-4,
.display-6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Outfit", sans-serif;
    letter-spacing: -0.03em;
}

.text-secondary {
    color: var(--site-muted) !important;
}

.site-shell {
    overflow: clip;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    padding: 1rem 0;
    background: rgba(242, 246, 252, 0.76);
    backdrop-filter: blur(16px);
}

.site-nav-shell {
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 40px rgba(13, 27, 62, 0.08);
}

.site-wordmark {
    color: var(--site-text);
    font-size: 1.5rem;
    font-weight: 800;
}

.site-nav-link {
    position: relative;
    padding: 0.55rem 0.8rem !important;
    color: var(--site-muted);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color var(--site-transition);
}

.site-nav-link:hover,
.site-nav-link:focus-visible {
    color: var(--site-primary);
}

.site-nav-badge {
    display: inline-flex;
    align-items: center;
    margin-left: 0.5rem;
    padding: 0.12rem 0.5rem;
    border-radius: 999px;
    background: rgba(230, 57, 70, 0.12);
    color: var(--site-accent);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav-link::after {
    position: absolute;
    right: 0.8rem;
    bottom: 0.2rem;
    left: 0.8rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--site-accent), var(--site-accent-strong));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--site-transition);
    content: "";
}

.site-nav-link:hover::after,
.site-nav-link:focus-visible::after {
    transform: scaleX(1);
}

.site-nav-trigger {
    display: flex;
    align-items: center;
}

.site-nav-item--has-children.is-open > .site-dropdown-menu,
.site-nav-item--has-children.is-open > .site-mega-menu {
    display: block;
}

.site-nav-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.55rem;
    height: 1.55rem;
    margin-left: 0.02rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--site-primary);
    transition: background var(--site-transition), color var(--site-transition), transform var(--site-transition);
}

.site-nav-menu-toggle::after {
    display: none !important;
}

.site-nav-menu-toggle:hover,
.site-nav-menu-toggle:focus-visible {
    background: rgba(230, 57, 70, 0.08);
    color: var(--site-accent);
    outline: none;
}

.site-dropdown-menu,
.site-mega-menu {
    margin-top: 0.85rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 50px rgba(13, 27, 62, 0.14);
}

.site-dropdown-menu {
    min-width: 15rem;
    padding: 0.75rem;
}

.site-dropdown-menu .dropdown-item {
    border-radius: 0.85rem;
    padding: 0.85rem 1rem;
    font-weight: 600;
    color: var(--site-primary);
}

.site-dropdown-menu .dropdown-item:hover,
.site-dropdown-menu .dropdown-item:focus-visible {
    background: rgba(230, 57, 70, 0.08);
    color: var(--site-accent);
}

.site-dropdown-group + .site-dropdown-group,
.site-dropdown-group + li,
.site-dropdown-menu li + .site-dropdown-group {
    margin-top: 0.25rem;
}

.site-dropdown-group-link {
    font-weight: 700;
}

.site-dropdown-group-header {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.site-dropdown-group-header .site-dropdown-group-link {
    flex: 1 1 auto;
    min-width: 0;
}

.site-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border: 0;
    border-radius: 0.7rem;
    background: transparent;
    color: var(--site-muted);
    flex: 0 0 auto;
    transition: background var(--site-transition), color var(--site-transition), transform var(--site-transition);
}

.site-dropdown-toggle:hover,
.site-dropdown-toggle:focus-visible {
    background: rgba(230, 57, 70, 0.08);
    color: var(--site-accent);
}

.site-dropdown-toggle svg {
    width: 1rem;
    height: 1rem;
    transition: transform var(--site-transition);
}

.site-dropdown-group.is-open .site-dropdown-toggle svg {
    transform: rotate(180deg);
}

.site-dropdown-submenu {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 0.35rem;
    margin-left: 0.9rem;
    padding-left: 0.75rem;
    border-left: 1px solid rgba(13, 27, 62, 0.1);
}

.site-dropdown-subitem {
    padding: 0.35rem 0;
    color: var(--site-muted);
    font-size: 0.93rem;
    font-weight: 600;
    line-height: 1.45;
    text-decoration: none;
    transition: color var(--site-transition), transform var(--site-transition);
}

.site-dropdown-subitem:hover,
.site-dropdown-subitem:focus-visible {
    color: var(--site-accent);
    transform: translateX(2px);
}

.site-nav-mega {
    position: static;
}

.site-mega-menu {
    left: 0;
    right: 0;
    width: min(960px, calc(100vw - 2rem));
    margin-inline: auto;
    padding: 1.25rem;
}

.site-mega-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.site-mega-link {
    height: 100%;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(13, 27, 62, 0.06);
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 254, 0.94));
    transition: transform var(--site-transition), box-shadow var(--site-transition), border-color var(--site-transition);
}

.site-mega-link strong {
    color: var(--site-primary);
}

.site-mega-link span {
    color: var(--site-muted);
    line-height: 1.7;
}

.site-mega-link-main {
    color: inherit;
}

.site-mega-submenu {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(13, 27, 62, 0.08);
}

.site-mega-submenu-link {
    color: var(--site-primary);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    transition: color var(--site-transition), transform var(--site-transition);
}

.site-mega-submenu-link:hover,
.site-mega-submenu-link:focus-visible {
    color: var(--site-accent);
    transform: translateX(2px);
}

.site-mega-link:hover,
.site-mega-link:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(230, 57, 70, 0.16);
    box-shadow: 0 18px 34px rgba(13, 27, 62, 0.08);
}

.site-phone-link {
    color: var(--site-primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.site-cta-button,
.btn-danger {
    border-color: transparent;
    background: linear-gradient(135deg, var(--site-accent), var(--site-accent-strong));
    box-shadow: 0 14px 28px rgba(230, 57, 70, 0.18);
}

.site-cta-button:hover,
.site-cta-button:focus-visible,
.btn-danger:hover,
.btn-danger:focus-visible {
    border-color: transparent;
    background: linear-gradient(135deg, #cf2433, #de4300);
}

.btn-warning {
    border-color: transparent;
    background: linear-gradient(135deg, var(--site-accent), var(--site-accent-strong));
    color: #fff;
}

.btn-warning:hover,
.btn-warning:focus-visible {
    border-color: transparent;
    background: linear-gradient(135deg, #cf2433, #de4300);
    color: #fff;
}

.btn-outline-dark {
    border-color: rgba(13, 27, 62, 0.14);
    color: var(--site-primary);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus-visible {
    border-color: var(--site-primary);
    background: var(--site-primary);
    color: #fff;
}

.feature-slider-shell {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 32rem;
    max-height: 48rem;
    overflow: hidden;
    border-radius: 1.75rem;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
}

.feature-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 700ms cubic-bezier(.77,0,.18,1);
}

.feature-slide {
    position: relative;
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    min-height: 100%;
    background: #ffffff;
}

.feature-slide-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.7rem;
    padding: 3.5rem 3rem 4.75rem 4rem;
}

.feature-slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(232, 0, 29, 0.35);
    border-radius: 999px;
    color: #e8001d;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.feature-slide-tag::before {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #e8001d;
    content: "";
    animation: featureSliderBlink 1.6s ease-in-out infinite;
}

@keyframes featureSliderBlink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

.feature-slide-title {
    margin: 0;
    color: #101827;
    font-family: "Syne", "Outfit", sans-serif;
    font-size: clamp(2rem, 3.6vw, 3.35rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.feature-slide-title br {
    display: block;
    content: "";
    margin-bottom: 0.08em;
}

.feature-slide-description {
    max-width: 24rem;
    color: #5f6f86;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.75;
}

.feature-slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.feature-slide-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 10rem;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    font-family: "Syne", "Outfit", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.feature-slide-actions .btn-danger {
    box-shadow: 0 8px 30px rgba(232, 0, 29, 0.35);
}

.feature-slide-actions .btn-outline-dark {
    border-color: rgba(15, 23, 42, 0.12);
    background: #ffffff;
    color: #101827;
}

.feature-slide-media {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.75rem 3rem 4.75rem 1rem;
}

.feature-slide-main-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 28rem;
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f7f8fb;
}

.feature-slide-main-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-slide-main-visual--contain img {
    object-fit: contain;
    padding: 1.5rem;
}

.feature-slide-floating-card {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    min-width: 12rem;
    max-width: 16rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(20px);
}

.feature-slide-floating-label {
    color: #6b7280;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.feature-slide-floating-value {
    margin-top: 0.35rem;
    color: #101827;
    font-family: "Syne", "Outfit", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

.feature-slider-index {
    position: absolute;
    top: 1.8rem;
    right: 2rem;
    z-index: 3;
    color: rgba(16, 24, 39, 0.36);
    font-family: "Syne", "Outfit", sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.feature-slider-index span {
    color: #101827;
}

.feature-slider-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    height: 3px;
    background: rgba(15, 23, 42, 0.08);
}

.feature-slider-progress-fill {
    width: 0;
    height: 100%;
    background: #e8001d;
    transition: width linear;
}

.feature-slider-footer {
    position: absolute;
    right: 2rem;
    bottom: 1.7rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    pointer-events: none;
}

.feature-slider-dots {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    pointer-events: auto;
}

.feature-slider-dot {
    width: 0.4rem;
    height: 0.4rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-slider-dot.is-active,
.feature-slider-dot[aria-current="true"] {
    width: 1.4rem;
    background: #e8001d;
}

.feature-slider-controls {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    pointer-events: auto;
}

.feature-slider-arrow {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 999px;
    background: #ffffff;
    color: #101827;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.feature-slider-arrow:hover,
.feature-slider-arrow:focus-visible {
    background: #f8fafc;
    transform: scale(1.06);
    outline: none;
}

.feature-slider-arrow svg {
    width: 1rem;
    height: 1rem;
}

.feature-slide-copy > * {
    opacity: 0;
    transform: translateY(24px);
}

.feature-slide.is-active .feature-slide-copy > * {
    animation: featureSliderSlideUp 0.6s forwards cubic-bezier(.22,1,.36,1);
}

.feature-slide.is-active .feature-slide-copy > *:nth-child(1) {
    animation-delay: 0.05s;
}

.feature-slide.is-active .feature-slide-copy > *:nth-child(2) {
    animation-delay: 0.15s;
}

.feature-slide.is-active .feature-slide-copy > *:nth-child(3) {
    animation-delay: 0.25s;
}

.feature-slide.is-active .feature-slide-copy > *:nth-child(4) {
    animation-delay: 0.35s;
}

.feature-slide.is-active .feature-slide-copy > *:nth-child(5) {
    animation-delay: 0.45s;
}

@keyframes featureSliderSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-slide-media {
    opacity: 0;
    transform: translateX(30px);
}

.feature-slide.is-active .feature-slide-media {
    animation: featureSliderVisualIn 0.7s 0.2s forwards cubic-bezier(.22,1,.36,1);
}

@keyframes featureSliderVisualIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

html[data-theme="light"] .feature-slider-shell,
html[data-theme="dark"] .feature-slider-shell {
    background: #ffffff;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(230, 57, 70, 0.08);
    color: var(--site-accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-kicker::before {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--site-accent), var(--site-accent-strong));
    content: "";
}

.hero-panel,
.metric-card,
.soft-card,
.accent-panel,
.accordion,
.footer-shell {
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--site-shadow);
}

.blog-featured-shell,
.blog-detail-shell,
.blog-empty-state {
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--site-shadow);
}

.blog-featured-card,
.blog-card,
.blog-sidebar .soft-card {
    height: 100%;
    border: 1px solid var(--site-border);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 40px rgba(13, 27, 62, 0.08);
    overflow: hidden;
}

.blog-cover-image,
.blog-card-image {
    display: block;
    width: 100%;
    object-fit: cover;
}

.blog-cover-image {
    max-height: 28rem;
}

.blog-card-image {
    height: 14rem;
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
}

.blog-card-title {
    color: var(--site-text);
    text-decoration: none;
}

.blog-card-title:hover,
.blog-card-title:focus-visible {
    color: var(--site-accent);
}

.blog-image-placeholder {
    display: grid;
    place-items: center;
    min-height: 18rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(13, 27, 62, 0.95), rgba(28, 43, 58, 0.9));
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    text-align: center;
}

.blog-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(230, 57, 70, 0.12);
    border-radius: 999px;
    background: rgba(230, 57, 70, 0.08);
    color: var(--site-accent);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--site-transition);
}

.blog-chip:hover,
.blog-chip:focus-visible,
.blog-chip.is-active {
    background: linear-gradient(135deg, var(--site-accent), var(--site-accent-strong));
    border-color: transparent;
    color: #fff;
}

.blog-meta {
    color: var(--site-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    color: var(--site-primary);
    font-weight: 700;
    text-decoration: none;
    background: rgba(234, 241, 251, 0.8);
    transition: all var(--site-transition);
}

.blog-sidebar-link:hover,
.blog-sidebar-link:focus-visible,
.blog-sidebar-link.is-active {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(244, 80, 10, 0.12));
    color: var(--site-accent);
}

.blog-content {
    color: var(--site-text);
    line-height: 1.85;
}

.blog-content h2,
.blog-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    color: var(--site-text);
}

.blog-content p,
.blog-content li {
    color: var(--site-muted);
}

.blog-content ul,
.blog-content ol {
    padding-left: 1.25rem;
}

.banner-shell {
    position: relative;
    min-height: var(--banner-min-height, 52rem);
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #081123;
}

.banner-height-medium {
    min-height: 28rem;
}

.banner-height-large {
    min-height: 52rem;
}

.banner-height-screen {
    min-height: min(56rem, 88vh);
}

.banner-media,
.banner-overlay,
.banner-grid,
.banner-content-wrap {
    position: absolute;
    inset: 0;
}

.banner-media {
    z-index: 0;
    background-image: var(--banner-background-image, none);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.01);
    filter: saturate(1.05) contrast(1.08) brightness(0.82);
}

.banner-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    filter: saturate(0.9) contrast(1.08) brightness(0.5) hue-rotate(8deg);
}

.banner-overlay {
    z-index: 1;
}

.banner-grid {
    z-index: 1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 92px 92px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.18));
    opacity: 0.18;
}

.banner-overlay-light .banner-overlay {
    background:
        linear-gradient(180deg, rgba(2, 10, 22, 0.7), rgba(4, 18, 42, 0.62)),
        radial-gradient(circle at top, rgba(56, 189, 248, 0.2), transparent 36%),
        radial-gradient(circle at center, rgba(13, 27, 62, 0.28), transparent 48%);
}

.banner-overlay-medium .banner-overlay {
    background:
        linear-gradient(180deg, rgba(2, 10, 22, 0.82), rgba(4, 20, 50, 0.78)),
        radial-gradient(circle at top, rgba(56, 189, 248, 0.24), transparent 34%),
        radial-gradient(circle at center, rgba(13, 27, 62, 0.34), transparent 50%);
}

.banner-overlay-strong .banner-overlay {
    background:
        linear-gradient(180deg, rgba(2, 10, 22, 0.88), rgba(4, 22, 58, 0.86)),
        radial-gradient(circle at top, rgba(56, 189, 248, 0.26), transparent 34%),
        radial-gradient(circle at center, rgba(13, 27, 62, 0.4), transparent 52%);
}

.banner-content-wrap {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 3vw, 3rem);
    text-align: center;
}

.banner-content-with-features {
    padding-top: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(12rem, 18vw, 18rem);
}

.banner-content {
    color: #fff;
    width: min(100%, 70rem);
    margin-inline: auto;
}

.banner-content-narrow {
    max-width: 52rem;
}

.banner-content-medium {
    max-width: 72rem;
}

.banner-content-wide {
    max-width: 86rem;
}

.banner-copy-panel {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 2.5rem);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 2rem;
    background:
        linear-gradient(180deg, rgba(5, 14, 28, 0.56), rgba(5, 14, 28, 0.32)),
        radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 52%);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.banner-copy-panel::before {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.08), transparent 35%, rgba(56, 189, 248, 0.08));
    pointer-events: none;
    content: "";
}

.banner-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.04);
}

.banner-kicker::before {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--site-accent), var(--site-accent-strong));
    box-shadow: 0 0 0 0.35rem rgba(230, 57, 70, 0.16);
    content: "";
}

.banner-title {
    max-width: 13ch;
    margin-inline: auto;
    color: #fff;
    line-height: 0.92;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
    font-size: clamp(3rem, 6vw, 5.6rem);
}

.banner-title-divider {
    width: min(10rem, 30%);
    height: 0.28rem;
    margin: 0 auto 1.35rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
}

.banner-description {
    max-width: 64rem;
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 600;
    line-height: 1.8;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.54);
}

.banner-outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 14rem;
    min-height: 3.75rem;
    padding-inline: 1.6rem;
    border: 1.5px solid rgba(255, 255, 255, 0.88);
    border-radius: 0.9rem;
    color: #fff !important;
    background:
        linear-gradient(180deg, rgba(7, 24, 58, 0.72), rgba(4, 14, 34, 0.8));
    box-shadow:
        0 18px 32px rgba(2, 8, 23, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.04em;
    backdrop-filter: blur(8px);
    text-decoration: none;
}

.banner-outline-button:hover,
.banner-outline-button:focus-visible {
    border-color: rgba(125, 211, 252, 0.96);
    color: #fff !important;
    background:
        linear-gradient(180deg, rgba(8, 36, 82, 0.82), rgba(5, 18, 42, 0.92));
    box-shadow:
        0 24px 38px rgba(14, 165, 233, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.banner-accent-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 14rem;
    min-height: 3.75rem;
    padding-inline: 1.6rem;
    border: 0;
    border-radius: 0.9rem;
    color: #fff !important;
    background: linear-gradient(135deg, var(--site-accent), var(--site-accent-strong));
    box-shadow: 0 18px 30px rgba(230, 57, 70, 0.24);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.banner-accent-button:hover,
.banner-accent-button:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, #cf2433, #de4300);
}

.banner-frame {
    position: absolute;
    z-index: 2;
    width: 3rem;
    height: 3rem;
    border-color: rgba(255, 255, 255, 0.72);
    opacity: 0.72;
}

.banner-frame-left-top {
    top: 13%;
    left: 14%;
    border-top: 1px solid currentColor;
    border-left: 1px solid currentColor;
}

.banner-frame-right-top {
    top: 13%;
    right: 14%;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
}

.banner-frame-left-bottom {
    bottom: 16%;
    left: 18%;
    border-bottom: 1px solid currentColor;
    border-left: 1px solid currentColor;
}

.banner-frame-right-bottom {
    bottom: 16%;
    right: 18%;
    border-bottom: 1px solid currentColor;
    border-right: 1px solid currentColor;
}

.banner-glow {
    position: absolute;
    z-index: 1;
    width: 28rem;
    height: 28rem;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.14;
}

.banner-glow-left {
    top: 18%;
    left: 8%;
    background: rgba(59, 130, 246, 0.42);
}

.banner-glow-right {
    right: 10%;
    bottom: 8%;
    background: rgba(230, 57, 70, 0.4);
}

.banner-dot {
    position: absolute;
    z-index: 2;
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 999px;
    background: rgba(230, 57, 70, 0.9);
    box-shadow: 0 0 0 0.45rem rgba(230, 57, 70, 0.15);
}

.banner-dot-top {
    top: 24%;
    right: 41%;
}

.banner-dot-bottom {
    right: 13%;
    bottom: 27%;
}

.banner-features {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 1.25rem 0 2rem;
    background: linear-gradient(180deg, rgba(1, 10, 25, 0), rgba(1, 10, 25, 0.52) 30%, rgba(1, 10, 25, 0.9));
}

.banner-feature {
    padding: 0.75rem 0.85rem;
    color: #fff;
}

.banner-feature-icon {
    display: inline-grid;
    place-items: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    color: #ff3131;
}

.banner-feature-icon svg {
    width: 100%;
    height: 100%;
}

.banner-feature h3 {
    margin-bottom: 0.75rem;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
}

.banner-feature p {
    max-width: 18rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.96rem;
    line-height: 1.55;
}

@media (max-width: 991.98px) {
    .blog-card-image {
        height: 12rem;
    }

    .banner-height-medium,
    .banner-height-large,
    .banner-height-screen {
        min-height: 32rem;
    }

    .banner-content-wrap {
        padding: 1.5rem 1rem;
    }

    .banner-content-with-features {
        padding-bottom: 1.5rem;
    }

    .banner-title {
        max-width: none;
        font-size: clamp(2.2rem, 10vw, 4rem);
    }

    .banner-description {
        max-width: 100%;
        font-size: 1rem;
    }

    .banner-features {
        position: relative;
        padding: 1.5rem 0 1.25rem;
        background: linear-gradient(180deg, rgba(1, 10, 25, 0.96), rgba(1, 10, 25, 0.98));
    }

    .banner-copy-panel {
        padding: 1.25rem 1rem;
        border-radius: 1.5rem;
    }

    .banner-outline-button,
    .banner-accent-button {
        min-width: 0;
        width: 100%;
    }

    .banner-feature h3 {
        font-size: 1.25rem;
    }

    .banner-feature p {
        font-size: 0.95rem;
    }

    .banner-frame,
    .banner-glow,
    .banner-dot {
        display: none;
    }
}

.hero-panel {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(230, 57, 70, 0.16), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 254, 0.96));
}

.hero-panel::after {
    position: absolute;
    inset: auto -80px -80px auto;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(13, 27, 62, 0.12), transparent 65%);
    content: "";
    pointer-events: none;
}

.hero-panel .display-4 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.55rem, 4.4vw, 4.4rem);
    line-height: 0.95;
    color: var(--site-text);
}

.hero-panel .text-danger {
    color: var(--site-accent) !important;
}

.mini-card {
    height: 100%;
    border: 1px solid rgba(13, 27, 62, 0.08);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.78);
}

.mini-card strong {
    color: var(--site-primary);
}

.side-panel,
.cta-panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--site-radius);
    background:
        linear-gradient(180deg, rgba(13, 27, 62, 0.98), rgba(16, 31, 71, 0.98));
    box-shadow: 0 24px 50px rgba(13, 27, 62, 0.22);
}

.side-panel::after,
.cta-panel::after {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.35), transparent 66%);
    content: "";
    pointer-events: none;
}

.metric-card {
    background: linear-gradient(180deg, #ffffff, #edf4fd);
}

.metric-card strong {
    display: block;
    color: var(--site-primary);
    font-size: 2rem;
    line-height: 1;
}

.soft-card {
    transition:
        transform var(--site-transition),
        box-shadow var(--site-transition),
        border-color var(--site-transition);
}

.soft-card:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 57, 70, 0.18);
    box-shadow: 0 28px 60px rgba(13, 27, 62, 0.12);
}

.soft-card .card-body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.soft-card h3 {
    color: var(--site-text);
}

.soft-card ul {
    margin-top: auto;
}

.soft-card li::marker {
    color: var(--site-accent);
}

.soft-card a {
    color: var(--site-accent);
}

.accent-panel {
    background:
        linear-gradient(180deg, rgba(233, 240, 252, 0.95), rgba(255, 255, 255, 0.98));
}

.section-heading {
    max-width: 880px;
}

.section-heading .display-6 {
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    line-height: 1;
    color: var(--site-text);
}

.accordion-button {
    padding: 1.35rem 1.45rem;
    color: var(--site-primary);
    font-weight: 700;
    background: transparent;
}

.accordion-button:not(.collapsed) {
    color: var(--site-primary);
    background: rgba(230, 57, 70, 0.05);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion {
    --bs-accordion-color: #f5f5f5;
    --bs-accordion-bg: rgba(255, 255, 255, 0.035);
    --bs-accordion-border-color: rgba(255, 255, 255, 0.08);
    --bs-accordion-btn-color: #f5f5f5;
    --bs-accordion-btn-bg: rgba(255, 255, 255, 0.035);
    --bs-accordion-active-color: #ffffff;
    --bs-accordion-active-bg: rgba(209, 0, 0, 0.08);
    --bs-accordion-body-color: var(--site-muted);
    --bs-accordion-btn-focus-border-color: rgba(209, 0, 0, 0.2);
    --bs-accordion-btn-focus-box-shadow: none;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.035);
}

.accordion-button,
.accordion-body {
    background: transparent;
}

.accordion-body {
    padding: 0 1.45rem 1.4rem;
}

.site-footer {
    padding-top: 2rem;
}

.footer-shell {
    border-radius: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 252, 0.96));
}

.footer-heading {
    color: var(--site-text);
    font-family: "Outfit", sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
}

.footer-copy,
.footer-link,
.footer-meta {
    color: var(--site-muted);
}

.footer-link {
    transition: color var(--site-transition);
}

.footer-link:hover,
.footer-link:focus-visible {
    color: var(--site-accent);
}

.footer-meta {
    border-top: 1px solid rgba(13, 27, 62, 0.08);
}

.site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border-top: 1px solid rgba(13, 27, 62, 0.08);
}

.site-footer-bottom-text {
    flex: 1 1 auto;
    color: var(--site-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.site-footer-bottom-media {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
}

.site-footer-bottom-media img {
    max-height: 74px;
    width: auto;
    display: block;
    object-fit: contain;
}

.quick-actions {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 1050;
    display: grid;
    gap: 0.8rem;
}

.cookie-banner {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 1045;
}

.cookie-banner-shell {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    padding: 1.15rem 1.25rem;
    border: 1px solid rgba(13, 27, 62, 0.08);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 44px rgba(13, 27, 62, 0.14);
}

.cookie-banner-copy {
    flex: 1 1 420px;
}

.cookie-banner-copy strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--site-primary);
    font-family: "Outfit", sans-serif;
    font-size: 1.1rem;
}

.cookie-banner-copy p {
    color: var(--site-muted);
    line-height: 1.7;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.quick-action {
    display: inline-grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    box-shadow: 0 16px 28px rgba(13, 27, 62, 0.2);
    transition: transform var(--site-transition), box-shadow var(--site-transition);
}

.quick-action:hover,
.quick-action:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 20px 36px rgba(13, 27, 62, 0.24);
}

.quick-action svg {
    width: 1.3rem;
    height: 1.3rem;
    fill: currentColor;
}

.quick-action-dark {
    background: var(--site-primary);
    color: #fff;
}

.quick-action-accent {
    background: linear-gradient(135deg, var(--site-accent), var(--site-accent-strong));
    color: #fff;
}

@media (max-width: 991.98px) {
    .site-header {
        padding: 0.75rem 0;
    }

    .site-nav-shell .navbar-collapse {
        border-top: 1px solid rgba(13, 27, 62, 0.08);
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .hero-panel .display-4 {
        max-width: none;
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .site-phone-link {
        padding: 0.3rem 0;
    }

    .site-mega-menu {
        width: 100%;
        padding: 0.75rem;
    }
}

@media (max-width: 767.98px) {
    .cookie-banner {
        right: 0.75rem;
        bottom: 0.75rem;
        left: 0.75rem;
    }

    .cookie-banner-shell {
        padding: 1rem;
    }

    .quick-actions {
        right: 0.9rem;
        bottom: 0.9rem;
    }

    .quick-action {
        width: 3.2rem;
        height: 3.2rem;
        border-radius: 0.9rem;
    }
}

.site-breadcrumb-section {
    background: rgba(255, 255, 255, 0.55);
    border-bottom: 1px solid rgba(13, 27, 62, 0.06);
}

.site-breadcrumb {
    gap: 0.4rem;
    font-size: 0.92rem;
}

.site-breadcrumb .breadcrumb-item,
.site-breadcrumb .breadcrumb-item.active {
    color: var(--site-muted);
}

.site-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(13, 27, 62, 0.28);
}

.site-breadcrumb a {
    color: var(--site-primary);
    font-weight: 600;
    text-decoration: none;
}

.site-breadcrumb a:hover,
.site-breadcrumb a:focus-visible {
    color: var(--site-accent);
}

.page-intro-shell {
    border: 1px solid rgba(13, 27, 62, 0.08);
    border-radius: 1.75rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 244, 253, 0.92));
    box-shadow: 0 20px 44px rgba(13, 27, 62, 0.08);
}

.page-intro-copy {
    max-width: 760px;
}

.legal-content-shell {
    border: 1px solid rgba(13, 27, 62, 0.08);
    border-radius: 1.75rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(243, 247, 254, 0.97));
    box-shadow: 0 20px 44px rgba(13, 27, 62, 0.08);
}

.legal-content {
    color: var(--site-text);
    font-size: 1.03rem;
    line-height: 1.85;
}

.legal-content > *:first-child {
    margin-top: 0;
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--site-primary);
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    line-height: 1.1;
}

.legal-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.legal-content h3 {
    font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.legal-content p,
.legal-content ul,
.legal-content ol,
.legal-content blockquote {
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    padding-left: 1.4rem;
}

.legal-content a {
    color: var(--site-accent);
    font-weight: 600;
}

.legal-content blockquote {
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--site-accent);
    border-radius: 0 1rem 1rem 0;
    background: rgba(230, 57, 70, 0.05);
}

.plain-text-block {
    border: 1px solid rgba(13, 27, 62, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 254, 0.95));
    box-shadow: 0 20px 44px rgba(13, 27, 62, 0.08);
}

.plain-text-body {
    color: var(--site-text);
    font-size: 1.02rem;
    line-height: 1.9;
    white-space: normal;
}

.scrolling-text-section {
    position: relative;
}

.scrolling-text-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0.9rem 0;
    border-top: 1px solid var(--site-border);
    border-bottom: 1px solid var(--site-border);
    background: transparent;
}

.scrolling-text-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: siteScrollingText 28s linear infinite;
}

.scrolling-text-marquee-slow .scrolling-text-track {
    animation-duration: 40s;
}

.scrolling-text-marquee-normal .scrolling-text-track {
    animation-duration: 28s;
}

.scrolling-text-marquee-fast .scrolling-text-track {
    animation-duration: 18s;
}

.scrolling-text-row {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.scrolling-text-item {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    padding-inline: 1.5rem;
    white-space: nowrap;
}

.scrolling-text-copy {
    color: var(--site-text);
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.85rem, 4vw, 3.15rem);
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.scrolling-text-separator {
    color: #d10000;
    font-size: 1rem;
    opacity: 0.9;
}

@keyframes siteScrollingText {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

html[data-theme="light"] .scrolling-text-copy {
    color: #0b1320;
}

.media-text-block {
    border: 1px solid rgba(13, 27, 62, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 254, 0.95));
    box-shadow: 0 20px 44px rgba(13, 27, 62, 0.08);
}

.media-text-visual {
    min-height: 340px;
    border-radius: 1.5rem;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.28)),
        rgba(13, 27, 62, 0.04);
    border: 1px solid rgba(13, 27, 62, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-text-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.media-text-visual-cover img {
    object-fit: cover;
}

.media-text-visual-contain img {
    object-fit: contain;
    padding: 1rem;
}

.media-text-body {
    color: var(--site-text);
    font-size: 1.02rem;
    line-height: 1.9;
}

.child-page-card {
    transition: transform var(--site-transition), box-shadow var(--site-transition), border-color var(--site-transition);
}

.child-page-card:hover,
.child-page-card:focus-within {
    transform: translateY(-4px);
}

.site-popup-dialog {
    max-width: 640px;
}

.site-popup-content {
    border: 0;
    border-radius: 1.75rem;
    overflow: hidden;
    box-shadow: 0 34px 70px rgba(13, 27, 62, 0.24);
}

.site-popup-theme-light {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(237, 244, 253, 0.98));
    color: var(--site-text);
}

.site-popup-theme-dark {
    background: linear-gradient(180deg, rgba(13, 27, 62, 0.98), rgba(16, 31, 71, 0.98));
    color: #fff;
}

.site-popup-theme-accent {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.98), rgba(244, 80, 10, 0.98));
    color: #fff;
}

.site-popup-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.05;
}

.site-popup-copy {
    font-size: 1rem;
    line-height: 1.75;
    opacity: 0.92;
}

.site-popup-content .btn-close {
    filter: none;
}

.site-popup-theme-dark .btn-close,
.site-popup-theme-accent .btn-close {
    filter: invert(1);
}

@media (max-width: 575.98px) {
    .site-popup-content {
        border-radius: 0;
    }

    .site-popup-copy {
        font-size: 0.98rem;
    }
}

.incident-form-shell {
    border: 1px solid var(--site-border);
    border-radius: 1.75rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--site-shadow);
}

.incident-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.incident-input,
.incident-textarea {
    min-height: 3.8rem;
    border: 1px solid rgba(13, 27, 62, 0.12);
    border-radius: 1rem;
    padding: 0.95rem 1.1rem;
    font-size: 1.05rem;
    color: var(--site-text);
    background: #fff;
}

.incident-textarea {
    min-height: 11rem;
    resize: vertical;
}

.incident-input:focus,
.incident-textarea:focus {
    border-color: rgba(230, 57, 70, 0.35);
    box-shadow: 0 0 0 0.25rem rgba(230, 57, 70, 0.12);
}

.incident-form-label {
    margin-bottom: 1.25rem;
    color: var(--site-text);
    font-family: "Outfit", sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
}

.incident-form-label-sm {
    margin-bottom: 0.65rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.incident-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}

.incident-radio {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--site-text);
    font-size: 1.05rem;
    font-weight: 600;
}

.incident-radio input[type="radio"] {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0;
}

.incident-upload {
    display: grid;
    gap: 0.8rem;
    padding: 1.25rem;
    border: 1px dashed rgba(13, 27, 62, 0.14);
    border-radius: 1rem;
    background: rgba(242, 246, 252, 0.65);
}

.incident-upload-label {
    color: var(--site-text);
    font-size: 1.05rem;
    font-weight: 700;
}

.incident-divider {
    margin: 2rem 0;
    border-color: rgba(13, 27, 62, 0.08);
}

.incident-otp-inline {
    display: grid;
    gap: 0.65rem;
}

.incident-otp-inline-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.9rem;
    align-items: center;
}

.incident-otp-button {
    min-width: 220px;
    border-radius: 0.95rem;
    padding: 0.95rem 1.5rem;
    font-weight: 700;
}

.incident-otp-button.is-loading,
.incident-otp-button:disabled {
    opacity: 0.82;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none;
}

.incident-helper-text {
    color: var(--site-muted);
    font-size: 0.95rem;
    opacity: 0.88;
    transition: color var(--site-transition);
}

.incident-helper-text.is-visible {
    color: var(--site-accent);
}

.incident-helper-text.is-success {
    color: #4ade80;
}

.incident-helper-text.is-error {
    color: #f87171;
}

.incident-recaptcha {
    display: grid;
    gap: 0.65rem;
}

.incident-consent {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding-top: 0.35rem;
    flex-wrap: wrap;
}

.incident-consent-input {
    margin-top: 0.2rem;
    width: 1.35rem;
    height: 1.35rem;
    flex: 0 0 auto;
    cursor: pointer;
    accent-color: var(--site-accent);
}

.incident-consent-label {
    color: var(--site-text);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    flex: 1 1 0;
    min-width: 0;
}

.incident-submit-button {
    min-height: 4.8rem;
    border-radius: 1rem;
    font-size: 1.2rem;
    font-weight: 800;
}

@media (max-width: 767.98px) {
    .incident-form-label {
        font-size: 1.4rem;
    }

    .incident-form-label-sm {
        font-size: 0.98rem;
    }

    .incident-radio-group {
        gap: 0.85rem 1.25rem;
    }

    .incident-otp-inline-row {
        grid-template-columns: 1fr;
    }

    .incident-submit-button,
    .incident-otp-button {
        width: 100%;
    }
}

/* Frontend refresh: dark radar / tactical security theme */
:root {
    --site-primary: #d10000;
    --site-primary-soft: #8f0000;
    --site-accent: #d10000;
    --site-accent-strong: #f04a18;
    --site-bg: #0a0a0a;
    --site-surface: rgba(255, 255, 255, 0.035);
    --site-surface-soft: rgba(255, 255, 255, 0.055);
    --site-text: #f5f5f5;
    --site-muted: #b0b0b0;
    --site-border: rgba(255, 255, 255, 0.08);
    --site-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
    --site-radius: 1rem;
}

html,
body {
    min-height: 100%;
}

body.site-body {
    position: relative;
    background: #0a0a0a;
    color: var(--site-text);
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
}

body.site-body::before {
    content: none;
}

.site-radar-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.site-stripe {
    position: fixed;
    top: 0;
    left: -10%;
    width: 6px;
    height: 200%;
    background: #d10000;
    transform: rotate(20deg);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.site-stripe-two {
    left: 20%;
    opacity: 0.15;
}

.site-stripe-three {
    left: 55%;
    width: 3px;
    opacity: 0.1;
}

.site-shell,
.site-shell main {
    position: relative;
    z-index: 10;
}

.brand-title,
.display-4,
.display-5,
.display-6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.footer-heading,
.section-kicker,
.site-section-kicker,
.page-intro-shell h1,
.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4,
.blog-card-title,
.banner-title {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.04em;
}

a {
    transition: color var(--site-transition), border-color var(--site-transition), background-color var(--site-transition), transform var(--site-transition), box-shadow var(--site-transition);
}

.text-secondary,
.text-muted {
    color: var(--site-muted) !important;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    padding: 1.15rem 0;
    background: rgba(10, 10, 10, 0.78);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-nav-shell {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: rgba(14, 14, 14, 0.9);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.site-brand-badge {
    display: inline-grid;
    place-items: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 0.65rem;
    background: linear-gradient(180deg, #d10000, #990000);
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.45rem;
    letter-spacing: 0.08em;
    box-shadow: 0 14px 28px rgba(209, 0, 0, 0.22);
}

.site-brand-image {
    max-height: 2.9rem;
    width: auto;
}

.site-wordmark {
    color: #f8f8f8;
    font-size: 1.9rem;
    font-weight: 400;
    letter-spacing: 0.06em;
}

.site-nav-link {
    color: rgba(245, 245, 245, 0.72);
    font-size: 0.92rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.site-nav-link:hover,
.site-nav-link:focus-visible {
    color: #fff;
}

.site-nav-link::after {
    right: 0.8rem;
    left: 0.8rem;
    bottom: 0.25rem;
    background: linear-gradient(90deg, transparent, var(--site-primary), transparent);
}

.site-nav-badge {
    background: rgba(209, 0, 0, 0.14);
    border: 1px solid rgba(209, 0, 0, 0.28);
    color: #f7b3b3;
}

.site-phone-link {
    color: #f5f5f5;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.site-phone-link:hover,
.site-phone-link:focus-visible {
    color: #fff;
}

.site-cta-button,
.btn-danger,
.btn-warning,
.incident-submit-button,
.incident-otp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.78rem 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.7rem;
    background: linear-gradient(135deg, #d10000, #f04a18);
    color: #fff !important;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(209, 0, 0, 0.2);
}

.site-cta-button:hover,
.site-cta-button:focus-visible,
.btn-danger:hover,
.btn-danger:focus-visible,
.btn-warning:hover,
.btn-warning:focus-visible,
.incident-submit-button:hover,
.incident-submit-button:focus-visible,
.incident-otp-button:hover,
.incident-otp-button:focus-visible {
    background: linear-gradient(135deg, #e11515, #ff5a1f);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(209, 0, 0, 0.26);
}

.btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.16);
    color: #f5f5f5;
    background: rgba(255, 255, 255, 0.02);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus-visible {
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.navbar-toggler {
    padding: 0.45rem 0.65rem;
    border-radius: 0.6rem;
    background: rgba(255, 255, 255, 0.04);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28245,245,245,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

html[data-theme="light"] .navbar-toggler {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2816,24,39,0.92%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-dropdown-menu,
.site-mega-menu {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 12, 12, 0.98);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.44);
}

.site-dropdown-menu .dropdown-item,
.site-mega-link {
    color: #f5f5f5;
}

.site-dropdown-menu .dropdown-item:hover,
.site-dropdown-menu .dropdown-item:focus-visible,
.site-mega-link:hover,
.site-mega-link:focus-visible {
    background: rgba(209, 0, 0, 0.1);
    color: #fff;
}

.site-dropdown-submenu {
    border-left-color: rgba(255, 255, 255, 0.1);
}

.site-dropdown-subitem {
    color: rgba(245, 245, 245, 0.72);
}

.site-dropdown-subitem:hover,
.site-dropdown-subitem:focus-visible {
    color: #fff;
}

.site-mega-link {
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}

.site-mega-link strong,
.site-breadcrumb a,
.footer-heading {
    color: #f5f5f5;
}

.site-mega-submenu {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.site-mega-submenu-link {
    color: rgba(245, 245, 245, 0.74);
}

.site-mega-submenu-link:hover,
.site-mega-submenu-link:focus-visible {
    color: #fff;
}

.section-kicker,
.site-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    padding: 0.45rem 0.95rem;
    border: 1px solid rgba(209, 0, 0, 0.28);
    border-radius: 0.45rem;
    background: rgba(209, 0, 0, 0.08);
    color: #f87171;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-kicker::before,
.site-section-kicker::before {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--site-primary);
    box-shadow: 0 0 0 0.35rem rgba(209, 0, 0, 0.12);
    content: "";
}

.hero-panel,
.metric-card,
.soft-card,
.accent-panel,
.accordion,
.footer-shell,
.page-intro-shell,
.legal-content-shell,
.blog-featured-shell,
.blog-detail-shell,
.blog-empty-state,
.blog-featured-card,
.blog-card,
.blog-sidebar .soft-card,
.incident-form-shell,
.contact-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: var(--site-shadow);
    backdrop-filter: blur(10px);
}

.hero-panel,
.accent-panel,
.page-intro-shell {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
        radial-gradient(circle at top right, rgba(209, 0, 0, 0.08), transparent 34%);
}

.hero-panel::after,
.side-panel::after,
.cta-panel::after {
    background: radial-gradient(circle, rgba(209, 0, 0, 0.26), transparent 66%);
}

.hero-panel .display-4,
.section-heading .display-6,
.page-intro-shell .display-5,
.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
    color: #f5f5f5;
    letter-spacing: 0.05em;
}

.page-intro-shell .display-5 {
    font-size: clamp(2.3rem, 5vw, 4rem);
}

.metric-card strong,
.soft-card h3,
.blog-card-title,
.blog-content h2,
.blog-content h3 {
    color: #f5f5f5;
}

.soft-card,
.blog-card,
.blog-featured-card {
    transition: transform var(--site-transition), border-color var(--site-transition), background-color var(--site-transition), box-shadow var(--site-transition);
}

.soft-card:hover,
.blog-card:hover,
.blog-featured-card:hover {
    border-color: rgba(209, 0, 0, 0.18);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.44);
}

.mini-card,
.site-mega-link,
.blog-sidebar-link {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #f5f5f5;
}

.blog-sidebar-link:hover,
.blog-sidebar-link:focus-visible,
.blog-sidebar-link.is-active {
    background: rgba(209, 0, 0, 0.1);
    color: #fff;
}

.blog-content,
.legal-content,
.footer-copy,
.footer-link,
.footer-meta,
.blog-meta,
.blog-content p,
.blog-content li,
.page-intro-copy,
.accordion-body,
.cookie-banner-copy p {
    color: var(--site-muted);
}

.accordion-button {
    color: #f5f5f5;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background: rgba(209, 0, 0, 0.08);
}

.accordion-button:focus {
    box-shadow: none;
}

.site-breadcrumb-section {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-breadcrumb .breadcrumb-item,
.site-breadcrumb .breadcrumb-item.active,
.site-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

.site-breadcrumb a:hover,
.site-breadcrumb a:focus-visible,
.footer-link:hover,
.footer-link:focus-visible,
.soft-card a,
.blog-card-title:hover,
.blog-card-title:focus-visible {
    color: #fff;
}

.site-footer {
    padding-top: 2.5rem;
}

.footer-shell {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        radial-gradient(circle at top left, rgba(209, 0, 0, 0.08), transparent 30%);
}

.footer-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-actions {
    right: 1.35rem;
    bottom: 1.35rem;
    gap: 0.9rem;
}

.quick-action {
    width: 4rem;
    height: 4rem;
    border-radius: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.42);
}

.quick-action:hover,
.quick-action:focus-visible {
    transform: translateY(-3px) scale(1.02);
}

.quick-action-dark {
    background: #25d366;
    color: #fff;
}

.quick-action-accent {
    background: linear-gradient(135deg, #d10000, #f04a18);
    color: #fff;
}

.cookie-banner-shell {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: rgba(12, 12, 12, 0.96);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.42);
}

.cookie-banner-copy strong {
    color: #f5f5f5;
}

.cookie-banner-actions .btn {
    min-width: 9rem;
}

.page-intro-section,
.legal-content-section,
.site-footer,
.blog-index-section,
.blog-detail-section {
    position: relative;
}

.legal-content {
    font-size: 1.03rem;
    line-height: 1.95;
}

.legal-content a {
    color: #fca5a5;
}

.legal-content a:hover,
.legal-content a:focus-visible {
    color: #fff;
}

.form-control,
.form-select,
.incident-form-shell textarea,
.incident-form-shell input {
    border: 1px solid var(--theme-border);
    background: var(--theme-panel-bg-soft);
    color: var(--theme-heading);
}

.form-control::placeholder,
.incident-form-shell textarea::placeholder,
.incident-form-shell input::placeholder {
    color: var(--theme-muted);
    opacity: 0.72;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(209, 0, 0, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(209, 0, 0, 0.12);
    background: var(--theme-panel-bg-strong);
    color: var(--theme-heading);
}

.banner-copy-panel {
    max-width: 60rem;
    margin-inline: auto;
}

.banner-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    letter-spacing: 0.03em;
}

.banner-description {
    max-width: 52rem;
    font-size: clamp(1rem, 1.1vw, 1.08rem);
}

.banner-content-wrap {
    align-items: center;
    justify-content: center;
}

.banner-outline-button,
.banner-accent-button {
    font-family: "DM Sans", sans-serif;
}

@media (max-width: 991.98px) {
    .site-header {
        padding: 0.85rem 0;
    }

    .site-nav-shell .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-phone-link {
        padding: 0.2rem 0;
    }

    .site-wordmark {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .quick-actions {
        right: 1rem;
        bottom: 1rem;
    }

    .quick-action {
        width: 3.5rem;
        height: 3.5rem;
    }

    .site-cta-button {
        width: 100%;
    }
}

@keyframes siteFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes siteSignalBlink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.22;
    }
}

@keyframes siteSignalPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(209, 0, 0, 0.24);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(209, 0, 0, 0);
    }
}

@keyframes siteSupportPing {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.65);
        opacity: 0;
    }
}

.site-wordmark-accent {
    color: #d10000;
}

.site-header {
    background: rgba(8, 8, 8, 0.82);
    backdrop-filter: blur(18px);
}

.site-nav-shell {
    border-radius: 0.85rem;
    background: rgba(12, 12, 12, 0.92);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.site-nav-link {
    padding: 0.55rem 0.7rem !important;
    color: rgba(245, 245, 245, 0.58);
}

.site-nav-link:hover,
.site-nav-link:focus-visible {
    color: #fff;
}

.site-phone-link {
    color: rgba(245, 245, 245, 0.84);
}

.section-kicker,
.site-section-kicker {
    border-radius: 0.4rem;
    animation: siteSignalPulse 2.6s ease-in-out infinite;
}

.section-kicker::before,
.site-section-kicker::before {
    animation: siteSignalBlink 1.2s ease-in-out infinite;
}

.hero-panel,
.side-panel,
.metric-card,
.soft-card,
.cta-panel,
.footer-shell,
.page-intro-shell,
.legal-content-shell,
.banner-copy-panel {
    animation: siteFadeUp 0.85s ease both;
}

.hero-panel,
.page-intro-shell {
    position: relative;
    overflow: hidden;
    border-radius: 1.15rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        radial-gradient(circle at top right, rgba(209, 0, 0, 0.1), transparent 34%);
}

.hero-panel::before,
.metric-card::before,
.soft-card::before,
.cta-panel::before,
.footer-shell::before,
.page-intro-shell::before,
.legal-content-shell::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(209, 0, 0, 0.72), transparent);
    content: "";
    pointer-events: none;
}

.hero-panel .display-4,
.section-heading .display-6,
.page-intro-shell .display-5 {
    line-height: 0.92;
}

.page-intro-shell .display-5 {
    font-size: clamp(1.95rem, 3.8vw, 3rem);
}

.hero-panel .lead,
.page-intro-copy,
.soft-card p,
.soft-card li,
.metric-card span,
.footer-copy {
    color: #b0b0b0 !important;
}

.mini-card,
.metric-card,
.soft-card,
.blog-card,
.blog-featured-card,
.blog-sidebar-link,
.page-intro-shell,
.legal-content-shell {
    position: relative;
    overflow: hidden;
    border-radius: 0.9rem;
}

.mini-card {
    background: rgba(255, 255, 255, 0.025);
}

.mini-card strong,
.metric-card strong {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.08em;
}

.soft-card,
.blog-card,
.blog-featured-card {
    background: rgba(255, 255, 255, 0.03);
}

.soft-card:hover,
.blog-card:hover,
.blog-featured-card:hover {
    transform: translateY(-4px);
    border-color: rgba(209, 0, 0, 0.26);
}

.soft-card a,
.blog-card-title:hover,
.blog-card-title:focus-visible {
    color: #f87171;
}

.side-panel,
.cta-panel {
    border-radius: 1rem;
    background:
        linear-gradient(180deg, rgba(14, 14, 14, 0.96), rgba(9, 9, 9, 0.92)),
        radial-gradient(circle at top right, rgba(209, 0, 0, 0.14), transparent 34%);
}

.hero-panel .btn,
.side-panel .btn,
.cta-panel .btn {
    border-radius: 0.7rem !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
}

.section-heading {
    max-width: 760px;
}

.footer-shell {
    border-radius: 1rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
        radial-gradient(circle at top left, rgba(209, 0, 0, 0.08), transparent 30%);
}

.footer-meta {
    color: rgba(255, 255, 255, 0.28);
}

.quick-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.7rem;
}


.quick-action-group {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.7rem;
}

.quick-action-group::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    width: 13rem;
    height: 1rem;
    content: "";
}

.quick-action-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 0.8rem);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 12rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(37, 211, 102, 0.28);
    border-radius: 0.85rem;
    background: rgba(12, 12, 12, 0.96);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.48);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.5rem) scale(0.98);
    transform-origin: bottom right;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.quick-action-group:hover .quick-action-panel,
.quick-action-group:focus-within .quick-action-panel,
.quick-action-group.is-open .quick-action-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.quick-action-panel-link {
    display: inline-flex;
    width: fit-content;
    text-decoration: none;
}

.quick-action-panel-link:hover strong,
.quick-action-panel-link:focus-visible strong {
    color: #25d366;
}

@media (max-width: 991.98px) {
    .site-nav-shell .navbar-collapse {
        max-height: min(70vh, 34rem);
        overflow-y: auto;
        overscroll-behavior: contain;
        padding-right: 0.35rem;
    }
}

@media (min-width: 992px) {
    .site-nav-shell .navbar-collapse {
        max-height: none;
        overflow-y: visible;
    }
}


.quick-action-panel-label {
    color: #b0b0b0;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.quick-action-panel strong {
    color: #f5f5f5;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.12em;
    line-height: 1;
}

.quick-action-panel-copy {
    color: #8d8d8d;
    font-size: 0.72rem;
}

.quick-action {
    position: relative;
    border-radius: 50%;
}

.quick-action-dark::before {
    position: absolute;
    inset: -4px;
    border: 2px solid #25d366;
    border-radius: 50%;
    animation: siteSupportPing 2s ease-out infinite;
    content: "";
}

.quick-action-dark::after {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 0.75rem;
    height: 0.75rem;
    border: 2px solid #25d366;
    border-radius: 50%;
    background: #fff;
    content: "";
}

@media (max-width: 991.98px) {
    .hero-panel .display-4,
    .section-heading .display-6,
    .page-intro-shell .display-5 {
        letter-spacing: 0.04em;
    }
}

@media (max-width: 767.98px) {
    .quick-action-panel {
        right: 0.35rem;
        bottom: calc(100% + 0.6rem);
        min-width: 10.5rem;
        padding: 0.75rem 0.85rem;
    }

    .quick-action-panel strong {
        font-size: 1.05rem;
    }
}

/* Duty branches page */
.duty-branches-page {
    position: relative;
}

.duty-page-shell {
    position: relative;
    z-index: 2;
}

.duty-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: center;
    padding-bottom: 3rem;
}

.duty-copy-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: siteFadeUp 0.85s ease both;
}

.duty-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.45rem 0.95rem;
    border: 1px solid rgba(209, 0, 0, 0.3);
    border-radius: 0.35rem;
    background: rgba(209, 0, 0, 0.12);
    color: #d10000;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    animation: siteSignalPulse 2.6s ease-in-out infinite;
}

.duty-tag-dot,
.duty-holiday-dot,
.duty-status-badge .sdot {
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    animation: siteSignalBlink 1.2s ease-in-out infinite;
}

.duty-tag-dot {
    background: #d10000;
}

.duty-title {
    margin: 0;
    color: #f5f5f5;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3.2rem, 7vw, 6.2rem);
    line-height: 0.92;
    letter-spacing: 0.05em;
}

.duty-title span {
    display: block;
    color: #d10000;
}

.duty-copy {
    max-width: 36rem;
    margin: 0;
    color: #b0b0b0;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.8;
}

.duty-contact-card,
.duty-system-card,
.duty-branch-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.duty-contact-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.65rem 1.75rem;
    animation: siteFadeUp 0.85s 0.15s ease both;
}

.duty-contact-card h2 {
    margin: 0;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: #f5f5f5;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.18em;
}

.duty-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.duty-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 0.5rem;
    background: rgba(209, 0, 0, 0.15);
    color: #d10000;
    flex-shrink: 0;
}

.duty-contact-icon svg {
    width: 0.95rem;
    height: 0.95rem;
}

.duty-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.duty-contact-label {
    color: #9a9a9a;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.duty-contact-value,
.duty-contact-value a {
    color: #f5f5f5;
    line-height: 1.6;
    text-decoration: none;
}

.duty-contact-value a:hover,
.duty-contact-value a:focus-visible {
    color: #f87171;
}

.duty-systems-section,
.duty-branch-section {
    padding-top: 3.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.duty-branch-section {
    padding-bottom: 1rem;
}

.duty-branch-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 1.25rem;
    align-items: start;
}

.duty-branch-list-shell {
    min-width: 0;
}

.duty-branch-map-shell {
    position: sticky;
    top: calc(var(--site-sticky-offset, 6rem) + 1rem);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    min-height: 720px;
}

.duty-branch-map-head {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.duty-branch-map-head strong {
    color: #f5f5f5;
    font-size: 0.95rem;
    font-weight: 700;
}

.duty-branch-map-head span {
    color: #9aa0b5;
    font-size: 0.8rem;
}

.duty-branch-map {
    height: 660px;
    background: rgba(10, 10, 10, 0.2);
}

.duty-branch-map .leaflet-container {
    background: rgba(10, 10, 10, 0.16);
}

.duty-branch-map .leaflet-popup-content-wrapper {
    background: #14141f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f5f5;
}

.duty-branch-map .leaflet-popup-tip {
    background: #14141f;
}

.duty-branch-map .leaflet-popup-content {
    margin: 0.95rem 1rem;
    min-width: 190px;
}

.duty-map-popup-title {
    margin-bottom: 0.35rem;
    color: #f5f5f5;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
}

.duty-map-popup-sub {
    margin-bottom: 0.6rem;
    color: #9aa0b5;
    font-size: 0.78rem;
}

.duty-map-popup-row {
    display: flex;
    justify-content: space-between;
    gap: 0.7rem;
    padding-top: 0.35rem;
    margin-top: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #9aa0b5;
    font-size: 0.74rem;
}

.duty-map-popup-row strong {
    color: #f5f5f5;
    font-weight: 600;
}

.duty-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.duty-section-header h2 {
    margin: 0;
    color: #f5f5f5;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    letter-spacing: 0.14em;
}

.duty-section-header h2 span {
    color: #d10000;
}

.duty-section-header p {
    margin: 0.5rem 0 0;
    color: #9e9e9e;
    font-size: 0.9rem;
}

.duty-holiday-badge {
    display: none;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.8rem;
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 0.35rem;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.duty-holiday-badge.is-visible {
    display: inline-flex;
}

.duty-holiday-dot {
    background: #f59e0b;
}

.duty-systems-grid,
.duty-branch-grid {
    display: grid;
    gap: 1rem;
}

.duty-systems-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.duty-branch-grid {
    grid-template-columns: 1fr;
    max-height: 720px;
    overflow-y: auto;
    padding-right: 0.2rem;
    overscroll-behavior: contain;
}

.duty-branch-grid::-webkit-scrollbar {
    width: 6px;
}

.duty-branch-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
}

.duty-system-card,
.duty-branch-card {
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.duty-system-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.15rem 1.2rem;
    text-decoration: none;
}

.duty-system-card:hover,
.duty-system-card:focus-visible,
.duty-branch-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.055);
}

.duty-system-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
}

.duty-system-line-red {
    background: linear-gradient(90deg, rgba(209, 0, 0, 0.75), transparent);
}

.duty-system-line-indigo {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.75), transparent);
}

.duty-system-line-teal {
    background: linear-gradient(90deg, rgba(20, 184, 166, 0.75), transparent);
}

.duty-system-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.duty-system-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 0.45rem;
}

.duty-system-icon svg {
    width: 0.85rem;
    height: 0.85rem;
}

.duty-system-icon-red {
    background: rgba(209, 0, 0, 0.15);
    color: #f87171;
}

.duty-system-icon-indigo {
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
}

.duty-system-icon-teal {
    background: rgba(20, 184, 166, 0.15);
    color: #5eead4;
}

.duty-system-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 0.25rem;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.duty-system-card strong,
.duty-branch-name {
    color: #f5f5f5;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.08em;
}

.duty-system-card strong {
    font-size: 1.1rem;
}

.duty-system-card p,
.duty-branch-sub,
.duty-branch-row {
    margin: 0;
    color: #9e9e9e;
}

.duty-system-card p {
    line-height: 1.6;
    font-size: 0.8rem;
}

.duty-system-url {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    opacity: 0.85;
}

.duty-system-url-red {
    color: #f87171;
}

.duty-system-url-indigo {
    color: #a5b4fc;
}

.duty-system-url-teal {
    color: #5eead4;
}

.duty-branch-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.25rem 1.35rem;
}

.duty-branch-card::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    content: "";
}

.duty-branch-card.is-open {
    background: rgba(37, 211, 102, 0.04);
    border-color: rgba(37, 211, 102, 0.25);
}

.duty-branch-card.is-open::before {
    background: linear-gradient(90deg, #25d366, transparent);
}

.duty-branch-card.is-open:hover {
    background: rgba(37, 211, 102, 0.07);
    border-color: rgba(37, 211, 102, 0.4);
}

.duty-branch-card.is-duty {
    background: rgba(209, 0, 0, 0.04);
    border-color: rgba(209, 0, 0, 0.25);
}

.duty-branch-card.is-duty::before {
    background: linear-gradient(90deg, #d10000, transparent);
}

.duty-branch-card.is-closed {
    opacity: 0.58;
}

.duty-branch-card.is-closed::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
}

.duty-branch-top {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: flex-start;
}

.duty-branch-name {
    font-size: 1.25rem;
    line-height: 1.05;
}

.duty-branch-sub {
    margin-top: 0.2rem;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
}

.duty-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    white-space: nowrap;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.duty-status-badge.is-open {
    color: #4ade80;
    border: 1px solid rgba(37, 211, 102, 0.35);
    background: rgba(37, 211, 102, 0.12);
}

.duty-status-badge.is-open .sdot {
    background: #4ade80;
}

.duty-status-badge.is-duty {
    color: #f87171;
    border: 1px solid rgba(209, 0, 0, 0.35);
    background: rgba(209, 0, 0, 0.12);
}

.duty-status-badge.is-duty .sdot {
    background: #f87171;
}

.duty-status-badge.is-closed {
    color: #9e9e9e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.duty-status-badge.is-closed .sdot {
    background: #9e9e9e;
}

.duty-branch-info {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.duty-branch-row {
    display: flex;
    gap: 0.55rem;
    align-items: center;
    font-size: 0.9rem;
}

.duty-branch-row svg,
.duty-branch-clock svg {
    width: 0.82rem;
    height: 0.82rem;
    opacity: 0.65;
    flex-shrink: 0;
}

.duty-branch-row a {
    color: inherit;
    text-decoration: none;
}

.duty-branch-row a:hover,
.duty-branch-row a:focus-visible {
    color: #f5f5f5;
}

.duty-branch-card.is-open .duty-branch-row a:hover,
.duty-branch-card.is-open .duty-branch-row a:focus-visible {
    color: #4ade80;
}

.duty-branch-clock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
}

html[data-theme="light"] .duty-branch-map-shell {
    border-color: rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.92);
}

html[data-theme="light"] .duty-branch-map-head {
    border-bottom-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .duty-branch-map-head strong {
    color: #101827;
}

html[data-theme="light"] .duty-branch-map-head span {
    color: #64748b;
}

html[data-theme="light"] .duty-branch-map {
    background: rgba(241, 245, 249, 0.8);
}

html[data-theme="light"] .duty-branch-map .leaflet-container {
    background: rgba(241, 245, 249, 0.82);
}

html[data-theme="light"] .duty-branch-map .leaflet-popup-content-wrapper {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
    color: #101827;
}

html[data-theme="light"] .duty-branch-map .leaflet-popup-tip {
    background: #ffffff;
}

html[data-theme="light"] .duty-map-popup-title,
html[data-theme="light"] .duty-map-popup-row strong {
    color: #101827;
}

html[data-theme="light"] .duty-map-popup-sub,
html[data-theme="light"] .duty-map-popup-row {
    color: #64748b;
}

html[data-theme="light"] .duty-map-popup-row {
    border-top-color: rgba(15, 23, 42, 0.08);
}

@media (max-width: 991.98px) {
    .duty-hero-grid {
        grid-template-columns: 1fr;
        padding-bottom: 2.5rem;
    }

    .duty-branch-layout {
        grid-template-columns: 1fr;
    }

    .duty-branch-map-shell {
        position: relative;
        top: auto;
        min-height: 0;
    }

    .duty-branch-grid {
        max-height: 28rem;
    }

    .duty-branch-map {
        height: 26rem;
    }
}

@media (max-width: 767.98px) {
    .duty-systems-section,
    .duty-branch-section {
        padding-top: 2.75rem;
    }

    .duty-branch-grid {
        max-height: none;
    }

    .duty-branch-map {
        height: 22rem;
    }
}

/* Header layout refinement */
.site-topbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 0.75rem;
}

.site-topbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.site-topbar-phone {
    display: inline-flex;
    align-items: center;
    min-height: 2.8rem;
    padding: 0.55rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.site-topbar-phone:hover,
.site-topbar-phone:focus-visible {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
}

.site-topbar-cta {
    min-height: 2.8rem;
    padding: 0.7rem 1.15rem;
}

.site-brand-anchor {
    flex-shrink: 0;
    padding-right: 0.65rem;
}

.site-nav-shell .navbar-collapse {
    justify-content: center;
}

.site-nav-list {
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 991.98px) {
    .site-topbar {
        align-items: center;
        justify-content: space-between;
        gap: 0.65rem;
        padding-bottom: 0.2rem;
    }

    .site-topbar-actions {
        width: auto;
        flex: 0 0 auto;
        justify-content: flex-end;
    }
}

@media (max-width: 767.98px) {
    .site-topbar {
        gap: 0.5rem;
    }

    .site-topbar-note {
        align-items: center;
        flex-direction: row;
        gap: 0.45rem;
        min-width: 0;
    }

    .site-topbar-note-label {
        padding: 0.22rem 0.45rem;
        font-size: 0.58rem;
    }

    .site-topbar-note-text {
        font-size: 0.72rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .site-topbar-actions {
        gap: 0.65rem;
        margin-left: auto;
    }

    .site-topbar-phone,
    .site-topbar-cta {
        width: 100%;
        justify-content: center;
    }
}


@media (max-width: 767.98px) {
    .site-topbar-actions {
        gap: 0.65rem;
    }

    .site-topbar-phone,
    .site-topbar-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Header scale tune */
.site-header {
    padding: 0.72rem 0;
}

.site-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.45rem;
}

.site-topbar-note {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
    flex: 1 1 auto;
    padding-right: 1rem;
}

.site-topbar-note-label {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0.3rem 0.55rem;
    border: 1px solid rgba(209, 0, 0, 0.18);
    border-radius: 999px;
    background: rgba(209, 0, 0, 0.08);
    color: rgba(245, 245, 245, 0.78);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-topbar-note-text {
    min-width: 0;
    color: rgba(245, 245, 245, 0.6);
    font-size: 0.76rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-topbar-note-text.is-rotating {
    opacity: 0;
    transform: translateY(3px);
}

.site-topbar-actions {
    flex: 0 0 auto;
    gap: 0.6rem;
}

.site-topbar-phone {
    min-height: 2.35rem;
    padding: 0.42rem 0.8rem;
    border-radius: 0.62rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.site-topbar-cta {
    min-height: 2.35rem;
    padding: 0.52rem 0.95rem;
    border-radius: 0.62rem;
    font-size: 0.84rem;
    letter-spacing: 0.02em;
}

.site-nav-shell {
    border-radius: 0.78rem;
}

.site-nav-shell.navbar {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
}

.site-brand-image {
    max-height: 2.45rem;
}

.site-brand-badge {
    width: 2.45rem;
    height: 2.45rem;
    font-size: 1.2rem;
}

.site-nav-list {
    gap: 0.15rem 0.5rem;
}

.site-nav-link {
    padding: 0.42rem 0.56rem !important;
    font-size: 0.76rem;
    letter-spacing: 0.05em;
}

.site-nav-link::after {
    right: 0.56rem;
    left: 0.56rem;
    bottom: 0.18rem;
}

.site-nav-badge {
    margin-left: 0.35rem;
    padding: 0.08rem 0.38rem;
    font-size: 0.54rem;
}

.site-nav-caret {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    transition: transform 0.18s ease;
}

.site-nav-caret svg {
    width: 0.95rem;
    height: 0.95rem;
}

.site-nav-menu-toggle[aria-expanded="true"] .site-nav-caret {
    transform: rotate(180deg);
}

.site-dropdown-menu .dropdown-item {
    padding: 0.72rem 0.9rem;
    font-size: 0.84rem;
}

@media (max-width: 991.98px) {
    .site-header {
        padding: 0.62rem 0;
    }

    .site-topbar {
        align-items: center;
        gap: 0.65rem;
        padding-bottom: 0.2rem;
    }

    .site-topbar-note {
        width: 100%;
        padding-right: 0;
        align-items: center;
        flex-direction: row;
    }

    .site-topbar-note-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .site-topbar-actions {
        justify-content: flex-end;
    }

    .site-topbar-actions .site-systems-trigger,
    .site-topbar-actions .site-topbar-phone,
    .site-topbar-actions .site-topbar-cta {
        display: none;
    }
}


@media (min-width: 992px) {
    .site-nav-item--has-children::after {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 1rem;
        content: "";
    }

    .site-nav-item--has-children:hover > .dropdown-menu,
    .site-nav-item--has-children:focus-within > .dropdown-menu {
        display: block;
    }

    .site-nav-item--has-children:hover .site-nav-menu-toggle .site-nav-caret,
    .site-nav-item--has-children:focus-within .site-nav-menu-toggle .site-nav-caret {
        transform: rotate(180deg);
    }
}

@media (max-width: 991.98px) {
    .site-header {
        padding: 0.62rem 0;
    }

    .site-topbar {
        align-items: flex-start;
        flex-direction: column;
        padding-bottom: 0.4rem;
    }

    .site-topbar-note {
        width: 100%;
        padding-right: 0;
    }

    .site-topbar-note-text {
        white-space: normal;
    }

    .site-topbar-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .site-topbar-phone,
    .site-topbar-cta {
        min-height: 2.2rem;
    }

    .site-nav-shell.navbar {
        padding-top: 0.72rem !important;
        padding-bottom: 0.72rem !important;
    }

    .site-nav-trigger {
        width: 100%;
        align-items: center;
    }

    .site-nav-item--has-children .site-nav-link {
        flex: 1 1 auto;
    }

    .site-nav-menu-toggle {
        flex: 0 0 auto;
        margin-left: auto;
    }
}

/* Right aligned desktop nav */
.site-nav-shell .navbar-collapse {
    justify-content: flex-end;
}

.site-nav-list {
    margin-left: auto !important;
    margin-right: 0 !important;
    justify-content: flex-end;
}

@media (max-width: 991.98px) {
    .site-nav-list {
        margin-right: auto !important;
        justify-content: flex-start;
    }
}

/* Systems menu */
.site-systems-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 2.35rem;
    padding: 0.42rem 0.82rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.62rem;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(245, 245, 245, 0.84);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

    .site-mobile-utility-links {
        display: grid;
        gap: 0.65rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(13, 27, 62, 0.08);
    }

    .site-mobile-utility-link,
    .site-mobile-utility-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 2.8rem;
        width: 100%;
        padding: 0.72rem 1rem;
        gap: 0.55rem;
        border: 1px solid var(--theme-border, rgba(255, 255, 255, 0.12));
        border-radius: 0.9rem;
        background: var(--theme-panel-bg, rgba(255, 255, 255, 0.92));
        color: var(--theme-heading, var(--site-primary));
        font-size: 0.88rem;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 12px 28px rgba(13, 27, 62, 0.08);
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .site-mobile-utility-link:hover,
    .site-mobile-utility-link:focus-visible,
    .site-mobile-utility-button:hover,
    .site-mobile-utility-button:focus-visible {
        border-color: var(--theme-border, rgba(255, 255, 255, 0.18));
        background: var(--theme-panel-bg-soft, rgba(255, 255, 255, 0.98));
        color: var(--theme-heading, var(--site-primary));
        transform: translateY(-1px);
    }

    .site-mobile-utility-link-accent {
        background: linear-gradient(135deg, var(--site-accent), #ff5a5f);
        border-color: transparent;
        color: #fff;
    }

    .site-mobile-utility-link-accent:hover,
    .site-mobile-utility-link-accent:focus-visible {
        background: linear-gradient(135deg, #e23232, #ff6b61);
        color: #fff;
        border-color: transparent;
    }
}

.site-systems-trigger:hover,
.site-systems-trigger:focus-visible {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.site-systems-trigger-dot {
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 50%;
    background: #d10000;
    box-shadow: 0 0 0 0.28rem rgba(209, 0, 0, 0.12);
}

.site-systems-offcanvas {
    width: min(30rem, calc(100vw - 1rem));
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(9, 9, 9, 0.98);
    color: #f5f5f5;
}

.site-systems-offcanvas .offcanvas-header {
    align-items: flex-start;
    padding: 1.25rem 1.25rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-systems-kicker {
    display: inline-block;
    color: #9a9a9a;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-systems-offcanvas .offcanvas-title {
    margin-top: 0.25rem;
    color: #f5f5f5;
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    letter-spacing: 0.08em;
}

.site-systems-offcanvas .offcanvas-body {
    padding: 1.2rem 1.25rem 1.5rem;
}

.site-systems-menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.site-system-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-system-group-header {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.site-system-group-header strong {
    display: block;
    color: #f5f5f5;
    font-size: 0.98rem;
    letter-spacing: 0.03em;
}

.site-system-group-header p {
    margin: 0.25rem 0 0;
    color: #9a9a9a;
    font-size: 0.82rem;
    line-height: 1.6;
}

.site-system-children {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.site-system-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--system-accent, #c9a84c);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(245, 245, 245, 0.86);
    text-decoration: none;
}

.site-system-chip:hover,
.site-system-chip:focus-visible {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    transform: translateY(-1px);
}

.site-system-chip-dot {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: var(--system-accent, #c9a84c);
    flex-shrink: 0;
}

.site-system-chip-label {
    flex: 1;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-system-chip-arrow {
    color: rgba(245, 245, 245, 0.36);
    font-size: 1rem;
    line-height: 1;
}

@media (max-width: 991.98px) {
    .site-topbar-phone,
    .site-topbar-cta,
    .site-systems-trigger {
        min-height: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .site-topbar-note {
        align-items: center;
        flex-direction: column;
        gap: 0.45rem;
    }

    .site-topbar-phone,
    .site-topbar-cta,
    .site-systems-trigger {
        width: 100%;
        justify-content: center;
    }
}

/* Systems offcanvas final layer fix */
.site-shell {
    overflow: visible;
}

.offcanvas-backdrop {
    z-index: 1070;
    background-color: rgba(0, 0, 0, 0.72);
}

.offcanvas-backdrop.show {
    opacity: 1;
}

.site-systems-offcanvas {
    --bs-offcanvas-zindex: 1080;
    --bs-offcanvas-width: min(30rem, calc(100vw - 1rem));
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100dvh;
    max-height: 100dvh;
    z-index: 1080;
    overflow: hidden;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(9, 9, 9, 0.98);
}

.site-systems-offcanvas .offcanvas-header {
    flex: 0 0 auto;
}

.site-systems-offcanvas .offcanvas-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

body:has(.site-systems-offcanvas.show) .site-header {
    z-index: 1020;
}

@media (max-width: 767.98px) {
    .site-systems-offcanvas {
        --bs-offcanvas-width: calc(100vw - 0.5rem);
    }
}

/* Theme toggle */
.site-theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.52rem;
    min-height: 2.35rem;
    padding: 0.42rem 0.82rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.62rem;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(245, 245, 245, 0.84);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: background var(--site-transition), border-color var(--site-transition), color var(--site-transition);
}

.site-theme-toggle:hover,
.site-theme-toggle:focus-visible {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.site-theme-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-theme-toggle-icon svg {
    width: 0.95rem;
    height: 0.95rem;
}

.site-theme-toggle-icon-sun {
    display: none;
}

html[data-theme="light"] .site-theme-toggle-icon-sun {
    display: inline-flex;
}

html[data-theme="light"] .site-theme-toggle-icon-moon {
    display: none;
}

html[data-theme="dark"] .site-theme-toggle-icon-moon {
    display: inline-flex;
}

html[data-theme="dark"] .site-theme-toggle-icon-sun {
    display: none;
}

/* Theme system */
html[data-theme="dark"] {
    color-scheme: dark;
    --theme-body-background: #0a0a0a;
    --theme-body-color: #f5f5f5;
    --theme-text: #f5f5f5;
    --theme-heading: #ffffff;
    --theme-muted: #9f9f9f;
    --theme-border: rgba(255, 255, 255, 0.08);
    --theme-border-soft: rgba(255, 255, 255, 0.06);
    --theme-panel-bg: rgba(14, 14, 14, 0.94);
    --theme-panel-bg-soft: rgba(18, 18, 18, 0.92);
    --theme-panel-bg-strong: rgba(10, 10, 10, 0.98);
    --theme-header-bg: rgba(10, 10, 10, 0.82);
    --theme-breadcrumb-bg: rgba(255, 255, 255, 0.03);
    --theme-breadcrumb-border: rgba(255, 255, 255, 0.06);
    --theme-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

html[data-theme="light"] {
    color-scheme: light;
    --site-bg: #f7faff;
    --site-surface: rgba(255, 255, 255, 0.9);
    --site-surface-soft: rgba(255, 255, 255, 0.96);
    --site-text: #0f1728;
    --site-muted: #5f6f86;
    --site-border: rgba(13, 27, 62, 0.08);
    --site-shadow: 0 20px 44px rgba(13, 27, 62, 0.1);
    --theme-body-background:
        radial-gradient(circle at top right, rgba(230, 57, 70, 0.08), transparent 22%),
        linear-gradient(180deg, #f7faff 0%, #eef3fb 100%);
    --theme-body-color: #0f1728;
    --theme-text: #0f1728;
    --theme-heading: #07111f;
    --theme-muted: #5f6f86;
    --theme-border: rgba(13, 27, 62, 0.08);
    --theme-border-soft: rgba(13, 27, 62, 0.06);
    --theme-panel-bg: rgba(255, 255, 255, 0.92);
    --theme-panel-bg-soft: rgba(255, 255, 255, 0.96);
    --theme-panel-bg-strong: rgba(255, 255, 255, 0.98);
    --theme-header-bg: rgba(242, 246, 252, 0.82);
    --theme-breadcrumb-bg: rgba(255, 255, 255, 0.65);
    --theme-breadcrumb-border: rgba(13, 27, 62, 0.06);
    --theme-shadow: 0 20px 44px rgba(13, 27, 62, 0.1);
}

body.site-body {
    background: var(--theme-body-background);
    color: var(--theme-body-color);
    transition: background var(--site-transition), color var(--site-transition);
}

.site-header {
    background: var(--theme-header-bg);
}

.site-nav-shell,
.site-dropdown-menu,
.site-mega-menu,
.site-mega-link,
.hero-panel,
.metric-card,
.soft-card,
.accordion,
.footer-shell,
.cookie-banner-shell,
.quick-action-panel,
.page-intro-shell,
.legal-content-shell,
.plain-text-block,
.media-text-block,
.duty-contact-card,
.duty-system-card,
.duty-branch-card,
.site-systems-offcanvas {
    border-color: var(--theme-border) !important;
    box-shadow: var(--theme-shadow) !important;
}

.site-nav-shell,
.site-dropdown-menu,
.site-mega-menu,
.hero-panel,
.metric-card,
.soft-card,
.accordion,
.footer-shell,
.cookie-banner-shell,
.quick-action-panel,
.page-intro-shell,
.legal-content-shell,
.plain-text-block,
.media-text-block,
.duty-contact-card,
.duty-system-card,
.duty-branch-card,
.site-systems-offcanvas {
    background: var(--theme-panel-bg) !important;
}

.site-mega-link {
    background: var(--theme-panel-bg-soft) !important;
}

.site-mega-submenu {
    border-top-color: var(--theme-border) !important;
}

.site-dropdown-submenu {
    border-left-color: var(--theme-border) !important;
}

.site-dropdown-toggle {
    color: var(--theme-muted) !important;
}

.site-dropdown-toggle:hover,
.site-dropdown-toggle:focus-visible {
    background: color-mix(in srgb, var(--theme-accent) 10%, transparent) !important;
    color: var(--theme-heading) !important;
}

.site-dropdown-subitem {
    color: var(--theme-muted) !important;
}

.site-dropdown-subitem:hover,
.site-dropdown-subitem:focus-visible {
    color: var(--theme-heading) !important;
}

.site-mega-submenu-link {
    color: var(--theme-muted) !important;
}

.site-mega-submenu-link:hover,
.site-mega-submenu-link:focus-visible {
    color: var(--theme-heading) !important;
}

.site-breadcrumb-section {
    background: var(--theme-breadcrumb-bg) !important;
    border-bottom-color: var(--theme-breadcrumb-border) !important;
}

.site-wordmark,
.site-nav-link,
.site-dropdown-menu .dropdown-item,
.site-mega-link strong,
.footer-heading,
.cookie-banner-copy strong,
.page-intro-shell h1,
.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4,
.duty-contact-card h2,
.duty-system-card strong,
.duty-branch-name,
.site-systems-offcanvas .offcanvas-title,
.site-system-group-header strong {
    color: var(--theme-heading) !important;
}

.text-secondary,
.site-topbar-note-text,
.footer-copy,
.footer-link,
.footer-meta,
.soft-card p,
.soft-card li,
.metric-card span,
.hero-panel .lead,
.cookie-banner-copy p,
.site-breadcrumb .breadcrumb-item,
.site-breadcrumb .breadcrumb-item.active,
.site-breadcrumb .breadcrumb-item + .breadcrumb-item::before,
.legal-content,
.duty-copy,
.duty-system-card p,
.duty-system-url,
.duty-branch-sub,
.duty-branch-row,
.duty-branch-clock,
.duty-contact-label,
.duty-contact-value,
.duty-contact-value a,
.site-system-group-header p,
.site-system-chip,
.site-systems-kicker,
.accordion-body {
    color: var(--theme-muted) !important;
}

.site-nav-link:hover,
.site-nav-link:focus-visible,
.site-dropdown-menu .dropdown-item:hover,
.site-dropdown-menu .dropdown-item:focus-visible,
.site-breadcrumb a,
.site-breadcrumb a:hover,
.site-breadcrumb a:focus-visible,
.footer-link:hover,
.footer-link:focus-visible,
.soft-card a,
.soft-card a:hover,
.soft-card a:focus-visible,
.duty-contact-value a:hover,
.duty-contact-value a:focus-visible,
.site-system-chip:hover,
.site-system-chip:focus-visible,
.site-phone-link,
.site-phone-link:hover,
.site-phone-link:focus-visible {
    color: var(--theme-heading) !important;
}

.btn-outline-dark {
    border-color: var(--theme-border) !important;
    color: var(--theme-heading) !important;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus-visible {
    background: var(--theme-heading) !important;
    color: var(--theme-panel-bg-strong) !important;
}

.accordion {
    --bs-accordion-color: var(--theme-heading);
    --bs-accordion-bg: var(--theme-panel-bg);
    --bs-accordion-border-color: var(--theme-border);
    --bs-accordion-btn-color: var(--theme-heading);
    --bs-accordion-btn-bg: var(--theme-panel-bg);
    --bs-accordion-active-color: var(--theme-heading);
    --bs-accordion-active-bg: rgba(209, 0, 0, 0.08);
    --bs-accordion-body-color: var(--theme-muted);
}

.quick-action-dark {
    background: var(--theme-panel-bg-strong);
    color: var(--theme-heading);
}

.site-topbar-phone,
.site-systems-trigger,
.site-theme-toggle {
    border-color: var(--theme-border);
    background: var(--theme-panel-bg);
    color: var(--theme-heading);
}

.site-topbar-phone:hover,
.site-topbar-phone:focus-visible,
.site-systems-trigger:hover,
.site-systems-trigger:focus-visible,
.site-theme-toggle:hover,
.site-theme-toggle:focus-visible {
    border-color: var(--theme-border);
    background: var(--theme-panel-bg-soft);
}

.site-topbar-note-label {
    color: var(--theme-heading);
}

html[data-theme="light"] .site-radar-canvas {
    opacity: 0.08;
}

html[data-theme="light"] .site-stripe {
    opacity: 0.14;
}

html[data-theme="light"] .site-stripe-two {
    opacity: 0.06;
}

html[data-theme="light"] .site-stripe-three {
    opacity: 0.04;
}

html[data-theme="light"] .site-systems-offcanvas {
    background: rgba(250, 252, 255, 0.98) !important;
}

html[data-theme="light"] .site-system-chip {
    background: rgba(255, 255, 255, 0.92);
}

html[data-theme="light"] .site-system-chip-arrow {
    color: rgba(15, 23, 40, 0.32);
}

@media (max-width: 767.98px) {
    .site-theme-toggle {
        width: 100%;
        justify-content: center;
    }
}

/* Light mode visibility corrections */
html[data-theme="light"] .site-radar-canvas {
    opacity: 0.24;
}

html[data-theme="light"] .site-stripe {
    opacity: 0.18;
}

html[data-theme="light"] .site-stripe-two {
    opacity: 0.09;
}

html[data-theme="light"] .site-stripe-three {
    opacity: 0.06;
}

html[data-theme="light"] .hero-panel .display-4,
html[data-theme="light"] .section-heading .display-6,
html[data-theme="light"] .page-intro-shell .display-5,
html[data-theme="light"] .legal-content h1,
html[data-theme="light"] .legal-content h2,
html[data-theme="light"] .legal-content h3,
html[data-theme="light"] .legal-content h4,
html[data-theme="light"] .metric-card strong,
html[data-theme="light"] .soft-card h3,
html[data-theme="light"] .blog-card-title,
html[data-theme="light"] .blog-content h2,
html[data-theme="light"] .blog-content h3,
html[data-theme="light"] .footer-heading,
html[data-theme="light"] .site-system-group-header strong,
html[data-theme="light"] .site-systems-offcanvas .offcanvas-title,
html[data-theme="light"] .duty-title,
html[data-theme="light"] .duty-section-header h2,
html[data-theme="light"] .duty-contact-card h2,
html[data-theme="light"] .duty-system-card strong,
html[data-theme="light"] .duty-branch-name {
    color: #0b1320 !important;
}

html[data-theme="light"] .section-kicker,
html[data-theme="light"] .site-section-kicker {
    color: #d10000 !important;
    border-color: rgba(209, 0, 0, 0.22) !important;
    background: rgba(209, 0, 0, 0.06) !important;
}

html[data-theme="light"] .section-kicker::before,
html[data-theme="light"] .site-section-kicker::before {
    background: #d10000 !important;
    box-shadow: 0 0 0 0.35rem rgba(209, 0, 0, 0.08) !important;
}

html[data-theme="light"] .hero-panel .text-danger,
html[data-theme="light"] .site-wordmark-accent,
html[data-theme="light"] .quick-action-panel strong,
html[data-theme="light"] .quick-action-panel-label,
html[data-theme="light"] .quick-action-panel-copy a,
html[data-theme="light"] .site-nav-badge {
    color: #d10000 !important;
}

html[data-theme="light"] .metric-card span,
html[data-theme="light"] .soft-card p,
html[data-theme="light"] .soft-card li,
html[data-theme="light"] .hero-panel .lead,
html[data-theme="light"] .page-intro-copy,
html[data-theme="light"] .blog-content,
html[data-theme="light"] .blog-content p,
html[data-theme="light"] .blog-content li,
html[data-theme="light"] .footer-copy,
html[data-theme="light"] .footer-link,
html[data-theme="light"] .footer-meta,
html[data-theme="light"] .site-footer-bottom-text,
html[data-theme="light"] .cookie-banner-copy p,
html[data-theme="light"] .accordion-body,
html[data-theme="light"] .duty-copy,
html[data-theme="light"] .duty-system-card p,
html[data-theme="light"] .duty-system-url,
html[data-theme="light"] .duty-branch-sub,
html[data-theme="light"] .duty-branch-row,
html[data-theme="light"] .duty-branch-clock,
html[data-theme="light"] .duty-contact-label,
html[data-theme="light"] .duty-contact-value,
html[data-theme="light"] .duty-contact-value a,
html[data-theme="light"] .site-topbar-note-text,
html[data-theme="light"] .site-system-chip,
html[data-theme="light"] .site-systems-kicker,
html[data-theme="light"] .incident-helper-text,
html[data-theme="light"] .incident-upload-label,
html[data-theme="light"] .incident-consent-label {
    color: #5f6f86 !important;
}

html[data-theme="light"] .soft-card a,
html[data-theme="light"] .blog-card-title:hover,
html[data-theme="light"] .blog-card-title:focus-visible,
html[data-theme="light"] .footer-link:hover,
html[data-theme="light"] .footer-link:focus-visible,
html[data-theme="light"] .duty-contact-value a:hover,
html[data-theme="light"] .duty-contact-value a:focus-visible {
    color: #d10000 !important;
}

html[data-theme="light"] .site-nav-link,
html[data-theme="light"] .site-phone-link,
html[data-theme="light"] .site-systems-trigger,
html[data-theme="light"] .site-theme-toggle,
html[data-theme="light"] .site-topbar-note-label,
html[data-theme="light"] .accordion-button,
html[data-theme="light"] .cookie-banner-copy strong,
html[data-theme="light"] .incident-form-label,
html[data-theme="light"] .incident-radio,
html[data-theme="light"] .incident-input,
html[data-theme="light"] .incident-textarea,
html[data-theme="light"] .incident-form-shell .form-control,
html[data-theme="light"] .incident-form-shell .form-select {
    color: #0f1728 !important;
}

html[data-theme="light"] .incident-form-shell input::placeholder,
html[data-theme="light"] .incident-form-shell textarea::placeholder,
html[data-theme="light"] .incident-form-shell .form-control::placeholder {
    color: rgba(95, 111, 134, 0.8) !important;
    opacity: 1 !important;
}

html[data-theme="light"] .incident-form-shell input,
html[data-theme="light"] .incident-form-shell textarea,
html[data-theme="light"] .incident-form-shell select,
html[data-theme="light"] .form-control,
html[data-theme="light"] .form-select {
    background: rgba(255, 255, 255, 0.96) !important;
    border-color: rgba(13, 27, 62, 0.12) !important;
    color: #0f1728 !important;
}

html[data-theme="light"] .incident-form-shell input:focus,
html[data-theme="light"] .incident-form-shell textarea:focus,
html[data-theme="light"] .incident-form-shell select:focus,
html[data-theme="light"] .form-control:focus,
html[data-theme="light"] .form-select:focus {
    background: #ffffff !important;
    color: #0f1728 !important;
}

html[data-theme="light"] .incident-form-shell .invalid-feedback,
html[data-theme="light"] .text-danger {
    color: #c1121f !important;
}

html[data-theme="light"] .text-white,
html[data-theme="light"] .text-white-50,
html[data-theme="light"] .text-light {
    color: #0f1728 !important;
}

html[data-theme="light"] .btn-outline-light {
    border-color: rgba(13, 27, 62, 0.12) !important;
    color: #0f1728 !important;
}

html[data-theme="light"] .btn-outline-light:hover,
html[data-theme="light"] .btn-outline-light:focus-visible {
    background: #0f1728 !important;
    color: #ffffff !important;
}

html[data-theme="light"] .hero-panel,
html[data-theme="light"] .metric-card,
html[data-theme="light"] .soft-card,
html[data-theme="light"] .accent-panel,
html[data-theme="light"] .footer-shell,
html[data-theme="light"] .page-intro-shell,
html[data-theme="light"] .legal-content-shell,
html[data-theme="light"] .blog-featured-shell,
html[data-theme="light"] .blog-detail-shell,
html[data-theme="light"] .blog-empty-state,
html[data-theme="light"] .blog-featured-card,
html[data-theme="light"] .blog-card,
html[data-theme="light"] .blog-sidebar .soft-card,
html[data-theme="light"] .incident-form-shell,
html[data-theme="light"] .contact-card,
html[data-theme="light"] .cookie-banner-shell,
html[data-theme="light"] .quick-action-panel {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(13, 27, 62, 0.08) !important;
    box-shadow: 0 20px 44px rgba(13, 27, 62, 0.1) !important;
}

html[data-theme="light"] .hero-panel,
html[data-theme="light"] .accent-panel,
html[data-theme="light"] .page-intro-shell {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.94)),
        radial-gradient(circle at top right, rgba(209, 0, 0, 0.08), transparent 34%) !important;
}

html[data-theme="light"] .side-panel {
    background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(12, 12, 12, 0.92)),
        radial-gradient(circle at top right, rgba(209, 0, 0, 0.12), transparent 34%) !important;
}

html[data-theme="light"] .cta-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.94)),
        radial-gradient(circle at top right, rgba(209, 0, 0, 0.08), transparent 34%) !important;
    border-color: rgba(13, 27, 62, 0.08) !important;
    box-shadow: 0 20px 44px rgba(13, 27, 62, 0.1) !important;
}

html[data-theme="light"] .side-panel .text-white,
html[data-theme="light"] .side-panel h2,
html[data-theme="light"] .side-panel strong,
html[data-theme="light"] .side-panel .btn-outline-light {
    color: #f5f5f5 !important;
}

html[data-theme="light"] .side-panel .text-white-50,
html[data-theme="light"] .side-panel p,
html[data-theme="light"] .side-panel li {
    color: rgba(245, 245, 245, 0.72) !important;
}

html[data-theme="light"] .side-panel .text-warning-emphasis,
html[data-theme="light"] .cta-panel .text-warning-emphasis {
    color: #f6c453 !important;
}

html[data-theme="light"] .cta-panel .text-white,
html[data-theme="light"] .cta-panel h2,
html[data-theme="light"] .cta-panel strong {
    color: #0b1320 !important;
}

html[data-theme="light"] .cta-panel .text-white-50,
html[data-theme="light"] .cta-panel p,
html[data-theme="light"] .cta-panel li {
    color: #5f6f86 !important;
}

.shop-storefront-shell,
.shop-summary-card {
    border: 1px solid var(--site-border);
    border-radius: 1.75rem;
    background: rgba(16, 18, 28, 0.86);
    box-shadow: var(--site-shadow);
}

.shop-toolbar {
    display: grid;
    gap: 1.5rem;
}

.shop-category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.shop-category-chip,
.shop-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.25rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(94, 117, 214, 0.3);
    background: rgba(48, 78, 167, 0.22);
    color: #eef2ff;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform var(--site-transition), border-color var(--site-transition), background var(--site-transition);
}

.shop-category-chip:hover,
.shop-category-chip:focus-visible {
    color: #fff;
    transform: translateY(-1px);
    border-color: rgba(113, 144, 255, 0.5);
}

.shop-category-chip.is-active {
    background: rgba(209, 0, 0, 0.2);
    border-color: rgba(209, 0, 0, 0.45);
}

.shop-badge-secondary {
    background: rgba(58, 87, 171, 0.16);
    border-color: rgba(58, 87, 171, 0.3);
}

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

.shop-product-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100%;
    padding: 1.4rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(20, 22, 33, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.shop-product-title {
    margin: 0;
    color: var(--site-text);
    font-size: 1.55rem;
    font-weight: 800;
}

.shop-product-summary {
    margin: 0.7rem 0 0;
    color: rgba(233, 238, 247, 0.86);
    font-size: 1.04rem;
    line-height: 1.6;
}

.shop-price-block {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: 0.9rem;
}

.shop-price {
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.shop-price-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.shop-option-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 1.25rem;
    margin-top: 1rem;
}

.shop-option-row {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: rgba(240, 244, 252, 0.86);
    font-size: 0.96rem;
    line-height: 1.45;
}

.shop-option-marker {
    width: 0.45rem;
    height: 0.45rem;
    margin-top: 0.48rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 0 0 0.15rem rgba(255, 255, 255, 0.08);
}

.shop-audience-box {
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid rgba(71, 98, 195, 0.26);
    background: rgba(26, 36, 72, 0.76);
}

.shop-audience-box h4 {
    margin: 0 0 0.75rem;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
}

.shop-audience-box ul {
    margin: 0;
    padding-left: 1.15rem;
    color: rgba(235, 240, 249, 0.9);
}

.shop-audience-box li + li {
    margin-top: 0.35rem;
}

.shop-product-button {
    min-width: 10rem;
    border-radius: 999px;
    font-weight: 800;
}

.shop-product-link {
    color: rgba(240, 244, 252, 0.78);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
}

.shop-product-link:hover,
.shop-product-link:focus-visible {
    color: #fff;
}

.shop-add-to-cart-form {
    display: grid;
    gap: 0.85rem;
}

.shop-addon-list {
    display: grid;
    gap: 0.75rem;
}

.shop-addon-title {
    color: var(--site-text);
    font-size: 0.96rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.shop-addon-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.shop-addon-item input {
    margin-top: 0.2rem;
}

.shop-addon-item strong,
.shop-live-total strong {
    display: block;
    color: var(--site-text);
}

.shop-addon-item small {
    display: block;
    margin-top: 0.2rem;
    color: var(--site-muted);
}

.shop-live-total,
.shop-summary-line,
.shop-summary-total,
.shop-checkout-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.shop-live-total {
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid rgba(209, 0, 0, 0.16);
    background: rgba(209, 0, 0, 0.08);
    color: var(--site-text);
}

.shop-quantity-row {
    display: grid;
    gap: 0.5rem;
}

.shop-cart-table th,
.shop-cart-table td {
    background: transparent;
    color: var(--site-text);
    border-color: var(--site-border);
    vertical-align: middle;
}

.shop-cart-table thead th {
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--site-muted);
}

.shop-quantity-form {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.shop-quantity-form .form-control {
    width: 5.5rem;
}

.shop-summary-line {
    padding: 0.4rem 0;
    color: var(--site-muted);
}

.shop-summary-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--site-border);
    color: var(--site-text);
    font-size: 1.08rem;
    font-weight: 800;
}

.shop-checkout-items {
    display: grid;
    gap: 0.9rem;
}

.shop-checkout-item {
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--site-border);
}

.shop-summary-help {
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid rgba(71, 98, 195, 0.2);
    background: rgba(26, 36, 72, 0.2);
    color: var(--site-muted);
}

.shop-payment-methods {
    display: grid;
    gap: 0.75rem;
}

.shop-payment-option,
.shop-consent-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--site-text);
}

.shop-payment-option input,
.shop-consent-row input {
    margin-top: 0.2rem;
}

.shop-payment-option.is-disabled {
    opacity: 0.6;
}

.shop-subscription-benefit-box strong {
    display: block;
    color: var(--site-text);
    font-size: 1.05rem;
}

.shop-subscription-benefit-box [data-shop-subscription-benefit-text] {
    color: var(--site-muted);
}

.shop-cart-section .btn-danger,
.shop-checkout-section .btn-danger,
.shop-order-success-section .btn-danger,
.shop-detail-section .btn-danger {
    color: #fff !important;
    border-color: transparent;
}

.shop-cart-section a.btn-danger:link,
.shop-cart-section a.btn-danger:visited,
.shop-checkout-section a.btn-danger:link,
.shop-checkout-section a.btn-danger:visited,
.shop-order-success-section a.btn-danger:link,
.shop-order-success-section a.btn-danger:visited,
.shop-detail-section a.btn-danger:link,
.shop-detail-section a.btn-danger:visited {
    color: #fff !important;
}

.shop-cart-section .btn-danger:hover,
.shop-cart-section .btn-danger:focus-visible,
.shop-checkout-section .btn-danger:hover,
.shop-checkout-section .btn-danger:focus-visible,
.shop-order-success-section .btn-danger:hover,
.shop-order-success-section .btn-danger:focus-visible,
.shop-detail-section .btn-danger:hover,
.shop-detail-section .btn-danger:focus-visible,
.shop-cart-section a.btn-danger:hover,
.shop-cart-section a.btn-danger:focus-visible,
.shop-checkout-section a.btn-danger:hover,
.shop-checkout-section a.btn-danger:focus-visible,
.shop-order-success-section a.btn-danger:hover,
.shop-order-success-section a.btn-danger:focus-visible,
.shop-detail-section a.btn-danger:hover,
.shop-detail-section a.btn-danger:focus-visible {
    color: #fff !important;
}

.shop-detail-options {
    display: grid;
    gap: 0.85rem;
}

.shop-detail-option {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(240, 244, 252, 0.92);
}

.shop-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.shop-related-card {
    display: grid;
    gap: 0.35rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--site-text);
    text-decoration: none;
}

.shop-related-card:hover,
.shop-related-card:focus-visible {
    color: #fff;
    border-color: rgba(209, 0, 0, 0.3);
}

.shop-related-category {
    color: var(--site-muted);
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

html[data-theme="light"] .shop-storefront-shell,
html[data-theme="light"] .shop-summary-card,
html[data-theme="light"] .shop-product-card,
html[data-theme="light"] .shop-related-card,
html[data-theme="light"] .shop-detail-option,
html[data-theme="light"] .shop-addon-item,
html[data-theme="light"] .shop-payment-option,
html[data-theme="light"] .shop-consent-row {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 255, 0.96) 100%);
    border-color: rgba(25, 43, 84, 0.09);
    box-shadow: 0 18px 50px rgba(22, 39, 79, 0.08);
}

html[data-theme="light"] .shop-product-title,
html[data-theme="light"] .shop-price,
html[data-theme="light"] .shop-audience-box h4,
html[data-theme="light"] .shop-related-card {
    color: #14233d;
}

html[data-theme="light"] .shop-product-summary,
html[data-theme="light"] .shop-option-row,
html[data-theme="light"] .shop-price-note,
html[data-theme="light"] .shop-audience-box ul,
html[data-theme="light"] .shop-detail-option,
html[data-theme="light"] .shop-related-category,
html[data-theme="light"] .shop-summary-line,
html[data-theme="light"] .shop-summary-help,
html[data-theme="light"] .shop-addon-item small {
    color: #5b6d8a;
}

html[data-theme="light"] .shop-audience-box {
    background: linear-gradient(180deg, rgba(238, 244, 255, 0.96) 0%, rgba(231, 238, 251, 0.96) 100%);
    border-color: rgba(90, 114, 194, 0.18);
}

html[data-theme="light"] .shop-category-chip,
html[data-theme="light"] .shop-badge {
    background: rgba(221, 230, 250, 0.95);
    border-color: rgba(110, 132, 206, 0.26);
    color: #4f6387;
}

html[data-theme="light"] .shop-category-chip.is-active {
    background: rgba(209, 0, 0, 0.08);
    border-color: rgba(209, 0, 0, 0.26);
    color: #c12a22;
}

html[data-theme="light"] .shop-category-chip:hover,
html[data-theme="light"] .shop-category-chip:focus-visible {
    color: #14233d;
    border-color: rgba(90, 114, 194, 0.34);
}

html[data-theme="light"] .shop-badge-secondary {
    background: rgba(228, 234, 248, 0.96);
    border-color: rgba(114, 133, 198, 0.22);
}

html[data-theme="light"] .shop-option-marker {
    background: rgba(60, 80, 132, 0.92);
    box-shadow: 0 0 0 0.15rem rgba(91, 109, 167, 0.12);
}

html[data-theme="light"] .shop-live-total {
    background: rgba(209, 0, 0, 0.05);
    border-color: rgba(209, 0, 0, 0.15);
}

html[data-theme="light"] .shop-summary-help {
    background: rgba(236, 241, 250, 0.96);
    border-color: rgba(90, 114, 194, 0.12);
}

html[data-theme="light"] .shop-subscription-benefit-box strong {
    color: #14233d;
}

html[data-theme="light"] .shop-product-link {
    color: #566a8f;
}

html[data-theme="light"] .shop-product-link:hover,
html[data-theme="light"] .shop-product-link:focus-visible {
    color: #14233d;
}

.content-listing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.content-listing-copy {
    max-width: 42rem;
    color: var(--site-text-soft);
    font-size: 1rem;
    line-height: 1.75;
}

.content-listing-controls {
    display: inline-flex;
    gap: 0.6rem;
}

.content-listing-control {
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--site-text);
    font-size: 1.35rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.content-listing-control:hover,
.content-listing-control:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(209, 0, 0, 0.35);
    background: rgba(209, 0, 0, 0.08);
}

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

.content-listing-carousel {
    overflow: hidden;
}

.content-listing-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 2rem) / 3);
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
}

.content-listing-track::-webkit-scrollbar {
    display: none;
}

.content-listing-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100%;
    padding: 1.35rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
    scroll-snap-align: start;
}

.content-listing-card-blog {
    background: rgba(255, 255, 255, 0.04);
}

.content-listing-card-shop {
    background: rgba(20, 22, 33, 0.9);
}

.content-listing-chip {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(95, 123, 210, 0.2);
    background: rgba(58, 87, 171, 0.12);
    color: var(--site-text-soft);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.content-listing-chip-secondary {
    background: rgba(58, 87, 171, 0.2);
    border-color: rgba(58, 87, 171, 0.3);
}

.content-listing-meta {
    color: var(--site-muted);
    font-size: 0.86rem;
    font-weight: 600;
}

.content-listing-title {
    margin: 0;
    color: var(--site-text);
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.2;
}

.content-listing-summary {
    margin: 0;
    color: var(--site-text-soft);
    font-size: 1rem;
    line-height: 1.7;
}

.content-listing-price-block {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: 0.25rem;
}

.content-listing-price {
    color: #fff;
    font-size: 1.95rem;
    font-weight: 900;
    line-height: 1;
}

.content-listing-price-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

html[data-theme="light"] .content-listing-control,
html[data-theme="light"] .content-listing-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 255, 0.96) 100%);
    border-color: rgba(25, 43, 84, 0.09);
    box-shadow: 0 18px 50px rgba(22, 39, 79, 0.08);
}

html[data-theme="light"] .content-listing-title,
html[data-theme="light"] .content-listing-price {
    color: #14233d;
}

html[data-theme="light"] .content-listing-copy,
html[data-theme="light"] .content-listing-summary,
html[data-theme="light"] .content-listing-meta,
html[data-theme="light"] .content-listing-price-note {
    color: #5b6d8a;
}

html[data-theme="light"] .content-listing-chip {
    background: rgba(221, 230, 250, 0.95);
    border-color: rgba(110, 132, 206, 0.26);
    color: #4f6387;
}

@media (max-width: 1199.98px) {
    .shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .content-listing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .content-listing-track {
        grid-auto-columns: calc((100% - 1rem) / 2);
    }
}

@media (max-width: 767.98px) {
    .shop-product-grid {
        grid-template-columns: 1fr;
    }

    .shop-option-grid {
        grid-template-columns: 1fr;
    }

    .shop-product-link {
        width: 100%;
    }

    .content-listing-grid {
        grid-template-columns: 1fr;
    }

    .content-listing-track {
        grid-auto-columns: 88%;
    }
}

.document-card {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    height: 100%;
    padding: 1.5rem 1.7rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    background: rgba(20, 20, 31, 0.9);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.document-card-meta {
    color: #d8c6c6;
    font-size: 0.82rem;
    font-weight: 600;
}

.document-card-title {
    margin: 0;
    color: #f5f5f5;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.2;
    font-weight: 700;
}

.document-card-content {
    color: #c6d0ea;
    font-size: 0.98rem;
    line-height: 1.85;
}

.document-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: auto;
}

.document-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.8rem 1.15rem;
    border-radius: 1rem;
    border: 1px solid transparent;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.document-card-action:hover,
.document-card-action:focus-visible {
    transform: translateY(-1px);
    color: #fff;
}

.document-card-action.is-danger {
    background: linear-gradient(180deg, #df1208, #c60300);
    border-color: rgba(255, 59, 48, 0.3);
    box-shadow: 0 14px 28px rgba(198, 3, 0, 0.24);
}

.document-card-action.is-indigo {
    background: rgba(42, 57, 124, 0.82);
    border-color: rgba(88, 104, 198, 0.38);
}

.document-card-action.is-success {
    background: rgba(15, 85, 67, 0.82);
    border-color: rgba(52, 211, 153, 0.38);
    color: #4ff3bc;
}

.document-card-action.is-success:hover,
.document-card-action.is-success:focus-visible {
    color: #7ff8d0;
}

.document-card-action.is-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.18);
    color: #f5f5f5;
}

html[data-theme="light"] .document-card {
    border-color: rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .document-card-meta {
    color: #8d5960;
}

html[data-theme="light"] .document-card-title {
    color: #101827;
}

html[data-theme="light"] .document-card-content {
    color: #5a6d8d;
}

html[data-theme="light"] .document-card-action.is-danger {
    color: #fff;
}

html[data-theme="light"] .document-card-action.is-indigo {
    background: rgba(46, 68, 148, 0.9);
    border-color: rgba(67, 92, 191, 0.34);
}

html[data-theme="light"] .document-card-action.is-success {
    background: rgba(17, 111, 84, 0.12);
    border-color: rgba(17, 111, 84, 0.28);
    color: #116f54;
}

html[data-theme="light"] .document-card-action.is-outline {
    border-color: rgba(15, 23, 42, 0.12);
    color: #101827;
}

@media (max-width: 767.98px) {
    .feature-slider-shell {
        height: auto;
        min-height: 0;
        border-radius: 1.5rem;
    }

    .feature-slider-track {
        min-height: 0;
    }

    .feature-slide {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .feature-slide-copy {
        padding: 1.5rem 1.25rem 0.85rem;
        gap: 1.2rem;
    }

    .feature-slide-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .feature-slide-description {
        max-width: none;
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .feature-slide-actions .btn {
        width: 100%;
    }

    .feature-slide-media {
        padding: 0 1.25rem 1.2rem;
    }

    .feature-slide-main-visual {
        min-height: 18rem;
        border-radius: 1.35rem;
    }

    .feature-slide-floating-card {
        top: auto;
        right: 1rem;
        bottom: 1rem;
        min-width: 10rem;
        max-width: 12rem;
        padding: 0.85rem 0.95rem;
    }

    .feature-slider-index {
        right: 1rem;
        top: 1rem;
        font-size: 0.78rem;
    }

    .feature-slider-footer {
        position: static;
        justify-content: space-between;
        margin-top: 0;
        padding: 0 1.25rem 1.25rem;
        pointer-events: auto;
    }

    .feature-slider-dots {
        gap: 0.45rem;
    }

    .feature-slider-arrow {
        width: 2.9rem;
        height: 2.9rem;
    }

    .document-card {
        padding: 1.25rem 1.2rem;
        border-radius: 1.35rem;
    }

    .document-card-actions {
        gap: 0.65rem;
    }

    .document-card-action {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .feature-slider-shell {
        min-height: 38rem;
        height: auto;
    }

    .feature-slide {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .feature-slide-copy {
        padding: 2rem 2rem 1rem;
        max-width: 42rem;
    }

    .feature-slide-media {
        padding: 0 2rem 4.75rem;
    }

    .feature-slide-main-visual {
        min-height: 25rem;
    }

    .feature-slider-footer {
        right: 1.4rem;
        bottom: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .site-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer-bottom-media {
        width: 100%;
        justify-content: flex-start;
    }

    .site-footer-bottom-media img {
        max-height: 56px;
    }
}
