﻿/* Custom Styles */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap");

/* Global Page Styles */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

body {
    background-color: #f8f9face; /* Light grey */
    color: #212529; /* Default text color */
    font-family: "IBM Plex Sans", Arial, sans-serif;
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    flex:1;
    font-weight: 400;
}


/* Hero Section Styles */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers content */
    width: 100%;
    max-width: 1300px; /* Adjust based on your design */
    margin: 0 auto;
    margin-top: -15px;
}

.hero-image {
    background: url('/static/images/fasma_logo1.jpg') no-repeat center center;
    background-size: contain; /* Ensures the entire image is fully visible */
    background-position: center;
    
    width: 100%; /* Adjust width as needed */
    height: 400px; /* Matches the image height */   
    
}

@media (max-width: 600px) {
    .hero{
        margin-top: -160px;
        margin-bottom: -120px;
    }
    .hero-image {
        margin-bottom: -50px; /* Reduce space on small screens */
    }

}

@media (min-width:601px) and (max-width: 750px) {
    .hero{
        margin-top: -160px;
        margin-bottom: -70px;
    }
    .hero-image {
        margin-bottom: -50px; /* Reduce space on small screens */
    }
}
@media (min-width:751px) and (max-width: 830px) {
    .hero{
        margin-top: -160px;
        margin-bottom: -60px;
    }
    .hero-image {
        margin-bottom: -50px; /* Reduce space on small screens */
    }
}
.card {
    border: none;
    margin-bottom: 20px;
}

.card-title {
    color: black;
    font-weight: bold;
    font-size: 1.25rem;
}

.home-page #categories .card-title {
    color: var(--brand-maroon);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensures it stays above other elements */
    background-color: white; /* Keeps the background visible */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Adds a slight shadow */
    padding: calc(10px + env(safe-area-inset-top, 0px)) 0 10px;
}

.navbar .nav-item.active .nav-link {
    color: rgb(120, 0, 0);
    border-bottom: 2px solid rgb(120, 0, 0);
}


.navbar .nav-link {
    font-size: 1.2rem; /* Increase font size */
    font-weight: 500;  /* Optional: Make the text slightly bolder */
    margin-right: 10px;
}
.admin-nav{
    color:white;
    background-color: red;
}
.navbar .nav-link:hover {
    border-bottom: 2px solid rgb(120, 0, 0);
}

@media (max-width: 991px) { 
    /* Center the logo */
    .navbar-brand {
        margin-right: auto;
        margin-left: 0;
        display: flex;
    }

    /* Ensure the dropdown button is aligned properly */
    .navbar-toggler {
        position: absolute;
        right: 10px; /* Move to right */
        top: 20px;  /* Adjust top spacing */
    }

    /* Center the dropdown menu items */
    .navbar-nav {
        text-align: center;
        width: 100%;
    }

    /* Adjust dropdown item alignment */
    .navbar-nav .nav-item {
        display: block;
        margin: 5px auto;
    }
}


.dropdown-menu .dropdown-item {
    font-size: 1em; 
    font-weight: bold; 
    color: black;
}

.dropdown-menu .dropdown-item:hover {
    background-color: rgb(120, 0, 0);
    color:white;

}

#dropdownMenuButton{
    font-size: 1em;
    font-weight: bold;
    border: none;
    padding-top: 8px;
}

.btn-login-signup {
    background-color: rgb(120, 0, 0); 
    color: white;
    border: none; 
    border-radius: 25px;
    padding: 8px 20px;
}

.btn-login-signup:hover {
    background-color: rgb(84, 0, 0);
    color: white;
    text-decoration: none;
}

/* Card Container */
.card {
    position: relative; /* This allows positioning the button relative to the card */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card Hover Effect*/
.home-page .card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 8px 16px rgb(120, 0, 0);
}

/* Initially hide the Explore button */
.card .category-btn {
    position: absolute;
    bottom: 175px;
    left: 50%;
    transform: translateX(-50%);
    display: none; /* Hide the button by default */
    z-index: 1;
}

/* Show the Explore button on hover over the image */
.card:hover .category-btn {
    display: block; /* Show the button when the card is hovered */
}

/* Card Image Styles */
.card-img-top {
    width: 100%;
    height: 250px; /* Adjust height as needed */
    object-fit: fill;
    object-position: center center;
}

/* Optional: Style for the button */
.category-btn {
    background-color: rgb(120, 0, 0);
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    border-radius: 12px;
    font-size: 16px;
}
.category-btn:hover{
    background-color: rgb(84, 0, 0);
}

.col-md-4 {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 1400px) {
    .home-page #categories .row {
        align-items: flex-start;
    }

    .home-page #categories .col-md-4 {
        display: flex;
    }

    .home-page #categories .col-md-4 > a {
        display: flex;
        width: 100%;
    }

    .home-page #categories .card {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .home-page #categories .card-body {
        min-height: 128px;
    }
}

@media (min-width: 768px) and (max-width: 970px) {
    body.home-page[data-language="el"] #categories .card-body {
        min-height: 184px;
    }
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgb(120, 0, 0) !important;
    font-size: 1rem;
    bottom: 0;
    width: 100%;
    height: auto;
    padding-top: 2px; /* Adjust this value as needed */
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

footer p {
    margin: 1px 0; /* Adjust to bring text slightly up */
}

.container {
    flex: 1; /* Pushes the footer down */
}
.navbar{
    background-color: white;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Section Styles */
.clients-section {
    background-color: #f9f9f9;
    padding: 50px 15px;
    border-radius: 8px;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.section-description {
    font-size: 1.1rem;
    color: #333;
}

/* Category Title */
.category-title {
    font-size: 1.5rem;
    font-weight:lighter;
    color: #555;
}

/* Client Logo Styles */
.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.client-category .client-logo {
    margin: 10px;
    text-align: center;
}

.client-logo img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.btn-primary {
    border-color: transparent !important; /* Removes the blue border */
}

.btn-primary:hover, .btn-primary:focus {
    box-shadow: none !important; /* Removes the blue shadow on hover/focus */
    outline: none !important;   /* Removes the outline */
}

.btn-primary,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.show,
.btn-primary:first-child:active,
:not(.btn-check) + .btn-primary:active {
    background-color: var(--brand-maroon) !important;
    border-color: var(--brand-maroon) !important;
    color: #fff !important;
    box-shadow: none !important;
}

.btn-primary:hover {
    background-color: var(--brand-maroon-dark) !important;
    border-color: var(--brand-maroon-dark) !important;
    color: #fff !important;
}

.btn-outline-primary,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active,
.btn-outline-primary.show,
.btn-outline-primary:first-child:active,
:not(.btn-check) + .btn-outline-primary:active {
    background-color: transparent !important;
    border-color: rgba(120, 0, 0, 0.38) !important;
    color: var(--brand-maroon) !important;
    box-shadow: none !important;
}

.btn-outline-primary:hover {
    background-color: rgba(120, 0, 0, 0.05) !important;
    border-color: var(--brand-maroon) !important;
    color: var(--brand-maroon) !important;
}
.buttons .btn {
    width: 60%; /* Ensures both buttons are the same width */
}

h3{
    color: rgb(120, 0, 0) !important;
}

h2{
    color: rgb(120, 0, 0) !important;
}

h1{
    color: rgb(120, 0, 0) !important;
}

.toggle-description{
    color: rgb(120, 0, 0) !important;
}


.login-btn{
    background-color: red;
}
.login-btn:hover{
    background-color: rgb(120, 0, 0);
}

.apply-btn{
    background-color: rgb(120, 0, 0);
}
.apply-btn:hover{
    background-color: rgb(84, 0, 0);
}

.contact-details p {
    margin-bottom: 5px; /* Adjust spacing between paragraphs */
    line-height: 1.3;   /* Adjust line spacing */
}

.job-posting p{
    margin-bottom: 2px; /* Adjust spacing between paragraphs */
    line-height: 1.3;   /* Adjust line spacing */
}

.fab {
    color: gray;
    transition: color 0.3s ease-in-out;
}

.fab:hover {
    color: rgb(120, 0, 0);
}

.fab.fa-linkedin:hover {
    color: rgb(120, 0, 0); 
}

a {
    text-decoration: none; /* Removes the underline */
    color: inherit; /* Ensures the icons take the intended color */
}

.job-title{
    font-size:0.57cm;
}


.job-posting .btn-link {
    margin-bottom: 0;
    padding: 0px 3px; /* Reduce button padding */
    font-size: 15px; /* Adjust button text size */
}

.text-start{
    margin-top: -12px;
    margin-bottom: -20px;
}
.cookie-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 600px;
}

.cookie-content a {
    color: rgb(241, 0, 0);
    text-decoration: underline;
}

#accept-cookies {
    margin-left: 10px;
}


@media (max-width: 900px) { 
    footer {
        min-height: 80px; /* Adjust height as needed */
        padding: 15px 0; /* Adds vertical space */
    }
    footer p {
        font-size: 0.7rem;
        white-space: normal; /* Allows text to wrap if needed */
        text-align: center; /* Centers the text */
        margin-top: 7px;
    }
    
}

.links a {
    color: rgb(120, 0, 0); /* Default link color */
    text-decoration: underline; /* Underline the links */
}

.policy-content {
    display: none;
}

.arrow {
    font-size: 12px; /* Adjust this value to make the arrow smaller */
}

/* Professional UX Layer */
:root {
    --brand-maroon: rgb(120, 0, 0);
    --brand-maroon-dark: rgb(84, 0, 0);
    --surface: #ffffff;
    --surface-soft: #f8f9face;
    --ink: #212529;
    --muted: #62666b;
    --border-soft: rgba(120, 0, 0, 0.13);
    --shadow-soft: 0 14px 35px rgba(33, 37, 41, 0.08);
    --shadow-strong: 0 22px 50px rgba(120, 0, 0, 0.16);
}

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

body {
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

h1,
h2,
h3,
h4,
h5,
h6,
.card-title,
.service-title,
.job-title,
.clients-page-header h1,
.home-intro-section h1 {
    font-family: "IBM Plex Sans", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0;
}

p,
li,
.card-text,
.service-description,
.section-description,
.job-posting p,
.policy-modal__body,
.contact-details p {
    font-weight: 400;
}

.navbar .nav-link,
.dropdown-menu .dropdown-item,
.btn,
.admin-action-btn,
.job-details-btn,
.job-quick-apply,
.service-detail-toggle,
.client-support-toggle {
    font-family: "IBM Plex Sans", Arial, sans-serif;
    font-weight: 600;
}

.signal-kicker,
.job-filter-label,
.service-detail-toggle span:first-child,
.policy-section__toggle {
    font-weight: 700;
    letter-spacing: 0;
}

body.modal-open {
    overflow: visible;
}

::selection {
    background: rgba(120, 0, 0, 0.18);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 0;
    height: 3px;
    background: var(--brand-maroon);
    box-shadow: 0 0 16px rgba(120, 0, 0, 0.35);
    transition: width 0.12s ease-out;
}

.page-transition {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2600;
    height: 3px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.18s ease;
}

.page-transition.is-active {
    opacity: 1;
}

.page-transition__bar {
    display: block;
    width: 42%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--brand-maroon), transparent);
    animation: pageTransitionRun 0.85s ease-in-out infinite;
}

@keyframes pageTransitionRun {
    from {
        transform: translateX(-110%);
    }
    to {
        transform: translateX(260%);
    }
}

.navbar {
    background-color: #fff !important;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(120, 0, 0, 0.08);
    transition: padding 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    opacity: 1;
}

.navbar.navbar-scrolled {
    padding: calc(7px + env(safe-area-inset-top, 0px)) 0 7px;
    background-color: #fff !important;
    box-shadow: 0 14px 34px rgba(33, 37, 41, 0.09);
}

.navbar-brand img {
    max-height: 40px;
    width: auto;
    transition: transform 0.25s ease, max-height 0.25s ease;
}

.navbar-brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 8px;
    background: transparent;
    transition: padding 0.25s ease;
}

.navbar-brand::after {
    content: "";
    position: absolute;
    inset: auto 12px 3px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(120, 0, 0, 0.32), transparent);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.navbar-brand:hover::after,
.navbar-brand:focus-visible::after {
    opacity: 1;
}

.navbar-scrolled .navbar-brand img {
    max-height: 34px;
}

.navbar-scrolled .navbar-brand {
    padding-top: 4px;
    padding-bottom: 4px;
}

.navbar .nav-link {
    position: relative;
    border-bottom: 0 !important;
    color: #25282c;
    padding: 8px 12px !important;
    border-radius: 999px;
    font-size: 1.05rem;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    right: 16px;
    bottom: 5px;
    left: 16px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(120, 0, 0, 0.62), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

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

.navbar .nav-link:hover,
.navbar .nav-link:focus-visible,
.navbar .nav-item.active .nav-link {
    color: var(--brand-maroon);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus-visible {
    background-color: transparent;
}

.navbar .nav-item.active .nav-link {
    background-color: transparent;
    font-weight: 650;
}

.navbar .navbar-nav {
    align-items: center;
    gap: 2px;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 10px;
}

.language-switcher__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    border: 1px solid rgba(120, 0, 0, 0.18);
    border-radius: 50%;
    background: #fff;
    color: var(--brand-maroon);
    font-size: 1.08rem;
    line-height: 1;
    box-shadow: 0 6px 14px rgba(33, 37, 41, 0.04);
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.language-switcher__button img {
    display: block;
    width: 22px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(33, 37, 41, 0.08);
}

.language-switcher__button:hover,
.language-switcher__button:focus-visible,
.language-switcher__button.is-active {
    border-color: var(--brand-maroon);
    background: rgba(120, 0, 0, 0.055);
    color: var(--brand-maroon);
}

.language-switcher__button:focus-visible {
    outline: 3px solid rgba(120, 0, 0, 0.18);
    outline-offset: 2px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .navbar .container {
        max-width: 100%;
        padding-right: 18px;
        padding-left: 18px;
    }

    .navbar-brand {
        padding-right: 8px;
        padding-left: 0;
    }

    .navbar-brand img {
        max-height: 40px;
    }

    .navbar .navbar-nav {
        gap: 0;
    }

    .navbar .nav-link {
        padding: 8px 8px !important;
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .language-switcher {
        gap: 5px;
        margin-right: 6px;
        margin-left: 6px;
    }

    .language-switcher__button {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        font-size: 1rem;
    }

    .language-switcher__button img {
        width: 21px;
        height: 14px;
    }

    #dropdownMenuButton {
        min-width: 38px;
        height: 38px;
        padding: 0 12px;
    }
}

@media (max-width: 1199px) {
    body {
        padding-top: calc(78px + env(safe-area-inset-top, 0px));
    }

    .navbar .nav-link::after {
        right: 42%;
        left: 42%;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: 14px;
        left: 0;
        width: 100%;
        padding: calc(8px + env(safe-area-inset-top, 0px)) 0 8px;
    }

    .navbar-brand {
        margin-right: auto;
        margin-left: 0;
        padding: 5px 10px;
    }

    .navbar-brand img {
        max-height: 40px;
    }

    .navbar-toggler {
        position: absolute;
        top: calc(12px + env(safe-area-inset-top, 0px));
        right: 0;
        transform: none;
        padding: 8px 10px;
        border: 1px solid rgba(120, 0, 0, 0.18);
        border-radius: 8px;
        min-height: 42px;
    }

    .navbar.navbar-scrolled .navbar-toggler {
        top: calc(7px + env(safe-area-inset-top, 0px));
    }

    .navbar-collapse {
        max-height: calc(100dvh - 84px - env(safe-area-inset-top, 0px));
        overflow-y: auto;
        margin-top: 12px;
        padding: 14px 18px 14px 14px;
        border: 1px solid var(--border-soft);
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 18px 42px rgba(33, 37, 41, 0.12);
    }

    .navbar .navbar-nav {
        gap: 6px;
    }

    .navbar .nav-link {
        width: min(340px, 100%);
        margin: 0 auto;
        text-align: center;
    }

    .navbar .nav-item {
        width: 100%;
    }

    .language-switcher {
        justify-content: center;
        width: 100%;
        margin: 4px 0 8px;
    }

    .language-switcher__button {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
    }

    .language-switcher__button img {
        width: 24px;
        height: 16px;
    }

    .navbar .dropdown {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
}


.navbar-toggler,
.btn,
.dropdown-item,
a,
.policy-item,
.client-logo {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.navbar-toggler {
    overflow: hidden;
    border-color: rgba(120, 0, 0, 0.16);
    transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.18s ease;
}

.navbar-toggler::after {
    content: none;
}

.navbar-toggler-icon {
    position: relative;
    z-index: 1;
    display: block;
    width: 24px;
    height: 18px;
    font-size: 0;
    line-height: 0;
    background-image: none;
    transition: opacity 0.22s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    min-height: 0;
    max-height: 2px;
    box-sizing: border-box;
    border-radius: 999px;
    background: rgba(33, 37, 41, 0.76);
    transition: top 0.22s ease, transform 0.22s ease, background-color 0.22s ease, opacity 0.18s ease;
}

.navbar-toggler-icon::before {
    top: 0;
}

.navbar-toggler-icon span {
    display: block;
    top: 8px;
    height: 2px;
}

.navbar-toggler-icon::after {
    top: 16px;
}

.navbar-toggler:hover,
.navbar-toggler:focus-visible {
    background-color: transparent;
    border-color: rgba(120, 0, 0, 0.22);
    box-shadow: none;
    transform: none;
}

.navbar-toggler:hover .navbar-toggler-icon,
.navbar-toggler:focus-visible .navbar-toggler-icon {
    opacity: 0.9;
}

.navbar-toggler:hover .navbar-toggler-icon::before,
.navbar-toggler:hover .navbar-toggler-icon::after,
.navbar-toggler:hover .navbar-toggler-icon span,
.navbar-toggler:focus-visible .navbar-toggler-icon::before,
.navbar-toggler:focus-visible .navbar-toggler-icon::after,
.navbar-toggler:focus-visible .navbar-toggler-icon span {
    background-color: rgba(120, 0, 0, 0.9);
}

.navbar-toggler[aria-expanded="true"] {
    background-color: transparent;
    border-color: rgba(120, 0, 0, 0.26);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    opacity: 1;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 8px;
    transform: rotate(45deg);
    background-color: rgba(120, 0, 0, 1);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 8px;
    transform: rotate(-45deg);
    background-color: rgba(120, 0, 0, 1);
}

.navbar-toggler:focus,
.btn:focus-visible,
.dropdown-item:focus-visible,
a:focus-visible,
.policy-item:focus-visible,
.client-logo:focus-visible {
    outline: 3px solid rgba(120, 0, 0, 0.28);
    outline-offset: 3px;
    box-shadow: none;
}

.dropdown-menu {
    overflow: hidden;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    padding: 8px;
    box-shadow: var(--shadow-soft);
    transform-origin: top center;
    animation: dropdownFade 0.18s ease both;
}

.dropdown-menu .dropdown-item {
    border-radius: 7px;
    padding: 8px 12px;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
}

#dropdownMenuButton {
    min-width: 42px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-6px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes mobileDropdownFade {
    from {
        opacity: 0;
        transform: translateY(-6px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero {
    position: relative;
    isolation: isolate;
    opacity: 1 !important;
    transform: none !important;
}

.hero::after {
    content: "";
    position: absolute;
    right: 10%;
    bottom: 22px;
    left: 10%;
    z-index: -1;
    height: 36px;
    border-radius: 50%;
    background: rgba(120, 0, 0, 0.11);
    filter: blur(22px);
}

.hero-image {
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    filter: saturate(1.02) contrast(1.02);
    overflow: hidden;
}

.hero-image::after {
    content: "";
    position: absolute;
    top: 8%;
    right: 6%;
    bottom: 8%;
    left: 6%;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 0%, rgba(220, 222, 225, 0.03) 38%, rgba(220, 222, 225, 0.34) 50%, rgba(220, 222, 225, 0.03) 62%, transparent 100%);
    transform: translateX(-120%);
    animation: heroGradientSweep 2.2s ease-out 0.16s both;
}

@keyframes heroGradientSweep {
    from {
        transform: translateX(-120%);
    }
    to {
        transform: translateX(120%);
    }
}

.card,
.job-posting,
.client-logo,
.ratio {
    border: 1px solid var(--border-soft) !important;
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.interactive-surface {
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.26s ease, border-color 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.interactive-surface:hover,
.interactive-surface:focus-within,
.interactive-surface:focus-visible {
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-3px);
}

.card {
    overflow: hidden;
}

.card::before,
.job-posting::before,
.client-logo::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(120, 0, 0, 0.13), transparent 36%);
    transition: opacity 0.2s ease;
}

.job-posting::before {
    display: none;
}

.card:hover::before,
.client-logo:hover::before {
    opacity: 1;
}

.card-img-top {
    transition: transform 0.45s ease, filter 0.35s ease;
}

.card:hover .card-img-top,
.card:focus-within .card-img-top {
    transform: scale(1.035);
    filter: saturate(1.05) contrast(1.02);
}

.home-page .card:hover,
.card:hover,
.card:focus-within,
.job-posting:hover,
.job-posting:focus-within,
.client-logo:hover,
.client-logo:focus-visible {
    box-shadow: var(--shadow-strong);
}

.btn,
.job-filter-select,
.financial-statements-toggle,
.policy-section__toggle,
.quick-actions__item,
.dropdown-item,
.associate-resource-card,
.financial-statement-row,
.trust-metric,
.capability-strip span {
    transition:
        color 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease,
        filter 0.22s ease;
}

.btn,
.apply-btn,
.btn-login-signup,
.financial-statements-toggle,
.job-filter-select {
    position: relative;
    overflow: hidden;
}

.btn::after,
.apply-btn::after,
.btn-login-signup::after,
.financial-statements-toggle::after,
.job-filter-select::after {
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.btn-primary::before,
.apply-btn::before,
.btn-login-signup::before,
.financial-statements-toggle::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.18) 42%, transparent 70%);
    opacity: 0;
    transform: translateX(-120%);
    transition: transform 0.42s ease, opacity 0.22s ease;
}

.btn-primary:hover::before,
.apply-btn:hover::before,
.btn-login-signup:hover::before,
.financial-statements-toggle:hover::before {
    opacity: 1;
    transform: translateX(120%);
}

.btn:active,
.apply-btn:active,
.btn-login-signup:active,
.financial-statements-toggle:active,
.job-filter-select:active,
.quick-actions__item:active {
    transform: translateY(1px) scale(0.99);
}

.form-control,
.form-select,
input,
textarea,
select {
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.form-control:focus,
.form-select:focus,
input:focus,
textarea:focus,
select:focus {
    border-color: rgba(120, 0, 0, 0.35) !important;
    box-shadow: 0 0 0 0.18rem rgba(120, 0, 0, 0.12) !important;
}

.navbar .nav-link {
    transition: color 0.22s ease, transform 0.22s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus-visible {
    transform: translateY(-1px);
}

.dropdown-menu.show {
    animation: dropdownMicroIn 0.18s ease both;
}

@keyframes dropdownMicroIn {
    from {
        opacity: 0;
        transform: translateY(6px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus-visible {
    transform: translateX(2px);
}

.capability-strip span:hover,
.capability-strip span:focus-visible,
.trust-metric:hover,
.trust-metric:focus-within {
    border-color: rgba(120, 0, 0, 0.28);
    box-shadow: var(--shadow-soft);
}

.capability-strip span:hover,
.capability-strip span:focus-visible {
    background: rgba(120, 0, 0, 0.045);
    transform: translateY(-2px);
}

.financial-statement-row:hover,
.financial-statement-row:focus-within,
.policy-section__toggle:hover,
.policy-section__toggle:focus-visible,
.job-filter-chip:hover,
.job-filter-chip:focus-visible {
    transform: translateX(2px);
}

.service-card .card-body {
    display: flex;
    flex-direction: column;
}

.service-insight-trigger {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding: 8px 12px;
    border: 1px solid rgba(120, 0, 0, 0.16);
    border-radius: 999px;
    background: #fff;
    color: var(--brand-maroon);
    font-size: 0.86rem;
    font-weight: 700;
    transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.service-insight-trigger:hover,
.service-insight-trigger:focus-visible {
    border-color: rgba(120, 0, 0, 0.34);
    background: rgba(120, 0, 0, 0.055);
    transform: translateY(-1px);
}

.service-insight-trigger span {
    display: inline-block;
    font-size: 1.05rem;
    line-height: 1;
    transition: transform 0.22s ease;
}

.service-insight-trigger[aria-expanded="true"] span {
    transform: rotate(90deg);
}

.service-insight-panel {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(8px);
    transition:
        max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.26s ease,
        transform 0.32s ease,
        margin-top 0.26s ease;
}

.service-insight-panel[hidden] {
    display: block;
}

.service-card.is-focus-open .service-insight-panel {
    margin-top: 16px;
    opacity: 1;
    transform: translateY(0);
}

.service-insight-panel--visible {
    max-height: none;
    margin-top: auto;
    overflow: visible;
    opacity: 1;
    transform: none;
}

.service-insight-panel > div,
.service-detail-section {
    padding: 10px 0;
    border-top: 1px solid rgba(120, 0, 0, 0.10);
}

.service-insight-panel span,
.service-detail-toggle {
    display: block;
    color: var(--brand-maroon);
    font-size: 0.78rem;
    font-weight: 750;
    text-transform: uppercase;
}

.service-detail-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    text-align: left;
}

.service-detail-toggle:hover,
.service-detail-toggle:focus-visible {
    color: var(--brand-maroon-dark);
}

.service-detail-toggle__arrow {
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.22s ease;
}

.service-detail-toggle[aria-expanded="true"] .service-detail-toggle__arrow {
    transform: rotate(90deg);
}

.service-detail-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(6px);
    transition:
        max-height 0.36s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.24s ease,
        transform 0.28s ease;
}

.service-detail-panel[hidden] {
    display: block;
}

.service-detail-section.is-open .service-detail-panel {
    opacity: 1;
    transform: translateY(0);
}

.service-insight-panel p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.service-insight-list {
    display: grid;
    gap: 7px;
    padding-left: 0;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.48;
    list-style: none;
}

.service-insight-list li {
    position: relative;
    padding-left: 18px;
}

.service-insight-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--brand-maroon);
    box-shadow: 0 0 0 3px rgba(120, 0, 0, 0.08);
    transform: translateY(-50%);
}

@media (min-width: 992px) {
    .services-grid-section .service-title {
        min-height: 3.1rem;
    }

    .services-grid-section .service-description {
        min-height: 15.5rem;
    }
}

@media (min-width: 1200px) {
    .services-grid-section .service-description {
        min-height: 20rem;
    }
}

.job-meta-grid p,
.job-detail-meta p,
.contact-details p {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.job-meta-grid i,
.job-detail-meta i,
.contact-details i,
.policy-item h4 i {
    color: var(--brand-maroon);
    font-size: 0.9rem;
    opacity: 0.84;
}

.job-meta-grid i,
.job-detail-meta i,
.contact-details i {
    flex: 0 0 17px;
    text-align: center;
}

.contact-details .social-icons i {
    flex: initial;
    font-size: 2em;
    opacity: 1;
}

.contact-details .social-icons .fa-linkedin {
    color: #0a66c2;
}

.contact-details .social-icons .fa-facebook {
    color: #1877f2;
}

.contact-details .social-icons a:hover i,
.contact-details .social-icons a:focus-visible i {
    filter: saturate(1.08) brightness(0.92);
}

.policy-item h4 {
    display: flex;
    align-items: center;
    gap: 9px;
}

.policy-item h4 .arrow {
    margin-left: auto;
}

.financial-statement-row > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.financial-statement-row > span::before {
    content: "\f1c1";
    color: var(--brand-maroon);
    font-family: "Font Awesome 6 Free";
    font-size: 0.92rem;
    font-weight: 900;
    opacity: 0.82;
}

.admin-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-action-btn,
.admin-mini-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(120, 0, 0, 0.16);
    border-radius: 999px;
    background: #fff;
    color: var(--brand-maroon);
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.admin-action-btn {
    min-height: 40px;
    padding: 9px 14px;
}

.admin-action-btn--primary {
    background: var(--brand-maroon);
    color: #fff;
    box-shadow: 0 10px 22px rgba(120, 0, 0, 0.16);
}

.admin-action-btn:hover,
.admin-action-btn:focus-visible,
.admin-mini-action:hover,
.admin-mini-action:focus-visible {
    border-color: rgba(120, 0, 0, 0.34);
    background: rgba(120, 0, 0, 0.055);
    color: var(--brand-maroon);
    transform: translateY(-1px);
}

.admin-action-btn--primary:hover,
.admin-action-btn--primary:focus-visible {
    background: var(--brand-maroon-dark);
    color: #fff;
}

.admin-inline-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.job-card__actions .admin-inline-actions {
    justify-content: stretch;
}

.admin-mini-action {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.82rem;
}

.admin-mini-action--danger {
    border-color: rgba(120, 0, 0, 0.18);
    color: #8a1414;
}

.admin-mini-action--danger:hover,
.admin-mini-action--danger:focus-visible {
    border-color: rgba(120, 0, 0, 0.34);
    background: rgba(120, 0, 0, 0.055);
    color: #8a1414;
}

.admin-page-section {
    margin-bottom: 54px;
}

.admin-form-shell {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: 28px;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
        linear-gradient(120deg, rgba(120, 0, 0, 0.045), transparent 58%);
    box-shadow: var(--shadow-soft);
}

.admin-form-shell--wide {
    width: min(980px, 100%);
}

.admin-form-shell--danger {
    border-color: rgba(120, 0, 0, 0.18);
}

.admin-form-shell h1 {
    margin: 4px 0 22px;
    color: var(--brand-maroon);
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    font-weight: 650;
}

.admin-form {
    display: grid;
    gap: 14px;
}

.admin-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-form-grid .mb-3:has(textarea),
.admin-form-actions--full {
    grid-column: 1 / -1;
}

.admin-form .form-label {
    color: var(--ink);
    font-weight: 650;
}

.admin-form textarea.form-control {
    min-height: 130px;
}

.admin-form-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.admin-form-actions .btn {
    min-width: 150px;
}

.admin-warning-panel {
    margin: 14px 0 20px;
    padding: 18px;
    border: 1px solid rgba(120, 0, 0, 0.16);
    border-radius: 8px;
    background: rgba(120, 0, 0, 0.045);
    color: var(--ink);
}

.admin-management-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.admin-management-header h1 {
    margin-bottom: 0;
}

.admin-list {
    display: grid;
    gap: 12px;
}

.admin-list-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(120, 0, 0, 0.10);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(33, 37, 41, 0.045);
}

.admin-list-row strong {
    color: var(--brand-maroon);
    font-size: 1.02rem;
}

.admin-list-row p {
    margin: 5px 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.card-body {
    position: relative;
    z-index: 1;
}

.card-text,
.service-description,
.section-description,
.contact-details,
.job-posting p {
    color: var(--muted);
}

.home-intro-section {
    width: min(860px, calc(100% - 36px));
    margin: 22px auto 10px;
    text-align: center;
}

.home-intro-section::after {
    content: "";
    display: block;
    width: min(260px, 56vw);
    height: 2px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(120, 0, 0, 0.52), transparent);
}

.home-intro-section h1 {
    margin: 0 0 10px;
    color: var(--brand-maroon) !important;
    font-size: clamp(1.75rem, 2.7vw, 2.45rem);
    font-weight: 650;
    line-height: 1.16;
}

.home-intro-section p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.65;
}

.home-trust-strip,
.capability-strip,
.clients-industry-strip,
.consulting-cta-band {
    width: min(1120px, calc(100% - 36px));
    margin-right: auto;
    margin-left: auto;
}

.home-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.trust-metric {
    min-height: 94px;
    padding: 18px;
    border: 1px solid rgba(120, 0, 0, 0.11);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(33, 37, 41, 0.055);
    text-align: center;
}

.trust-metric strong {
    display: block;
    color: var(--brand-maroon);
    font-size: 1.08rem;
    line-height: 1.25;
}

.trust-metric span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.9rem;
}

.capability-strip,
.clients-industry-strip {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 0;
    margin-bottom: 8px;
}

.clients-industry-strip {
    max-width: 900px;
    margin-top: 20px;
}

.capability-strip span,
.clients-industry-strip span {
    padding: 8px 12px;
    border: 1px solid rgba(120, 0, 0, 0.16);
    border-radius: 999px;
    background: #fff;
    color: var(--brand-maroon);
    font-size: 0.88rem;
    font-weight: 650;
    box-shadow: 0 8px 18px rgba(33, 37, 41, 0.045);
}

@media (max-width: 600px) {
    .capability-strip {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        width: min(360px, calc(100% - 36px));
        margin-top: 4px;
        margin-bottom: 28px;
    }

    .capability-strip span {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 8px 6px;
        text-align: center;
        white-space: nowrap;
    }
}

@media (max-width: 600px) {
    .home-trust-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: min(390px, calc(100% - 28px));
        margin-top: 18px;
    }

    .trust-metric {
        min-height: 104px;
        padding: 12px 7px;
        text-align: center;
    }

    .trust-metric strong {
        font-size: 0.86rem;
        line-height: 1.15;
    }

    .trust-metric span {
        margin-top: 5px;
        font-size: 0.72rem;
        line-height: 1.25;
    }
}

@media (max-width: 360px) {
    .capability-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(260px, calc(100% - 36px));
    }

    .home-trust-strip {
        gap: 6px;
        width: calc(100% - 24px);
    }

    .trust-metric {
        padding: 10px 5px;
    }

    .trust-metric strong {
        font-size: 0.78rem;
    }

    .trust-metric span {
        font-size: 0.66rem;
    }
}

@media (max-width: 991px) {
    .job-filter-mobile-trigger {
        display: flex;
    }

    .job-filter-mobile-close {
        display: inline-grid;
    }

    .job-filter-panel {
        position: fixed;
        top: 50%;
        left: 50%;
        z-index: 2200;
        display: block;
        width: min(420px, calc(100vw - 34px));
        max-height: min(82vh, 620px);
        margin: 0;
        padding: 20px 18px 18px;
        overflow-y: auto;
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, -46%) scale(0.97);
    }

    .job-filter-panel.is-mobile-open {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (max-width: 991px) {
    .job-filter-mobile-trigger {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        width: max-content;
        min-height: 46px;
        margin: 18px auto 22px;
        padding: 11px 22px;
        border: 0;
        border-radius: 999px;
        background: var(--brand-maroon);
        color: #fff;
        font-weight: 700;
        box-shadow: 0 14px 30px rgba(120, 0, 0, 0.22);
    }

    .job-filter-mobile-trigger i {
        font-size: 0.95rem;
    }

    .job-filter-panel {
        position: fixed;
        top: 50%;
        left: 50%;
        z-index: 2200;
        display: block;
        width: min(420px, calc(100vw - 34px));
        max-height: min(82vh, 620px);
        margin: 0;
        padding: 20px 18px 18px;
        overflow-y: auto;
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, -46%) scale(0.97);
        transition: opacity 0.22s ease, transform 0.22s ease;
        box-shadow:
            0 0 0 100vmax rgba(20, 15, 15, 0.48),
            0 24px 60px rgba(33, 37, 41, 0.22);
    }

    .job-filter-panel.is-mobile-open {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, -50%) scale(1);
    }

    .job-filter-panel__header {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
    }

    .job-filter-panel__header .signal-kicker {
        color: var(--muted);
    }

    .job-filter-mobile-close {
        display: inline-grid;
        place-items: center;
        width: 38px;
        height: 38px;
        border: 1px solid rgba(120, 0, 0, 0.16);
        border-radius: 50%;
        background: #fff;
        color: var(--brand-maroon);
        font-size: 24px;
        line-height: 1;
    }

    .job-filter-clear {
        grid-column: 1 / -1;
        justify-self: start;
        margin-top: -4px;
    }

    .job-filter-groups {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .job-filter-options {
        position: static;
        margin-top: 8px;
        box-shadow: inset 0 0 0 1px rgba(120, 0, 0, 0.06);
    }
}

@media (max-width: 600px) {
    .clients-industry-strip {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        width: min(390px, calc(100% - 40px));
        margin-top: 18px;
        margin-bottom: 30px;
    }

    .clients-industry-strip span {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 8px 10px;
        border-radius: 8px;
        font-size: 0.78rem;
        line-height: 1.2;
        text-align: center;
        white-space: normal;
    }

    .clients-industry-strip span:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: min(190px, 100%);
    }
}

@media (max-width: 360px) {
    .clients-industry-strip {
        width: min(330px, calc(100% - 28px));
        gap: 7px;
    }

    .clients-industry-strip span {
        padding: 7px 8px;
        font-size: 0.72rem;
    }
}


.consulting-cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 12px;
    margin-bottom: 56px;
    padding: 26px 28px;
    border: 1px solid rgba(120, 0, 0, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92)),
        linear-gradient(120deg, rgba(120, 0, 0, 0.07), transparent 58%);
    box-shadow: var(--shadow-soft);
}

.consulting-cta-band h2 {
    margin: 4px 0 8px;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 650;
}

.consulting-cta-band p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .home-trust-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: min(94%, 920px);
        gap: 10px;
    }

    .trust-metric {
        padding: 16px 12px;
    }

    .capability-strip,
    .consulting-cta-band {
        width: min(94%, 920px);
    }

    .consulting-cta-band {
        align-items: flex-start;
        flex-direction: column;
        padding: 24px;
    }
}

@media (min-width: 1000px) and (max-width: 1199px) {
    .navbar .container {
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .navbar-brand {
        padding-left: 0;
    }
}

@media (max-width: 700px) {
    .home-trust-strip {
        grid-template-columns: 1fr;
        margin-top: 18px;
    }

    .trust-metric {
        min-height: 78px;
        text-align: left;
    }

    .capability-strip {
        justify-content: flex-start;
        gap: 8px;
        margin-top: 0;
    }

    .capability-strip span {
        padding: 7px 10px;
        font-size: 0.8rem;
    }

    .consulting-cta-band {
        gap: 18px;
        margin-top: 8px;
        margin-bottom: 42px;
        padding: 20px 18px;
    }

    .consulting-cta-band h2 {
        font-size: 1.28rem;
    }

    .consulting-cta-band .btn {
        width: 100%;
        justify-content: center;
    }

    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-form-shell {
        padding: 22px 18px;
    }

    .admin-form-actions,
    .admin-toolbar,
    .admin-inline-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-form-actions .btn,
    .admin-action-btn,
    .admin-mini-action {
        width: 100%;
    }

    .admin-management-header,
    .admin-list-row {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}

@media (min-width: 601px) and (max-width: 700px) {
    .capability-strip {
        justify-content: center;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .services-grid-section .row > .col-md-6.col-lg-4:last-child {
        margin-right: auto;
        margin-left: auto;
    }
}

.category-btn,
.btn-login-signup,
.apply-btn {
    box-shadow: 0 10px 22px rgba(120, 0, 0, 0.18);
}

.category-btn:hover,
.btn-login-signup:hover,
.apply-btn:hover {
    transform: translateY(-1px);
}

.clients-section {
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    margin-bottom: 56px;
}

.industry-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 18px;
    padding-left: 0;
    margin: 24px auto 0;
    max-width: 980px;
    list-style: none;
}

.industry-list li {
    display: flex;
    align-items: center;
    min-height: 64px;
    border-left: 3px solid var(--brand-maroon);
    border-radius: 8px;
    background: #fff;
    padding: 14px 18px;
    box-shadow: 0 8px 20px rgba(33, 37, 41, 0.05);
}

.client-category .col-6 {
    position: relative;
    flex-direction: column;
    gap: 8px;
    min-height: 145px;
}

.client-category p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    text-align: center;
}

.client-logo {
    position: relative;
    min-height: 100px;
}

.clients-partners-section {
    height: auto;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.container.py-3.mt-4.text-center.clients-partners-section {
    margin-bottom: 0 !important;
    width: min(1260px, calc(100% - 24px));
    max-width: 1260px;
    padding-bottom: 0 !important;
}

.clients-partners-section .clients-content-block,
.clients-partners-section .clients-trust-band,
.clients-partners-section .client-category {
    display: block;
    visibility: visible;
}

.clients-page-header {
    max-width: 1260px;
    margin: 0 auto;
    padding: 4px 0 0;
    text-align: center;
}

.clients-page-header::after {
    content: none;
}

.clients-page-header h1 {
    margin: 0 0 10px;
    color: var(--brand-maroon) !important;
    font-size: clamp(2rem, 2.8vw, 2.75rem);
    font-weight: 700;
    line-height: 1.12;
}

.clients-page-header p {
    max-width: 1160px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.65;
}

.clients-page-header p + p {
    margin-top: 12px;
}

.clients-subtitle-line {
    display: inline-block;
}

.clients-overview-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: 28px;
    align-items: stretch;
    padding: 8px 4px 26px;
}

.clients-overview-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 260px;
    padding: 28px;
    border: 1px solid var(--border-soft);
    border-left: 4px solid var(--brand-maroon);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
        linear-gradient(90deg, rgba(120, 0, 0, 0.045), transparent 48%);
    box-shadow: var(--shadow-soft);
}

.clients-overview-copy h1 {
    margin: 0 0 16px;
    color: var(--brand-maroon) !important;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.12;
}

.clients-overview-copy p {
    max-width: 840px;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.68;
}

.clients-overview-copy p:first-of-type {
    color: var(--ink);
}

.clients-overview-metrics {
    display: grid;
    gap: 12px;
}

.clients-overview-metrics div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 78px;
    padding: 18px;
    border: 1px solid rgba(120, 0, 0, 0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(33, 37, 41, 0.055);
}

.clients-overview-metrics strong {
    color: var(--brand-maroon);
    font-size: 1.65rem;
    line-height: 1;
}

.clients-overview-metrics span {
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
}

.clients-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
    margin: 0;
}

.clients-grid-section {
    padding-top: 28px !important;
}

.clients-page-column {
    display: contents;
}

.clients-page-column > .clients-dashboard-panel {
    grid-area: auto;
}

.clients-page-grid > .clients-dashboard-panel {
    grid-area: auto;
}

@media (min-width: 1000px) and (max-width: 1400px) {
    .clients-page-column {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .clients-page-column--secondary .clients-support-cta {
        margin-top: 25px;
    }
}

@media (min-width: 992px) {
    body[data-language="el"] .clients-page-column {
        display: flex;
        flex-direction: column;
    }

    body[data-language="el"] .clients-page-column--primary {
        gap: 34px;
    }

    body[data-language="el"] .clients-page-column--secondary {
        gap: 18px;
    }
}

.clients-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    grid-template-areas:
        "industries engagement"
        "trust engagement";
    gap: 12px 18px;
    align-items: start;
    margin-top: 16px;
}

.clients-dashboard-panel {
    padding: 20px;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(33, 37, 41, 0.055);
}

.clients-dashboard-panel--wide {
    grid-area: industries;
    grid-row: auto;
}

.clients-dashboard-panel--engagement {
    grid-area: engagement;
    order: 1;
}

.clients-dashboard-panel--quiet {
    grid-area: trust;
    order: 2;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
        linear-gradient(90deg, rgba(120, 0, 0, 0.045), transparent 60%);
}

.clients-dashboard-panel--quiet p {
    margin: 9px 0 0;
    color: var(--muted);
    line-height: 1.52;
}

.clients-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.15fr) minmax(280px, 0.85fr);
    gap: 18px;
    align-items: start;
    margin: 14px 0 18px;
}

.clients-dashboard-panel--intro {
    grid-area: intro;
    align-self: start;
    border-left: 4px solid var(--brand-maroon);
    background: #fff;
}

.clients-dashboard-panel--intro p {
    max-width: 900px;
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.68;
}

.clients-dashboard-panel--intro p:first-of-type {
    color: var(--ink);
}

.clients-dashboard-panel--intro p + p {
    margin-top: 10px;
}

.clients-support-cta,
.clients-partner-cta {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    overflow: hidden;
    border-color: rgba(120, 0, 0, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.98)),
        repeating-linear-gradient(90deg, rgba(120, 0, 0, 0.055) 0 1px, transparent 1px 28px),
        repeating-linear-gradient(0deg, rgba(120, 0, 0, 0.04) 0 1px, transparent 1px 28px);
    box-shadow: 0 14px 34px rgba(33, 37, 41, 0.08);
}

.clients-support-cta {
    grid-area: cta;
    order: 4;
    gap: 10px;
    justify-content: flex-start;
}

.clients-support-cta::before,
.clients-partner-cta::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-maroon), rgba(120, 0, 0, 0.12));
}

.clients-support-cta::after,
.clients-partner-cta::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(120, 0, 0, 0.18);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(120, 0, 0, 0.22) 0 3px, transparent 4px),
        linear-gradient(90deg, transparent 48%, rgba(120, 0, 0, 0.14) 49% 51%, transparent 52%),
        linear-gradient(0deg, transparent 48%, rgba(120, 0, 0, 0.14) 49% 51%, transparent 52%);
    opacity: 0.9;
    pointer-events: none;
}

.clients-support-cta h2,
.clients-partner-cta h2 {
    max-width: 280px;
    color: var(--brand-maroon);
}

.clients-partner-cta {
    order: 3;
    min-height: 0;
    gap: 8px;
    justify-content: flex-start;
    padding-top: 18px;
    padding-bottom: 18px;
}

.clients-partner-cta .clients-panel-heading {
    margin-bottom: 0;
}

.clients-partner-cta p {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.45;
}

.clients-support-links {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.clients-support-links li {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px 10px 30px;
    border: 1px solid rgba(120, 0, 0, 0.11);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.3;
    box-shadow: 0 8px 20px rgba(33, 37, 41, 0.045);
}

.clients-support-links li::before {
    content: "";
    position: absolute;
    top: 19px;
    left: 14px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--brand-maroon);
    box-shadow: 0 0 0 4px rgba(120, 0, 0, 0.08);
}

.clients-support-cta .btn,
.clients-partner-cta .btn {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    padding-inline: 18px;
}

.clients-support-cta .btn {
    padding-top: 8px;
    padding-bottom: 8px;
}

@media (min-width: 1401px) {
    .clients-support-cta {
        margin-top: -77px;
    }
}

@media (min-width: 992px) and (max-width: 999px) {
    body[data-language="el"] .clients-page-column--primary {
        gap: 42px;
    }
}

@media (min-width: 1000px) and (max-width: 1199px) {
    body[data-language="el"] .clients-page-column--primary {
        gap: 42px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    body[data-language="el"] .clients-page-column--primary {
        gap: 92px;
    }

    body[data-language="el"] .clients-page-column--secondary {
        gap: 43px;
    }

    body[data-language="el"] .clients-page-column--secondary .clients-support-cta {
        margin-top: 0;
    }
}

@media (min-width: 1400px) {
    body[data-language="el"] .clients-page-column--primary {
        gap: 56px;
    }

    body[data-language="el"] .clients-page-column--secondary {
        gap: 18px;
    }

    body[data-language="el"] .clients-page-column--secondary .clients-support-cta {
        margin-top: 0;
    }
}

.clients-panel-heading {
    margin-bottom: 12px;
}

.clients-panel-heading h2 {
    margin: 0;
    font-size: clamp(1.08rem, 1.35vw, 1.32rem);
    font-weight: 650;
    line-height: 1.28;
}

.clients-intro {
    max-width: 900px;
    margin: 0 auto 34px;
    text-align: center;
}

.clients-intro p {
    margin-bottom: 0.9rem;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.72;
}

.clients-intro p:first-of-type {
    color: var(--ink);
}

.clients-content-block {
    margin-top: 38px;
    padding-top: 30px;
    border-top: 1px solid rgba(120, 0, 0, 0.12);
}

.clients-content-block--compact {
    margin-top: 28px;
}

.clients-section-heading {
    max-width: 820px;
    margin: 0 auto 22px;
    text-align: center;
}

.clients-section-heading h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    font-weight: 650;
}

.client-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.client-info-grid--industries {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.client-industry-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding-left: 0;
    margin: 0 auto;
    max-width: 980px;
    list-style: none;
}

.client-industry-pills li {
    padding: 9px 13px;
    border: 1px solid rgba(120, 0, 0, 0.13);
    border-radius: 999px;
    background: #fff;
    color: var(--brand-maroon);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.25;
    box-shadow: 0 8px 18px rgba(33, 37, 41, 0.045);
}

.client-info-card {
    min-height: 150px;
    padding: 18px;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(33, 37, 41, 0.055);
}

.client-info-card h3 {
    margin-bottom: 10px;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.32;
}

.client-info-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.58;
}

.client-support-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.client-support-card {
    min-height: auto;
    padding: 0;
    overflow: hidden;
}

.client-support-toggle {
    width: 100%;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px;
    border: 0;
    background: #fff;
    color: var(--brand-maroon);
    font-size: 0.98rem;
    font-weight: 750;
    line-height: 1.3;
    text-align: left;
}

.client-support-toggle span:last-child {
    display: inline-block;
    flex: 0 0 auto;
    font-size: 1.1rem;
    line-height: 1;
    transition: transform 0.22s ease;
}

.client-support-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(90deg);
}

.client-support-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(6px);
    transition:
        max-height 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.24s ease,
        transform 0.28s ease;
}

.client-support-panel[hidden] {
    display: block;
}

.client-support-card.is-open .client-support-panel {
    opacity: 1;
    transform: translateY(0);
}

.client-support-panel p {
    padding: 0 18px 18px;
}

.client-engagement-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 9px;
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.client-engagement-list li {
    position: relative;
    min-height: 48px;
    padding: 11px 13px 11px 30px;
    border: 1px solid rgba(120, 0, 0, 0.11);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-size: 0.92rem;
    line-height: 1.3;
    box-shadow: 0 8px 20px rgba(33, 37, 41, 0.045);
}

.client-engagement-list li::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 14px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--brand-maroon);
    box-shadow: 0 0 0 4px rgba(120, 0, 0, 0.08);
}

.client-engagement-list--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, auto));
    grid-auto-flow: column;
    gap: 8px;
}

.client-engagement-list--compact li {
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
}

.clients-trust-band {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 32px;
    padding: 20px 22px;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
        linear-gradient(90deg, rgba(120, 0, 0, 0.05), transparent 58%);
    box-shadow: var(--shadow-soft);
}

.clients-trust-band p {
    margin: 0;
    color: var(--muted);
    line-height: 1.58;
}

.job-posting {
    position: relative;
    overflow: hidden;
}

.job-posting::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--brand-maroon);
    opacity: 0.82;
}

.job-posting.job-expanded {
    border-color: rgba(120, 0, 0, 0.32) !important;
}

.jobs-list {
    display: grid;
    gap: 18px;
    margin-bottom: 56px;
}

.job-filter-mobile-trigger,
.job-filter-mobile-close {
    display: none;
}

.job-filter-panel {
    margin: 0 0 24px;
    padding: 14px 16px;
    border: 1px solid rgba(120, 0, 0, 0.10);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
        linear-gradient(90deg, rgba(120, 0, 0, 0.035), transparent 50%);
    box-shadow: 0 10px 26px rgba(33, 37, 41, 0.06);
}

.job-filter-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.job-filter-clear {
    border: 0;
    background: transparent;
    color: var(--brand-maroon);
    font-size: 0.82rem;
    font-weight: 650;
    padding: 0;
}

.job-filter-clear:hover,
.job-filter-clear:focus-visible {
    text-decoration: underline;
}

.job-filter-groups {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.job-filter-label {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.job-filter-group {
    position: relative;
}

.job-filter-select {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 7px 10px;
    border: 1px solid rgba(120, 0, 0, 0.13);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    text-align: left;
    box-shadow: 0 6px 16px rgba(33, 37, 41, 0.035);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.job-filter-select:hover,
.job-filter-select:focus-visible,
.job-filter-group.is-open .job-filter-select {
    border-color: rgba(120, 0, 0, 0.32);
    box-shadow: 0 8px 20px rgba(120, 0, 0, 0.07);
}

.job-filter-select strong {
    color: var(--brand-maroon);
    font-size: 0.92rem;
    font-weight: 650;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.job-filter-select::after {
    content: "v";
    color: var(--brand-maroon);
    font-size: 0.68rem;
    transition: transform 0.2s ease;
}

.job-filter-group.is-open .job-filter-select::after {
    transform: rotate(180deg);
}

.job-filter-options {
    position: absolute;
    right: 0;
    left: 0;
    top: calc(100% + 8px);
    z-index: 20;
    display: none;
    max-height: 220px;
    overflow-y: auto;
    padding: 6px;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(33, 37, 41, 0.12);
    gap: 4px;
}

.job-filter-group.is-open .job-filter-options {
    display: grid;
}

.job-filter-chip {
    width: 100%;
    min-height: 34px;
    padding: 7px 9px;
    border: 0;
    border-radius: 7px;
    background: #fff;
    color: var(--ink);
    font-size: 0.84rem;
    text-align: left;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.job-filter-chip:hover,
.job-filter-chip:focus-visible,
.job-filter-chip.is-active {
    background: rgba(120, 0, 0, 0.06);
    color: var(--brand-maroon);
}

.job-filter-empty {
    display: none;
    margin: 24px 0 56px;
    padding: 18px;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    background: #fff;
    color: var(--muted);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.job-filter-empty.is-visible {
    display: block;
}

.job-card {
    margin-bottom: 0 !important;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.job-card:hover,
.job-card:focus-within {
    border-color: rgba(120, 0, 0, 0.28) !important;
    box-shadow: var(--shadow-strong);
}

.job-card__main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
}

.job-meta-grid,
.job-detail-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
    margin-top: 14px;
}

.job-meta-grid p,
.job-detail-meta p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.job-card__actions {
    display: grid;
    gap: 10px;
    min-width: 170px;
}

.job-details-btn,
.job-quick-apply {
    width: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.job-quick-apply {
    border-color: rgba(120, 0, 0, 0.32);
    color: var(--brand-maroon);
}

.job-quick-apply:hover,
.job-quick-apply:focus-visible {
    border-color: var(--brand-maroon);
    background: rgba(120, 0, 0, 0.04);
    color: var(--brand-maroon);
}

.job-modal-content {
    display: none;
}

.job-modal {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.66);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1), backdrop-filter 0.38s ease;
}

.job-modal.is-open,
.job-modal.is-closing {
    opacity: 1;
    pointer-events: auto;
}

.job-modal__panel {
    width: min(920px, 94vw);
    max-height: min(780px, 88vh);
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
    opacity: 0;
    transform: translateY(24px) scale(0.965);
    transition: opacity 0.36s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.job-modal.is-open .job-modal__panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.job-modal.is-closing {
    opacity: 0;
}

.job-modal.is-closing .job-modal__panel {
    opacity: 0;
    transform: translateY(16px) scale(0.975);
}

.job-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(120, 0, 0, 0.12);
}

.job-modal__header h3 {
    margin: 0;
    color: var(--brand-maroon) !important;
    font-size: 1.45rem;
    font-weight: 650;
}

.job-modal__close {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(120, 0, 0, 0.16);
    border-radius: 50%;
    background: #fff;
    color: var(--brand-maroon);
    font-size: 28px;
    line-height: 1;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.job-modal__close:hover,
.job-modal__close:focus-visible {
    border-color: rgba(120, 0, 0, 0.34);
    background: rgba(120, 0, 0, 0.04);
}

.job-modal__body {
    max-height: calc(min(780px, 88vh) - 82px);
    overflow-y: auto;
    padding: 24px;
}

.job-detail-description {
    margin-top: 22px;
}

.job-detail-description p,
.job-detail-requirements li {
    color: var(--muted);
    line-height: 1.68;
}

.job-detail-requirements {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(120, 0, 0, 0.12);
}

.job-detail-requirements h4 {
    color: var(--brand-maroon);
    font-size: 1.08rem;
    margin-bottom: 12px;
}

.job-detail-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(120, 0, 0, 0.12);
}

.account-page-section,
.associates-page-section {
    max-width: 1080px;
    margin-bottom: 56px;
}

.account-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 24px;
    align-items: stretch;
}

.account-intro-panel,
.account-card,
.associates-shell {
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.account-intro-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
        linear-gradient(120deg, rgba(120, 0, 0, 0.07), transparent 58%);
}

.account-intro-panel h2,
.account-card h2,
.associates-header h2 {
    margin: 6px 0 12px;
    color: var(--brand-maroon) !important;
    font-weight: 650;
}

.account-intro-panel p,
.associates-header p,
.account-info-list p {
    color: var(--muted);
    line-height: 1.65;
}

.account-card {
    padding: 30px;
}

.account-card--narrow {
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
}

.account-form {
    display: grid;
    gap: 14px;
}

.account-form label,
.form-group label {
    color: var(--ink);
    font-weight: 650;
}

.account-form .form-control,
.form-group .form-control {
    min-height: 46px;
    border: 1px solid rgba(120, 0, 0, 0.16);
    border-radius: 8px;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.account-form .form-control:focus,
.form-group .form-control:focus {
    border-color: rgba(120, 0, 0, 0.5);
    box-shadow: 0 0 0 4px rgba(120, 0, 0, 0.09);
}

.account-info-list {
    display: grid;
    gap: 10px;
    margin: 20px 0;
}

.account-info-list p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 0;
    padding: 13px 15px;
    border: 1px solid rgba(120, 0, 0, 0.12);
    border-radius: 8px;
    background: rgba(120, 0, 0, 0.025);
}

.associates-shell {
    padding: 30px;
}

.associates-header {
    max-width: 760px;
    margin: 0 auto 24px;
    text-align: center;
}

.associate-profile-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 26px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(120, 0, 0, 0.12);
}

.associate-resource-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.associate-resource-card {
    display: flex;
    min-height: 138px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(120, 0, 0, 0.13);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(33, 37, 41, 0.06);
    color: var(--ink);
    text-align: center;
}

.associate-resource-card i {
    color: var(--brand-maroon);
    font-size: 1.55rem;
}

.associate-resource-card span {
    font-weight: 650;
    line-height: 1.35;
}

.associate-resource-card:hover,
.associate-resource-card:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(120, 0, 0, 0.3);
    box-shadow: var(--shadow-strong);
    color: var(--brand-maroon);
}

.toggle-description {
    font-weight: 700;
    text-decoration: none;
}

.toggle-description:hover {
    color: var(--brand-maroon-dark) !important;
    text-decoration: underline;
}

.policy-item {
    margin-bottom: 12px;
    padding: 14px 16px;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(33, 37, 41, 0.05);
    cursor: pointer;
}

.policy-item:hover {
    transform: translateX(3px);
    box-shadow: var(--shadow-soft);
}

.policy-item h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    color: var(--brand-maroon);
}

.policy-content {
    display: none;
    padding-top: 12px;
    color: var(--muted);
}

.policies-grid .policy-item {
    min-height: 86px;
}

.policies-grid .policy-item h4 {
    min-height: 44px;
    font-size: 1.08rem;
}

.policies-grid .arrow {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(120, 0, 0, 0.16);
    border-radius: 8px;
    background: rgba(120, 0, 0, 0.045);
    color: var(--brand-maroon);
    font-family: "Font Awesome 6 Free";
    font-size: 0;
    font-weight: 900;
    text-align: center;
}

.policies-grid .arrow::before {
    content: "\f02d";
    display: block;
    font-size: 0.92rem;
    line-height: 1;
}

.policy-modal {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.66);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1), backdrop-filter 0.38s ease;
}

.policy-modal.is-open,
.policy-modal.is-closing {
    opacity: 1;
    pointer-events: auto;
}

.policy-modal__panel {
    width: min(860px, 94vw);
    max-height: min(760px, 88vh);
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
    opacity: 0;
    transform: translateY(24px) scale(0.965);
    transition: opacity 0.36s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.policy-modal.is-open .policy-modal__panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.policy-modal.is-closing {
    opacity: 0;
}

.policy-modal.is-closing .policy-modal__panel {
    opacity: 0;
    transform: translateY(16px) scale(0.975);
}

.policy-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(120, 0, 0, 0.12);
}

.policy-modal__header h3 {
    margin: 0;
    color: var(--brand-maroon) !important;
    font-size: 1.45rem;
    font-weight: 650;
}

.policy-modal__close {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(120, 0, 0, 0.16);
    border-radius: 50%;
    background: #fff;
    color: var(--brand-maroon);
    font-size: 28px;
    line-height: 1;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.policy-modal__close:hover,
.policy-modal__close:focus-visible {
    border-color: rgba(120, 0, 0, 0.34);
    background: rgba(120, 0, 0, 0.04);
}

.policy-modal__body {
    max-height: calc(min(760px, 88vh) - 82px);
    overflow-y: auto;
    padding: 24px;
}

.policy-modal__body p {
    color: var(--muted);
    line-height: 1.72;
}

.policy-modal__intro {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(120, 0, 0, 0.10);
}

.policy-last-updated {
    font-weight: 700;
}

.policy-section {
    border: 1px solid rgba(120, 0, 0, 0.12);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.policy-section + .policy-section {
    margin-top: 10px;
}

.policy-section__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border: 0;
    background: rgba(120, 0, 0, 0.025);
    color: var(--brand-maroon);
    font-size: 1rem;
    font-weight: 650;
    text-align: left;
    transition: background-color 0.2s ease;
}

.policy-section__toggle:hover,
.policy-section__toggle:focus-visible {
    background: rgba(120, 0, 0, 0.055);
}

.policy-section__arrow {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(120, 0, 0, 0.16);
    border-radius: 50%;
    font-family: "Font Awesome 6 Free";
    font-size: 0;
    font-weight: 900;
    transition: transform 0.2s ease;
}

.policy-section__arrow::before {
    content: "\f054";
    font-size: 0.72rem;
    line-height: 1;
    transform: translateY(1px);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.policy-section__toggle[aria-expanded="true"] .policy-section__arrow {
    transform: none;
}

.policy-section__toggle[aria-expanded="true"] .policy-section__arrow::before {
    transform: translateX(-1px) translateY(1px) rotate(90deg);
}

.policy-section__body {
    padding: 16px 18px 18px;
    animation: policySectionFade 0.14s ease both;
}

.policy-section__body[hidden] {
    display: none;
}

.policy-section__body p:last-child {
    margin-bottom: 0;
}

@keyframes policySectionFade {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-page-section {
    max-width: 1140px;
}

.about-content-panel {
    position: relative;
    height: 100%;
    padding: 28px;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
        linear-gradient(90deg, rgba(120, 0, 0, 0.045), transparent 48%);
    box-shadow: var(--shadow-soft);
}

.about-content-panel::before {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 0;
    width: 4px;
    border-radius: 0 999px 999px 0;
    background: var(--brand-maroon);
    opacity: 0.88;
}

.about-content-panel p {
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.78;
}

.about-content-panel p:first-child {
    color: var(--ink);
    font-size: 1.08rem;
}

.about-lead {
    font-weight: 400;
}

.about-toggle-area {
    margin-top: 28px;
}

.about-toggle-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.about-insight-trigger {
    justify-content: center;
    margin-top: 0;
    white-space: nowrap;
}

.about-toggle-panels {
    margin-top: 14px;
}

.about-insight-panel {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid rgba(120, 0, 0, 0.11);
    border-left: 4px solid var(--brand-maroon);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 24px rgba(33, 37, 41, 0.05);
}

.about-insight-panel.is-open {
    margin-top: 0;
    opacity: 1;
    transform: translateY(0);
}

.about-insight-panel .signal-kicker {
    margin-bottom: 12px;
}

.about-insight-panel p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.58;
}

.about-check-list {
    display: grid;
    gap: 10px;
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.about-check-list li {
    position: relative;
    padding-left: 22px;
    color: var(--ink);
    line-height: 1.45;
}

.about-check-list li::before {
    content: "";
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--brand-maroon);
    box-shadow: 0 0 0 4px rgba(120, 0, 0, 0.08);
    transform: translateY(-50%);
}

.about-signal-panel {
    position: sticky;
    top: 102px;
    display: grid;
    gap: 14px;
}

.signal-item {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(33, 37, 41, 0.07);
}

.signal-item::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(120, 0, 0, 0.62), transparent);
}

.signal-kicker {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.signal-item strong {
    display: block;
    color: var(--brand-maroon);
    font-size: 1.02rem;
    line-height: 1.35;
}

.policies-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid rgba(120, 0, 0, 0.12);
}

.policies-header h2 {
    margin: 0;
    font-weight: 650;
}

.policies-grid ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
    padding-left: 0;
    list-style: none;
}

.policies-grid .policy-item {
    align-self: start;
    margin-bottom: 0;
}

.financial-statements-section {
    padding-top: 28px;
    border-top: 1px solid rgba(120, 0, 0, 0.12);
    margin-bottom: 64px;
}

.financial-statements-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.financial-statements-header h2 {
    margin: 4px 0 0;
    font-weight: 650;
}

.financial-statements-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
}

.financial-statement-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 54px;
    padding: 12px 14px;
    border: 1px solid rgba(120, 0, 0, 0.11);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(33, 37, 41, 0.045);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.financial-statement-row:hover {
    border-color: rgba(120, 0, 0, 0.26);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.financial-statement-extra {
    display: none;
}

.financial-statements-section.is-expanded .financial-statement-extra {
    display: flex;
}

.financial-statement-row span {
    color: var(--ink);
    font-weight: 650;
}

.financial-statement-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.financial-statement-links a {
    min-width: 38px;
    padding: 5px 9px;
    border: 1px solid rgba(120, 0, 0, 0.16);
    border-radius: 999px;
    color: var(--brand-maroon);
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
}

.financial-statement-links a:hover,
.financial-statement-links a:focus-visible {
    border-color: var(--brand-maroon);
    background: rgba(120, 0, 0, 0.055);
    color: var(--brand-maroon);
}

.financial-statements-actions {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.financial-statements-toggle {
    min-width: 110px;
    min-height: 40px;
    border: 1px solid rgba(120, 0, 0, 0.18);
    border-radius: 999px;
    background: #fff;
    color: var(--brand-maroon);
    font-weight: 700;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.financial-statements-toggle:hover,
.financial-statements-toggle:focus-visible {
    border-color: var(--brand-maroon);
    background: rgba(120, 0, 0, 0.055);
}

.contact-details {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
}

.contact-details-column h3 {
    text-align: center;
}

.contact-details-column {
    display: flex;
    flex-direction: column;
}

.contact-details-stack {
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
}

.contact-details p {
    justify-content: center;
}

.contact-map-card {
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.ratio {
    overflow: hidden;
}

.ratio iframe {
    filter: saturate(0.92) contrast(1.02);
}

.contact-page .contact-section {
    width: min(1180px, calc(100% - 36px));
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.82fr);
    gap: 24px;
    align-items: stretch;
    margin-top: 34px;
}

.contact-primary-panel,
.contact-location-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.contact-primary-panel {
    padding: 28px;
    border-left: 5px solid var(--brand-maroon);
}

.contact-location-panel {
    display: flex;
    flex-direction: column;
    padding: 22px;
}

.contact-primary-panel::after,
.contact-location-panel::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: -28px;
    width: 96px;
    height: 96px;
    border: 1px solid rgba(120, 0, 0, 0.14);
    border-radius: 50%;
    background:
        linear-gradient(90deg, transparent 49%, rgba(120, 0, 0, 0.14) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(120, 0, 0, 0.14) 50%, transparent 51%);
    pointer-events: none;
}

.contact-primary-panel h3,
.contact-location-panel h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
    color: var(--brand-maroon);
    font-weight: 700;
    text-align: left;
}

.contact-page .contact-details-stack {
    position: relative;
    z-index: 1;
    margin: 0;
}

.contact-page .contact-primary-panel .admin-toolbar {
    margin-bottom: 18px;
}

.contact-page .contact-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    padding: 0;
    text-align: left;
}

.contact-page .contact-details p {
    min-height: 48px;
    margin: 0;
    padding: 12px 14px;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid rgba(120, 0, 0, 0.10);
    border-radius: 8px;
    background: #fff;
    color: var(--muted);
    line-height: 1.45;
    box-shadow: 0 8px 18px rgba(33, 37, 41, 0.035);
}

.contact-page .contact-details p:first-child,
.contact-page .contact-details p:nth-child(4),
.contact-page .contact-details .row {
    grid-column: 1 / -1;
}

.contact-page .contact-details p:first-child {
    min-height: 54px;
    color: var(--brand-maroon);
    font-size: 1.05rem;
}

.contact-page .contact-details .row {
    margin: 2px 0 0 !important;
    justify-content: flex-start !important;
}

.contact-page .social-icons {
    padding: 0;
}

.contact-page .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(120, 0, 0, 0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(33, 37, 41, 0.035);
}

.contact-page .contact-map-card {
    position: relative;
    z-index: 1;
    flex: 1;
    min-height: 300px;
    margin: 0;
    opacity: 0.92;
}

.contact-page .ratio {
    height: 100%;
    min-height: 300px;
}

.contact-page .ratio iframe {
    min-height: 300px;
}

.contact-page .contact-section {
    width: min(1240px, calc(100% - 36px));
    margin-bottom: 56px;
}

.contact-page .contact-layout {
    grid-template-columns: minmax(520px, 1.42fr) minmax(330px, 0.78fr);
    gap: 26px;
    align-items: stretch;
}

.contact-page .contact-primary-panel,
.contact-page .contact-location-panel {
    isolation: isolate;
    border-color: rgba(120, 0, 0, 0.15);
    background:
        linear-gradient(135deg, rgba(120, 0, 0, 0.035), transparent 34%),
        linear-gradient(#fff, #fff);
    box-shadow: 0 22px 54px rgba(33, 37, 41, 0.10);
}

.contact-page .contact-primary-panel {
    min-height: 520px;
    padding: 30px;
    border-left: 0;
}

.contact-page .contact-primary-panel::before,
.contact-page .contact-location-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(rgba(120, 0, 0, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120, 0, 0, 0.035) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.75), transparent 68%);
    pointer-events: none;
}

.contact-page .contact-primary-panel::after,
.contact-page .contact-location-panel::after {
    right: 18px;
    bottom: 18px;
    width: 74px;
    height: 74px;
    opacity: 0.9;
}

.contact-page .contact-primary-panel::after {
    content: none;
}

.contact-page .contact-primary-panel h3,
.contact-page .contact-location-panel h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    letter-spacing: 0;
}

.contact-page .contact-primary-panel h3::after,
.contact-page .contact-location-panel h3::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(120, 0, 0, 0.34), transparent);
}

.contact-page .contact-details {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
    min-width: 0;
}

.contact-page .contact-details p {
    position: relative;
    grid-column: span 6;
    min-width: 0;
    max-width: 100%;
    min-height: 68px;
    padding: 15px 16px 15px 56px;
    border-color: rgba(120, 0, 0, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.96));
    color: #4f555c;
    overflow-wrap: anywhere;
    box-shadow: 0 12px 28px rgba(33, 37, 41, 0.055);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-page .contact-details p:hover {
    border-color: rgba(120, 0, 0, 0.28);
    box-shadow: 0 18px 36px rgba(120, 0, 0, 0.10);
    transform: translateY(-2px);
}

.contact-page .contact-details p i {
    position: absolute;
    top: 50%;
    left: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(120, 0, 0, 0.16);
    border-radius: 8px;
    background: rgba(120, 0, 0, 0.055);
    color: var(--brand-maroon);
    transform: translateY(-50%);
}

.contact-page .contact-details p:first-child,
.contact-page .contact-details p:nth-child(4),
.contact-page .contact-details .row {
    grid-column: 1 / -1;
}

.contact-page .contact-details p:first-child {
    min-height: 74px;
    padding-left: 62px;
    border-color: rgba(120, 0, 0, 0.20);
    background:
        linear-gradient(90deg, rgba(120, 0, 0, 0.08), transparent 58%),
        #fff;
    font-size: 1.08rem;
}

.contact-page .contact-details p:first-child i {
    width: 34px;
    height: 34px;
}

.contact-page .contact-details p:nth-child(4) span {
    display: block;
    white-space: nowrap;
}

.contact-page .contact-details p:nth-child(3) a {
    color: var(--brand-maroon);
    font-weight: 650;
}

.contact-page .contact-details .row {
    margin-top: 4px !important;
}

.contact-page .social-icons {
    display: flex;
    gap: 12px;
}

.contact-page .social-icons a {
    width: 48px;
    height: 48px;
    border-color: rgba(120, 0, 0, 0.16);
    background:
        linear-gradient(180deg, #fff, #f8f8f8);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-page .social-icons a:hover,
.contact-page .social-icons a:focus-visible {
    border-color: rgba(120, 0, 0, 0.30);
    box-shadow: 0 14px 28px rgba(120, 0, 0, 0.12);
    transform: translateY(-2px);
}

.contact-page .contact-location-panel {
    padding: 20px;
}

.contact-page .contact-map-card {
    min-height: 430px;
    border-color: rgba(120, 0, 0, 0.16);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.65),
        0 18px 38px rgba(33, 37, 41, 0.10);
    opacity: 1;
}

.contact-page .contact-map-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-maroon), rgba(120, 0, 0, 0.22), transparent);
    pointer-events: none;
}

.contact-page .ratio,
.contact-page .ratio iframe {
    min-height: 430px;
}

.contact-page .ratio iframe {
    filter: saturate(0.82) contrast(1.08);
}

/* Modern Page Headers */
.container.py-3.mt-4.text-center,
.clients-section,
section.container.mt-5 {
    position: relative;
}

.container.py-3.mt-4.text-center,
.clients-section > h1:first-child,
section.container.mt-5 > h1:first-child,
section.container.mt-5 .col-12.text-center:first-child,
section.container.mt-5 .col-12.text-center.mb-4:first-child {
    margin-top: 0;
}

.container.py-3.mt-4.text-center,
section.container.mt-5 > h1:first-child,
section.container.mt-5 .col-12.text-center:first-child,
section.container.mt-5 .col-12.text-center.mb-4:first-child {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
    padding: 10px 0 18px;
}

.clients-section > h1:first-child {
    position: relative;
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 18px;
}

.container.py-3.mt-4.text-center::after,
section.container.mt-5 > h1:first-child::after,
section.container.mt-5 .col-12.text-center:first-child::after,
section.container.mt-5 .col-12.text-center.mb-4:first-child::after,
.clients-section > h1:first-child::after {
    content: "";
    display: block;
    width: min(280px, 42vw);
    height: 2px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(120, 0, 0, 0.62), transparent);
}

.container.py-3.mt-4.text-center h1,
.clients-section > h1:first-child,
section.container.mt-5 > h1:first-child,
section.container.mt-5 .col-12.text-center h1 {
    margin-bottom: 10px;
    font-size: clamp(1.85rem, 2.55vw, 2.65rem);
    font-weight: 650;
    line-height: 1.14;
    letter-spacing: 0;
}

.container.py-3.mt-4.text-center p,
.clients-section > .section-description,
section.container.mt-5 > p:first-of-type,
section.container.mt-5 .col-12.text-center p {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.container.py-3.mt-4.text-center.clients-partners-section .clients-page-header p {
    max-width: 1500px;
    font-size: 1rem;
}

.hero + .container.py-3.mt-4.text-center,
.hero + section.container.mt-5,
.hero + .container.mt-5 {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

@media (min-width: 992px) {
    .clients-subtitle-line,
    .jobs-subtitle-line {
        white-space: nowrap;
    }
}

.jobs-page-section > p:first-of-type {
    max-width: 1040px !important;
    text-align: center;
}

.jobs-page-section > h1:first-child::after {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
}

.jobs-page-section > h1:first-child {
    margin-bottom: 10px !important;
    padding-bottom: 0 !important;
}

.jobs-page-section > p:first-of-type::after {
    content: "";
    display: block;
    width: min(280px, 42vw);
    height: 2px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(120, 0, 0, 0.62), transparent);
}

.jobs-subtitle-line {
    display: inline-block;
}

@media (min-width: 992px) and (max-width: 1199px) {
    body[data-language="el"] .jobs-page-section > p:first-of-type {
        max-width: 820px !important;
    }

    body[data-language="el"] .jobs-subtitle-line {
        white-space: normal;
    }
}

.clients-section > .section-description {
    margin-bottom: 30px !important;
    text-align: center;
}

section.container.mt-5 > hr {
    width: min(760px, 100%);
    margin: 24px auto 34px;
    border-color: rgba(120, 0, 0, 0.18);
    opacity: 1;
}

.jobs-page-section > hr {
    display: none;
}

footer a {
    color: #fff;
    opacity: 0.92;
}

footer a:hover,
footer a:focus-visible {
    color: #fff;
    opacity: 1;
    text-decoration: underline !important;
}

footer {
    position: relative;
    overflow: hidden;
    min-height: 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 -12px 34px rgba(33, 37, 41, 0.08);
}

footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.11), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.08)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.10), transparent 55%);
}

.footer-container {
    position: relative;
    z-index: 1;
    gap: 3px;
}

.footer-links {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.92rem;
}

footer p,
footer a {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.45;
    opacity: 0.92;
}

footer p {
    margin: 0;
}

.cookie-overlay {
    z-index: 1900;
    background: rgba(15, 15, 15, 0.88);
    backdrop-filter: blur(10px);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    max-width: 880px;
}

.cookie-content p {
    margin: 0;
}

.quick-actions {
    position: fixed;
    right: 18px;
    top: 50%;
    z-index: 1600;
    display: grid;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(120, 0, 0, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 42px rgba(33, 37, 41, 0.13);
    backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-45%) translateX(16px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.quick-actions.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

.quick-actions__item {
    width: 48px;
    min-height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--brand-maroon);
    text-align: center;
}

.quick-actions__item i {
    font-size: 1.05rem;
}

.quick-actions__item span {
    position: absolute;
    right: calc(100% + 10px);
    min-width: max-content;
    padding: 7px 9px;
    border-radius: 8px;
    background: var(--brand-maroon);
    color: #fff;
    font-size: 0.78rem;
    opacity: 0;
    pointer-events: none;
    transform: translateX(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.quick-actions__item:hover,
.quick-actions__item:focus-visible {
    background: rgba(120, 0, 0, 0.065);
    color: var(--brand-maroon);
}

.quick-actions__item:hover span,
.quick-actions__item:focus-visible span {
    opacity: 1;
    transform: translateX(0);
}

.ux-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease var(--reveal-delay, 0ms), transform 0.55s ease var(--reveal-delay, 0ms);
}

body:not(.home-page):not(.reveal-ready) .card,
body:not(.home-page):not(.reveal-ready) .client-logo,
body:not(.home-page):not(.reveal-ready) .job-posting,
body:not(.home-page):not(.reveal-ready) .contact-details,
body:not(.home-page):not(.reveal-ready) .ratio,
body:not(.home-page):not(.reveal-ready) .policy-item,
body:not(.home-page):not(.reveal-ready) .industry-list li,
body:not(.home-page):not(.reveal-ready) .about-content-panel,
body:not(.home-page):not(.reveal-ready) .about-signal-panel,
body:not(.home-page):not(.reveal-ready) .jobs-list,
body:not(.home-page):not(.reveal-ready) .associate-resource-card {
    opacity: 0;
    transform: translateY(18px);
    animation: revealFallback 0.01s linear 1.2s forwards;
}

.ux-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 991px) {
    body {
        font-size: 0.98rem;
        padding-top: calc(78px + env(safe-area-inset-top, 0px));
    }

    .container {
        max-width: 94%;
    }

    .hero {
        margin-top: -70px;
        margin-bottom: -34px;
    }

    .hero-image {
        height: 310px;
    }

    .navbar .nav-link::after {
        right: 42%;
        left: 42%;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        padding: calc(8px + env(safe-area-inset-top, 0px)) 0 8px;
    }

    .navbar-brand {
        margin-right: auto;
        margin-left: 0;
        padding: 5px 10px;
    }

    .navbar-brand img {
        max-height: 40px;
    }

    .navbar-toggler {
        position: absolute;
        top: calc(12px + env(safe-area-inset-top, 0px));
        right: -14px;
        transform: none;
        padding: 8px 10px;
        border: 1px solid rgba(120, 0, 0, 0.18);
        border-radius: 8px;
        min-height: 42px;
    }

    .navbar.navbar-scrolled .navbar-toggler {
        top: calc(7px + env(safe-area-inset-top, 0px));
    }

    .navbar-collapse {
        max-height: calc(100dvh - 84px - env(safe-area-inset-top, 0px));
        overflow-y: auto;
        margin-top: 12px;
        padding: 14px;
        border: 1px solid var(--border-soft);
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 18px 42px rgba(33, 37, 41, 0.12);
    }

    .navbar .navbar-nav {
        gap: 6px;
    }

    .navbar .nav-link {
        width: min(320px, 100%);
        margin: 0 auto;
        text-align: center;
    }

    .navbar .nav-item {
        width: 100%;
    }

    .language-switcher {
        justify-content: center;
        width: 100%;
        margin: 4px 0 8px;
    }

    .language-switcher__button {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
    }

    .navbar .dropdown {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .industry-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 680px;
    }

    .client-info-grid,
    .client-info-grid--industries,
    .client-support-grid,
    .client-engagement-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .clients-overview-hero,
    .clients-intro-grid,
    .clients-page-grid,
    .clients-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .clients-dashboard-grid {
        grid-template-areas:
            "industries"
            "engagement"
            "trust";
    }

    .clients-dashboard-panel--wide {
        grid-row: auto;
    }

    .clients-overview-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .clients-trust-band {
        grid-template-columns: 1fr;
    }

    .container.py-3.mt-4.text-center,
    section.container.mt-5 > h1:first-child,
    section.container.mt-5 .col-12.text-center:first-child,
    section.container.mt-5 .col-12.text-center.mb-4:first-child {
        padding: 4px 0 14px;
    }

    .container.py-3.mt-4.text-center h1,
    .clients-section > h1:first-child,
    section.container.mt-5 > h1:first-child,
    section.container.mt-5 .col-12.text-center h1 {
        font-size: clamp(1.65rem, 5vw, 2.15rem);
    }

    .container.py-3.mt-4.text-center p,
    .clients-section > .section-description,
    section.container.mt-5 > p:first-of-type,
    section.container.mt-5 .col-12.text-center p {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .card-img-top {
        height: 180px;
    }

    .clients-section {
        padding: 32px 18px;
    }

    .job-posting {
        margin-bottom: 24px !important;
    }

    .job-card__main {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .job-card__actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-width: 0;
    }

    .job-filter-groups {
        grid-template-columns: 1fr;
    }

    .contact-details {
        padding: 16px;
    }

    .contact-details-column {
        align-items: flex-start;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-primary-panel,
    .contact-location-panel {
        padding: 22px;
    }

    .contact-page .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-page .contact-details p {
        min-height: auto;
    }

    .contact-page .contact-map-card,
    .contact-page .ratio,
    .contact-page .ratio iframe {
        min-height: 260px;
    }

    .about-content-panel {
        padding: 24px;
    }

    .about-toggle-controls {
        align-items: stretch;
    }

    .about-signal-panel {
        position: static;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-top: 18px;
    }

    .signal-item {
        padding: 15px;
    }

    .account-shell {
        grid-template-columns: 1fr;
    }

    .associate-resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    html {
        scroll-padding-top: 82px;
    }

    body {
        line-height: 1.58;
        padding-top: calc(70px + env(safe-area-inset-top, 0px));
    }

    .container {
        max-width: 100%;
        padding-right: 18px;
        padding-left: 18px;
    }

    .navbar .container {
        max-width: 100%;
        padding-right: 14px;
        padding-left: 14px;
    }

    .navbar {
        min-height: 66px;
    }

    .navbar-brand {
        margin-right: auto;
        margin-left: 0;
    }

    .navbar-brand img {
        max-height: 36px;
    }

    .navbar-toggler {
        position: absolute;
        top: calc(10px + env(safe-area-inset-top, 0px));
        right: 12px;
        transform: none;
    }

    .navbar.navbar-scrolled .navbar-toggler {
        top: calc(7px + env(safe-area-inset-top, 0px));
    }

    .navbar-collapse {
        width: min(230px, calc(100vw - 18px));
        max-height: calc(100dvh - 76px - env(safe-area-inset-top, 0px));
        margin-top: 10px;
        padding: 12px 10px;
    }

    .navbar .nav-link {
        width: 100%;
        padding: 10px 12px !important;
        font-size: 1rem;
    }

    #dropdownMenuButton {
        width: 58px;
        min-width: 58px;
        height: 46px;
        margin-top: 4px;
        margin-right: 0;
        margin-left: auto;
        padding: 0;
        font-size: 1.12rem;
    }

    .dropdown-menu {
        position: static !important;
        right: auto !important;
        left: auto !important;
        width: min(240px, 84vw);
        min-width: 0;
        margin: 10px 0 0;
        padding: 8px;
        text-align: center;
        transform: none !important;
    }

    .dropdown-menu.show {
        display: block;
        animation: mobileDropdownFade 0.2s ease both;
    }

    .dropdown-menu .dropdown-item {
        padding: 10px 16px 10px 12px;
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.5;
        text-align: center;
    }

    .hero {
        margin-top: -108px;
        margin-bottom: -78px;
        max-width: 100%;
    }

    .hero-image {
        height: 315px;
        background-size: contain;
    }

    .hero-image::after {
        top: 10%;
        right: 8%;
        bottom: 10%;
        left: 8%;
    }

    .hero::after {
        right: 18%;
        bottom: 74px;
        left: 18%;
        height: 20px;
        filter: blur(16px);
    }

    .container.my-5,
    .container.py-5,
    section.container.mt-5 {
        margin-top: 1.75rem !important;
        padding-top: 0 !important;
    }

    .hero {
        margin-bottom: 12px;
    }

    .home-page #categories,
    .hero + .container,
    .hero + section.container {
        margin-top: 0 !important;
    }

    .home-intro-section {
        margin-top: 18px;
        margin-bottom: 8px;
    }

    .row {
        --bs-gutter-x: 1rem;
    }

    .col-md-4 {
        margin-bottom: 16px;
    }

    .home-page .card,
    .card {
        margin-bottom: 16px;
    }

    .home-page .card:hover,
    .card:hover,
    .job-posting:hover,
    .client-logo:hover {
        transform: none !important;
        box-shadow: var(--shadow-soft);
    }

    .card:hover::before,
    .client-logo:hover::before {
        opacity: 0;
    }

    .card-img-top {
        height: 165px;
    }

    .card-body {
        padding: 16px;
    }

    .card-title,
    .service-title {
        font-size: 1.12rem;
        margin-bottom: 8px !important;
    }

    .service-description,
    .card-text {
        font-size: 0.95rem;
    }

    .container.py-3.mt-4.text-center,
    section.container.mt-5 > h1:first-child,
    section.container.mt-5 .col-12.text-center:first-child,
    section.container.mt-5 .col-12.text-center.mb-4:first-child,
    .clients-section > h1:first-child {
        padding-bottom: 12px;
    }

    .container.py-3.mt-4.text-center::after,
    section.container.mt-5 > h1:first-child::after,
    section.container.mt-5 .col-12.text-center:first-child::after,
    section.container.mt-5 .col-12.text-center.mb-4:first-child::after,
    .clients-section > h1:first-child::after {
        width: min(210px, 64vw);
        margin-top: 14px;
    }

    .container.py-3.mt-4.text-center h1,
    .clients-section > h1:first-child,
    section.container.mt-5 > h1:first-child,
    section.container.mt-5 .col-12.text-center h1 {
        font-size: 1.78rem;
        line-height: 1.18;
    }

    .clients-section {
        margin-top: 1.5rem !important;
        padding: 26px 16px;
        border-right: 0 !important;
        border-left: 0 !important;
        border-radius: 0;
    }

    .clients-section > .section-description {
        margin-bottom: 22px !important;
        text-align: left;
    }

    .clients-intro {
        margin-bottom: 26px;
        text-align: left;
    }

    .clients-content-block {
        margin-top: 30px;
        padding-top: 24px;
    }

    .clients-overview-hero {
        gap: 14px;
        padding-bottom: 18px;
    }

    .clients-overview-copy {
        min-height: auto;
        padding: 22px 18px;
    }

    .clients-intro-grid,
    .clients-page-grid {
        gap: 14px;
    }

    .clients-overview-metrics {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .clients-overview-metrics div {
        min-height: auto;
        padding: 15px 16px;
    }

    .clients-dashboard-grid {
        gap: 14px;
    }

    .clients-dashboard-panel {
        padding: 18px 16px;
    }

    .clients-section-heading {
        text-align: left;
    }

    .client-info-grid,
    .client-info-grid--industries,
    .client-support-grid,
    .client-engagement-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .client-engagement-list--compact {
        grid-auto-flow: row;
        grid-template-rows: auto;
    }

    .clients-support-links {
        grid-template-columns: 1fr;
    }

    .client-industry-pills {
        justify-content: flex-start;
    }

    .client-info-card {
        min-height: auto;
        padding: 16px;
    }

    .client-support-card {
        padding: 0;
    }

    .client-support-toggle {
        min-height: 58px;
        padding: 15px 16px;
    }

    .client-support-panel p {
        padding: 0 16px 16px;
    }

    .client-engagement-list li {
        min-height: auto;
    }

    .clients-trust-band {
        padding: 18px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .job-posting {
        padding: 18px !important;
    }

    .industry-list {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 18px;
    }

    .industry-list li {
        min-height: auto;
        padding: 12px 14px;
    }

    .client-category {
        margin-top: 2rem !important;
    }

    .client-category .d-flex.flex-wrap {
        gap: 12px;
    }

    .client-category .col-6 {
        width: calc(50% - 8px);
        min-height: 132px;
        padding: 0;
    }

    .client-logo {
        width: 100%;
        min-height: 86px;
        margin: 0 !important;
        padding: 12px;
    }

    .client-logo img {
        max-height: 58px;
    }

    .client-category p {
        font-size: 0.82rem;
        line-height: 1.25;
    }

    .job-title {
        font-size: 1.18rem;
        line-height: 1.3;
    }

    .job-meta-grid,
    .job-detail-meta {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .job-card__actions {
        grid-template-columns: 1fr;
    }

    .job-filter-select {
        min-height: 42px;
    }

    .job-details-btn,
    .job-quick-apply {
        min-height: 48px;
    }

    .job-posting p {
        margin-bottom: 5px;
        line-height: 1.45;
    }

    .job-posting .text-start {
        margin-top: 4px;
        margin-bottom: 4px;
    }

    .toggle-description {
        padding-left: 0;
    }

    .contact-details {
        margin-bottom: 18px;
    }

    .about-content-panel {
        padding: 22px 18px;
    }

    .about-content-panel::before {
        top: 18px;
        bottom: 18px;
        width: 3px;
    }

    .about-content-panel p,
    .about-content-panel p:first-child {
        font-size: 0.98rem;
        line-height: 1.66;
    }

    .about-toggle-area {
        gap: 12px;
        margin-top: 22px;
    }

    .about-toggle-controls {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-insight-trigger {
        justify-content: space-between;
        width: 100%;
    }

    .about-insight-panel {
        padding: 16px;
    }

    .about-signal-panel {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .signal-item {
        padding: 14px 16px;
    }

    .policies-header {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 22px;
    }

    .policies-grid ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .financial-statements-section {
        padding-top: 22px;
    }

    .financial-statements-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .financial-statements-list {
        grid-template-columns: 1fr;
    }

    .financial-statement-row {
        min-height: 50px;
    }

    .policy-modal {
        padding: 14px;
    }

    .policy-modal__panel {
        width: 100%;
        max-height: 86vh;
    }

    .policy-modal__header {
        padding: 16px;
    }

    .policy-modal__header h3 {
        font-size: 1.18rem;
    }

    .policy-modal__close {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .policy-modal__body {
        max-height: calc(86vh - 70px);
        padding: 18px 16px;
    }

    .job-modal {
        padding: 14px;
    }

    .job-modal__panel {
        width: 100%;
        max-height: 86vh;
    }

    .job-modal__header {
        padding: 16px;
    }

    .job-modal__header h3 {
        font-size: 1.18rem;
    }

    .job-modal__close {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .job-modal__body {
        max-height: calc(86vh - 70px);
        padding: 18px 16px;
    }

    .job-detail-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .quick-actions {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        padding: 7px 10px calc(7px + env(safe-area-inset-bottom, 0px));
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 8px 8px 0 0;
        transform: translateY(18px);
    }

    .quick-actions.is-visible {
        transform: translateY(0);
    }

    .quick-actions.is-docked {
        position: static;
        width: 100%;
        margin: 0;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .quick-actions.is-menu-hidden {
        opacity: 0;
        pointer-events: none;
        transform: translateY(18px);
    }

    .quick-actions__item {
        width: 100%;
        min-height: 50px;
        gap: 3px;
        border-radius: 7px;
    }

    .quick-actions__item span {
        position: static;
        min-width: 0;
        padding: 0;
        background: transparent;
        color: var(--brand-maroon);
        font-size: 0.72rem;
        line-height: 1;
        opacity: 1;
        transform: none;
    }

    .account-page-section,
    .associates-page-section {
        margin-bottom: 38px;
    }

    .account-intro-panel,
    .account-card,
    .associates-shell {
        padding: 22px 18px;
    }

    .account-intro-panel h2,
    .account-card h2,
    .associates-header h2 {
        font-size: 1.5rem;
    }

    .account-info-list p {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .associate-profile-actions {
        flex-direction: column;
    }

    .associate-resource-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .associate-resource-card {
        min-height: 92px;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }

    .ratio {
        min-height: 260px;
    }

    .ratio iframe {
        min-height: 260px;
    }

    footer {
        height: auto;
        min-height: 86px;
        padding: 16px 14px !important;
    }

    footer p {
        margin-top: 0;
        line-height: 1.45;
    }

    .footer-links {
        gap: 6px;
        font-size: 0.78rem;
    }

    .cookie-overlay {
        padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
    }

    #accept-cookies {
        margin-left: 0;
        width: min(220px, 100%);
    }
}

@media (max-width: 420px) {
    .hero {
        margin-top: -118px;
        margin-bottom: -88px;
    }

    .hero-image {
        height: 300px;
    }

    .hero-image::after {
        top: 12%;
        right: 9%;
        bottom: 12%;
        left: 9%;
    }

    .hero {
        margin-bottom: 10px;
    }

    .home-page #categories,
    .hero + .container,
    .hero + section.container {
        margin-top: 0 !important;
    }

    .home-intro-section {
        width: calc(100% - 32px);
        margin-top: 16px;
    }

    .home-intro-section h1 {
        font-size: 1.55rem;
    }

    .home-intro-section p {
        font-size: 0.95rem;
    }

    .container.py-3.mt-4.text-center h1,
    .clients-section > h1:first-child,
    section.container.mt-5 > h1:first-child,
    section.container.mt-5 .col-12.text-center h1 {
        font-size: 1.58rem;
    }

    .card-img-top {
        height: 150px;
    }

    .client-category .col-6 {
        width: 100%;
        min-height: auto;
    }

    .client-logo {
        min-height: 82px;
    }

}

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

    .ux-reveal {
        opacity: 1;
        transform: none;
    }

    .interactive-surface,
    .interactive-surface:hover,
    .interactive-surface:focus-within,
    .interactive-surface:focus-visible {
        transform: none !important;
    }

    .hero-image {
        animation: none !important;
    }

    .hero-image::after {
        animation: none !important;
        display: none;
    }

}

@media (min-width: 1051px) and (max-width: 1199px) {
    .contact-page .contact-layout {
        grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
        gap: 20px;
    }

    .contact-page .contact-primary-panel {
        min-height: 500px;
        padding: 24px;
    }

    .contact-page .contact-location-panel {
        padding: 18px;
    }

    .contact-page .contact-details {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-page .contact-details p {
        grid-column: span 1;
        padding-right: 13px;
        padding-left: 52px;
    }

    .contact-page .contact-details p:first-child,
    .contact-page .contact-details p:nth-child(4),
    .contact-page .contact-details .row {
        grid-column: 1 / -1;
    }

    .contact-page .contact-map-card,
    .contact-page .ratio,
    .contact-page .ratio iframe {
        min-height: 390px;
    }
}

@media (min-width: 700px) and (max-width: 1050px) {
    .contact-page .contact-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .contact-page .contact-primary-panel,
    .contact-page .contact-location-panel {
        padding: 24px;
    }

    .contact-page .contact-primary-panel {
        min-height: auto;
    }

    .contact-page .contact-details {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-page .contact-details p {
        grid-column: span 1;
        min-height: 66px;
        padding: 14px 14px 14px 54px;
    }

    .contact-page .contact-details p:first-child,
    .contact-page .contact-details p:nth-child(4),
    .contact-page .contact-details .row {
        grid-column: 1 / -1;
    }

    .contact-page .contact-map-card,
    .contact-page .ratio,
    .contact-page .ratio iframe {
        min-height: 340px;
    }
}

@media (max-width: 799px) {
    .contact-page .contact-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-page .contact-primary-panel,
    .contact-page .contact-location-panel {
        padding: 20px;
    }

    .contact-page .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-page .contact-details p {
        grid-column: 1 / -1;
        min-height: 62px;
        padding: 14px 14px 14px 52px;
    }

    .contact-page .contact-map-card,
    .contact-page .ratio,
    .contact-page .ratio iframe {
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .contact-page .contact-section {
        width: min(100%, calc(100% - 24px));
    }

    .contact-page .contact-primary-panel,
    .contact-page .contact-location-panel {
        padding: 18px 16px;
    }

    .contact-page .contact-primary-panel h3,
    .contact-page .contact-location-panel h3 {
        font-size: 1.18rem;
    }
}

@media (min-width: 700px) and (max-width: 1320px) {
    .contact-page .contact-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .contact-page .contact-primary-panel {
        min-height: auto;
    }

    .contact-page .contact-details {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-page .contact-details p {
        grid-column: span 1;
        min-height: 66px;
    }

    .contact-page .contact-details p:first-child,
    .contact-page .contact-details p:nth-child(4),
    .contact-page .contact-details .row {
        grid-column: 1 / -1;
    }

    .contact-page .contact-map-card,
    .contact-page .ratio,
    .contact-page .ratio iframe {
        min-height: 340px;
    }
}

@media (max-width: 900px) {
    .contact-page .contact-details p strong {
        white-space: nowrap;
    }

    .contact-page .contact-details p:nth-child(4) span {
        white-space: normal;
    }
}

@media (max-width: 820px) {
    .contact-page .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-page .contact-details p {
        grid-column: 1 / -1;
    }

    .contact-page .contact-details p:nth-child(3) {
        align-items: center;
    }

    .contact-page .contact-details p:nth-child(3) a {
        display: inline-flex;
        align-items: center;
        max-width: 100%;
        font-size: 0.92em;
        line-height: 1.2;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .contact-page .contact-details p:nth-child(3) strong {
        display: inline-flex;
        align-items: center;
        line-height: 1.2;
    }
}

@media (min-width: 800px) and (max-width: 1320px) {
    .contact-page .contact-section {
        width: min(100%, calc(100% - 32px));
    }

    .contact-page .contact-layout {
        grid-template-columns: minmax(0, 1.42fr) minmax(210px, 0.58fr);
        gap: 16px;
        align-items: stretch;
    }

    .contact-page .contact-primary-panel {
        min-height: auto;
        padding: 22px;
    }

    .contact-page .contact-location-panel {
        padding: 18px;
    }

    .contact-page .contact-map-card,
    .contact-page .ratio,
    .contact-page .ratio iframe {
        min-height: 300px;
    }
}

@media (min-width: 800px) and (max-width: 1200px) {
    .contact-page .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-page .contact-details p {
        grid-column: 1 / -1;
    }
}

/* Contact page stakeholder layout refresh */
.contact-page .contact-layout {
    grid-template-columns: minmax(500px, 1.05fr) minmax(360px, 0.95fr);
    gap: 28px;
    align-items: stretch;
}

.contact-page .contact-primary-panel {
    min-height: auto;
    padding: 30px;
}

.contact-page .contact-location-panel {
    padding: 22px;
}

.contact-page .contact-details {
    grid-template-columns: 1fr;
    gap: 14px;
    width: min(100%, 590px);
}

.contact-page .contact-details p,
.contact-page .contact-details p:first-child,
.contact-page .contact-details p:nth-child(4),
.contact-page .contact-details .row {
    grid-column: 1 / -1;
}

.contact-page .contact-details p {
    min-height: 58px;
    padding: 14px 18px 14px 58px;
    column-gap: 8px;
}

.contact-page .contact-details p:first-child {
    min-height: 68px;
}

.contact-page .contact-details p strong {
    margin-right: 4px;
}

.contact-page .contact-details p:not(:first-child):not(.contact-address) {
    flex-wrap: wrap;
}

.contact-page .contact-details p:not(:first-child):not(.contact-address) strong {
    flex: 0 0 auto;
}

.contact-page .contact-address span {
    display: block;
    white-space: normal;
    line-height: 1.45;
}

.contact-page .contact-map-card,
.contact-page .ratio,
.contact-page .ratio iframe {
    min-height: 360px;
}

@media (min-width: 800px) and (max-width: 1320px) {
    .contact-page .contact-layout {
        grid-template-columns: minmax(430px, 1.08fr) minmax(300px, 0.92fr);
        gap: 20px;
    }

    .contact-page .contact-details {
        grid-template-columns: 1fr;
        width: min(100%, 560px);
    }

    .contact-page .contact-map-card,
    .contact-page .ratio,
    .contact-page .ratio iframe {
        min-height: 320px;
    }
}

@media (max-width: 799px) {
    .contact-page .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 444px) {
    .contact-page .contact-primary-panel,
    .contact-page .contact-location-panel {
        padding-right: 14px;
        padding-left: 14px;
    }

    .contact-page .contact-details p {
        min-height: 56px;
        padding: 12px 12px 12px 46px;
        font-size: 0.92rem;
    }

    .contact-page .contact-details p i {
        left: 12px;
        width: 26px;
        height: 26px;
        font-size: 0.86rem;
    }

    .contact-page .contact-details p:first-child {
        min-height: 62px;
        padding-left: 52px;
        font-size: 0.94rem;
    }

    .contact-page .contact-details p:first-child i {
        width: 30px;
        height: 30px;
    }

    .contact-page .contact-details p:nth-child(3) a {
        font-size: 0.9rem;
    }
}

@media (max-width: 1199.98px) {
    .navbar .container {
        max-width: 100%;
        padding-right: 14px;
        padding-left: 14px;
        position: relative;
    }

    .navbar-collapse {
        position: absolute;
        top: calc(100% + 8px);
        right: 12px;
        left: auto;
        z-index: 2100;
        width: min(230px, calc(100vw - 28px));
        max-height: calc(100dvh - 86px - env(safe-area-inset-top, 0px));
        margin-top: 0;
        padding: 14px;
        border: 1px solid rgba(120, 0, 0, 0.16);
        border-top: 3px solid var(--brand-maroon);
        border-radius: 8px;
        background:
            linear-gradient(135deg, rgba(120, 0, 0, 0.055), transparent 42%),
            linear-gradient(#fff, #fff);
        box-shadow: 0 24px 52px rgba(33, 37, 41, 0.18);
        overflow: hidden;
        scrollbar-width: none;
    }

    .navbar-collapse::-webkit-scrollbar {
        display: none;
    }

    .navbar-collapse::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(rgba(120, 0, 0, 0.045) 1px, transparent 1px),
            linear-gradient(90deg, rgba(120, 0, 0, 0.035) 1px, transparent 1px);
        background-size: 28px 28px;
        mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.55), transparent 68%);
        pointer-events: none;
    }

    .navbar-collapse::after {
        content: none;
    }

    .navbar-toggler,
    .navbar.navbar-scrolled .navbar-toggler {
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
    }

    .navbar-toggler:hover,
    .navbar-toggler:focus-visible,
    .navbar.navbar-scrolled .navbar-toggler:hover,
    .navbar.navbar-scrolled .navbar-toggler:focus-visible {
        transform: translateY(-50%);
    }

    .navbar .navbar-nav {
        position: relative;
        z-index: 1;
        align-items: flex-end;
        gap: 7px;
    }

    .navbar .nav-item {
        width: 100%;
    }

    .navbar .nav-link {
        width: 100%;
        margin: 0;
        padding: 10px 12px !important;
        border: 1px solid transparent;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.62);
        text-align: right;
        box-shadow: 0 8px 18px rgba(33, 37, 41, 0.035);
    }

    .navbar .nav-link::after {
        right: 12px;
        left: auto;
        width: 34px;
    }

    .navbar .nav-link:hover,
    .navbar .nav-link:focus-visible,
    .navbar .nav-item.active .nav-link {
        border-color: rgba(120, 0, 0, 0.14);
        background: rgba(120, 0, 0, 0.045);
        transform: none;
    }

    .language-switcher {
        justify-content: flex-end;
        align-self: flex-end;
        order: -10;
        width: 100%;
        margin: 0 0 8px;
        padding-top: 0;
        text-align: right;
    }

    .account-menu-item {
        order: 20;
        margin-top: 6px;
        padding-top: 10px;
    }

    .navbar .dropdown {
        align-items: flex-end;
        width: 100%;
    }

    #dropdownMenuButton {
        margin-right: 0;
        margin-left: auto;
    }

    .navbar .dropdown-menu {
        position: static !important;
        width: 100%;
        margin-top: 8px;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        text-align: right;
    }

    .navbar .dropdown-menu .dropdown-item {
        margin-top: 7px;
        padding: 10px 12px;
        border: 1px solid transparent;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.62);
        box-shadow: 0 8px 18px rgba(33, 37, 41, 0.035);
        color: var(--ink);
        font-weight: 700;
        text-align: right;
        transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .navbar .dropdown-menu .dropdown-item:hover,
    .navbar .dropdown-menu .dropdown-item:focus-visible {
        border-color: rgba(120, 0, 0, 0.14);
        background: rgba(120, 0, 0, 0.045);
        color: var(--brand-maroon);
        transform: none;
    }

    .quick-actions.is-menu-hidden {
        opacity: 0;
        pointer-events: none;
        transform: translateY(-50%) translateX(16px);
    }
}

@media (max-width: 700px) {
    .home-trust-strip {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        width: min(390px, calc(100% - 28px));
        margin-top: 20px;
        overflow: hidden;
        border: 1px solid rgba(120, 0, 0, 0.13);
        border-radius: 8px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.96));
        box-shadow: 0 14px 30px rgba(33, 37, 41, 0.065);
        opacity: 1 !important;
        transform: none !important;
    }

    .home-trust-strip .trust-metric {
        min-height: 86px;
        padding: 12px 8px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1 !important;
        text-align: center;
        transform: none !important;
    }

    .home-trust-strip .trust-metric + .trust-metric {
        border-left: 1px solid rgba(120, 0, 0, 0.10);
    }

    .home-trust-strip .trust-metric strong {
        min-height: 2.1em;
        display: grid;
        place-items: center;
        font-size: 0.8rem;
        line-height: 1.05;
    }

    .home-trust-strip .trust-metric span {
        margin-top: 4px;
        font-size: 0.66rem;
        line-height: 1.2;
    }
}

@media (max-width: 360px) {
    .home-trust-strip {
        gap: 0;
        width: calc(100% - 24px);
    }

    .home-trust-strip .trust-metric {
        min-height: 82px;
        padding: 10px 5px;
    }

    .home-trust-strip .trust-metric strong {
        font-size: 0.72rem;
    }

    .home-trust-strip .trust-metric span {
        font-size: 0.6rem;
    }
}

@media (max-width: 991px) {
    .job-filter-mobile-trigger {
        display: flex;
    }

    .job-filter-mobile-close {
        display: inline-grid;
    }

    .job-filter-panel {
        position: fixed;
        top: 50%;
        left: 50%;
        z-index: 2200;
        display: block;
        width: min(420px, calc(100vw - 34px));
        max-height: min(82vh, 620px);
        margin: 0;
        padding: 20px 18px 18px;
        overflow-y: auto;
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, -46%) scale(0.97);
    }

    .job-filter-panel.is-mobile-open {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (max-width: 600px) {
    .capability-strip {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-content: center;
        gap: 10px;
        width: min(360px, calc(100% - 36px));
        margin-top: 4px;
        margin-bottom: 28px;
    }

    .capability-strip span {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 8px 6px;
        font-size: 0.82rem;
        text-align: center;
        white-space: nowrap;
    }
}

@media (max-width: 360px) {
    .capability-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(260px, calc(100% - 36px));
    }
}

@media (min-width: 992px) and (max-width: 1300px) {
    .hero {
        margin-bottom: -24px;
    }

    .hero + .container,
    .hero + section.container,
    .hero + .container.py-3.mt-4.text-center,
    .hero + section.container.mt-5,
    .hero + .container.mt-5 {
        margin-top: 0 !important;
    }
}

@media (min-width: 831px) and (max-width: 991px) {
    .hero {
        margin-bottom: 22px;
    }

    .hero + .container,
    .hero + section.container {
        margin-top: 0 !important;
    }
}

@media (min-width: 700px) and (max-width: 830px) {
    .hero {
        margin-bottom: 42px;
    }

    .hero + .container,
    .hero + section.container {
        margin-top: 0 !important;
    }
}

@media (max-width: 690px) {
    .hero {
        margin-bottom: 6px;
    }

    .home-intro-section {
        margin-top: -16px;
    }

    .hero + .container,
    .hero + section.container {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .hero + .container h1:first-child,
    .hero + section.container h1:first-child {
        margin-top: -20px;
    }

    .hero::after {
        display: none;
    }

    .hero-image::after {
        top: 50%;
        right: 0;
        bottom: auto;
        left: 0;
        height: clamp(86px, 24.3vw, 112px);
        transform: translate(-120%, -50%);
        animation-name: heroGradientSweepMobile;
    }
}

@keyframes heroGradientSweepMobile {
    from {
        transform: translate(-120%, -50%);
    }
    to {
        transform: translate(120%, -50%);
    }
}
