/* General Styles */
html {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: #121212;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Push footer to bottom */
.site-footer {
    margin-top: auto;
}

/* Header */
.site-header {
    background: #121212;
    padding: 20px 4%; /* Reduced horizontal padding from 5% to 4% */
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px; /* Set a consistent max-width */
    margin: 0 auto;    /* Center the header content */
    gap: 40px;
}

.logo img {
    max-height: 55px;
    width: auto;
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 30px;
    margin-left: auto;
}

/* Burger button — hidden on desktop */
.burger {
    display: none;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    margin-left: auto;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Burger X state */
.burger.open .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger.open .burger-line:nth-child(2) {
    opacity: 0;
}
.burger.open .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer — always hidden until .open */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: #1a1a1a;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 5%;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s ease;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover {
    background: rgba(255,255,255,0.06);
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    opacity: 0.7;
}

.upload-cv-btn {
    background: #fff;
    color: #121212;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    border: 2px solid #fff;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Animation */
.upload-cv-btn:hover {
    background: #121212;
    color: #fff;
    transform: scale(1.05);
}

/* Click Animation */
.upload-cv-btn:active {
    transform: scale(0.95);
}

/* Ripple Effect */
.upload-cv-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.upload-cv-btn:active::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Hero (banner) */
.hero {
    background: #121212;
    color: #fff;
    height: 70vh; /* Adjust height as needed */
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: flex-start;
    padding: 20px 4%; /* Reduced horizontal padding from 5% to 4% */
}

.hero-content {
    max-width: 1500px; /* Same max-width as the header */
    width: 100%;
    margin: 0 auto; /* Center the hero content */
    display: flex; /* Flex to align text and animation side by side */
    align-items: center; /* Vertically center items */
    justify-content: space-between; /* Space between text and animation */
}

.hero-text {
    max-width: 50%; /* Limit the text to half the width of the banner */
    width: 100%;
}

.hero-title {
    font-weight: 600;
    font-size: 3.5rem; /* Large text size */
    line-height: 1.2;
    margin: 0 0 20px 0;
    text-align: left;
}

.hero-subtitle {
    font-weight: 300;
    font-size: 1.2rem;
    margin: 0;
    text-align: left;
}

.hero-animation {
    width: 50%; /* Reduced from 60% to 50% to make animations smaller */
    max-width: 800px; /* Kept the max-width */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-animation img {
    width: 100%; /* Make the GIF responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: Rounded corners */
}

/* Intro text section */
.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 150px auto 80px auto;
    padding: 0 20px;
    color: #121212;
}

.intro-text h2 {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 0;
}

/* Industries section */
.industries {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    row-gap: 100px; /* Increased vertical gap */
    column-gap: 150px; /* Increased horizontal gap */
    max-width: 1100px; /* Kept original max-width */
    margin: 0 auto 80px auto;
    padding: 0 8%; /* Kept original horizontal padding */
    color: #121212;
}

.industry-item {
    text-align: center;
}

.industry-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 35px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0) saturate(100%) invert(8%) sepia(20%) saturate(2700%) hue-rotate(2deg) brightness(90%) contrast(90%);
}

/* Health & Social Care */
.industry-icon.health {
    background-image: url("../images/healthcare.svg");
}

/* Housing & Accommodation */
.industry-icon.housing {
    background-image: url("../images/house.svg");
}

/* Hospitality */
.industry-icon.hospitality {
    background-image: url("../images/hospitality.svg");
}

/* Engineering */
.industry-icon.engineering {
    background-image: url("../images/engineering.svg");
}

/* Education */
.industry-icon.education {
    background-image: url("../images/education.svg");
}

/* Construction */
.industry-icon.construction {
    background-image: url("../images/construction.svg");
}

/* Admin & HR */
.industry-icon.admin {
    background-image: url("../images/admin.svg");
}

/* Marketing */
.industry-icon.marketing {
    background-image: url("../images/marketing.svg");
}

/* Finance & Legal */
.industry-icon.finance {
    background-image: url("../images/finance.svg");
}

.industry-name {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
    max-width: 150px; /* Limit the width of the text to force new lines */
    margin-left: auto;
    margin-right: auto; /* Center the text box */
    word-wrap: break-word; /* Ensure text wraps within the defined width */
}

/* Typed.js Text Styling */
#typed {
    color: #fff; /* Match the hero text color */
    font-weight: 600;
}

/* Intro Text Right-Aligned Section */
.intro-text-right {
    padding-top: 120px;    /* Maintain top padding */
    padding-bottom: 60px;  /* Reduced bottom padding */
    padding-left: 4%;
    padding-right: 4%;
    background-color: #f9f9f9; /* Existing background color */
}

.intro-text-right .intro-content {
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center;     /* Vertically center the items */
    max-width: 1400px;       /* Increased from 1100px to 1400px */
    margin: 0 auto;          /* Center the content */
    gap: 20px;               /* Space between animation and text */
}

.intro-text-right .intro-animation {
    width: 50%; /* Width remains the same */
    max-width: 800px; /* Width remains the same */
    display: flex;
    justify-content: center; /* Center the animation within its container */
}

.intro-text-right .intro-animation img.intro-gif {
    width: 80%; /* Reduce size to 80% of the container's width */
    max-width: 600px; /* Limit the maximum width */
    height: auto; /* Maintain the aspect ratio */
    border-radius: 8px; /* Optional: Keep rounded corners */
}

.intro-text-right .intro-text-content {
    width: 40%; /* Width remains the same */
    text-align: left; /* Text alignment remains the same */
}

.intro-text-right .intro-text-content h1 {
    font-size: 2.2rem; /* Adjust font size as needed */
    margin: 0;
    color: #121212; /* Text color */
}

.intro-text-right .intro-text-content p.intro-paragraph {
    font-size: 1.5rem; /* Increased font size */
    line-height: 1.6;  /* Improve readability */
    color: #121212;    /* Text color */
    margin-top: 20px;  /* Space above the paragraph */
}


/* Intro Text Left-Aligned Section */
.intro-text-left {
    padding-top: 60px;     /* Reduced top padding */
    padding-bottom: 120px; /* Maintain bottom padding */
    padding-left: 4%;
    padding-right: 4%;
    background-color: #f0f0f0; /* Existing background color */
}

.intro-text-left .intro-content {
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center;     /* Vertically center the items */
    max-width: 1400px;       /* Increased from 1100px to 1400px */
    margin: 0 auto;
    gap: 20px;               /* Space between text and animation */
}

.intro-text-left .intro-animation {
    width: 50%; /* Width remains the same */
    max-width: 800px; /* Width remains the same */
    display: flex;
    justify-content: center; /* Center the animation within its container */
}

.intro-text-left .intro-animation img.intro-gif {
    width: 80%; /* Reduce size to 80% of the container's width */
    max-width: 600px; /* Limit the maximum width */
    height: auto; /* Maintain the aspect ratio */
    border-radius: 8px; /* Optional: Keep rounded corners */
}

.intro-text-left .intro-text-content {
    width: 40%; /* Width remains the same */
    text-align: left;
}

.intro-text-left .intro-text-content h1 {
    font-size: 2.2rem;
    margin: 0;
    color: #121212;
}

.intro-text-left .intro-text-content ul.intro-bullets {
    font-size: 1.5rem; /* Match the font size */
    line-height: 1.6;  /* Match line height for readability */
    color: #121212;    /* Ensure consistent text color */
    padding-left: 0;   /* Remove any left padding for alignment */
    list-style-position: inside; /* Ensure bullets are aligned with text */
}

.intro-text-left .intro-text-content ul.intro-bullets li {
    margin-bottom: 20px; /* Increased from 10px to 15px */
    font-size: 1.2rem; /* Increased from 1rem to 1.2rem */
    color: #121212;
}

.intro-text-left .intro-text-content ul.intro-bullets li::marker {
    color: #121212; /* Bullet color */
}


.intro-text-left .intro-text-content ul.intro-bullets li strong {
    font-weight: 700; /* Ensure boldness */
    color: #121212;   /* Keep text color consistent */
}


/* Hire Now Section */
.hire-now {
    padding: 100px 4%; /* Adjust padding as needed */
    background-color: #ffffff; /* Optional: white background */
    text-align: center;
}

.hire-now-content {
    max-width: 1400px;
    margin: 0 auto;
}

.hire-now h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #121212;
}

.hire-now p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #121212;
}

.hire-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.hire-btn {
    background-color: #121212;
    color: #fff; /* Ensures the icon is visible */
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
    width: 60px;
    height: 60px;
}

.hire-icon {
    width: 24px; /* Adjust size as needed */
    height: 24px;
    fill: #ffffff; /* Ensure the icon is white */
}

.hire-btn:hover {
    background-color: #333; /* Slightly lighter on hover */
    transform: scale(1.1);
}

.hire-btn:active {
    transform: scale(0.95);
}

/* Optional: Focus State for Accessibility */
.hire-btn:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Contact Info Animation */
.contact-info {
    max-width: 600px;
    margin: 20px auto 0 auto;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-info.show {
    opacity: 1;
    transform: translateY(0);
}

.contact-info p {
    font-size: 1.2rem;
    color: #121212;
}

/* Footer */
.site-footer {
    background-color: #121212; /* Dark background color */
    color: #fff; /* White text color */
    text-align: center; /* Center the text */
    padding: 20px 4%; /* Padding for spacing */
    font-size: 0.9rem; /* Adjust font size */
    font-weight: 600; /* Slightly bolder text */
    line-height: 1.4; /* Improve readability */
}

.site-footer .footer-content {
    max-width: 1400px; /* Align with other sections */
    margin: 0 auto; /* Center align within the container */
}

/* ========================================
   RESPONSIVE — TABLET (max 900px)
   ======================================== */
@media (max-width: 900px) {

    /* Header — switch to burger */
    .main-nav,
    .upload-cv-btn {
        display: none;
    }

    .burger {
        display: block;
    }

    .logo img {
        max-height: 38px;
    }

    .header-inner {
        gap: 10px;
    }

    /* Hero */
    .hero {
        height: auto;
        padding: 40px 4%;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-animation {
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
    }

    .hero-animation img {
        width: 100%;
        height: auto;
    }

    /* Intro sections */
    .intro-text-right .intro-content,
    .intro-text-left .intro-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .intro-text-right .intro-animation,
    .intro-text-right .intro-text-content,
    .intro-text-left .intro-animation,
    .intro-text-left .intro-text-content {
        width: 100%;
        padding: 0;
    }

    .intro-text-right .intro-text-content h1,
    .intro-text-left .intro-text-content h1 {
        font-size: 2rem;
    }

    .intro-text-right .intro-text-content ul.intro-bullets,
    .intro-text-left .intro-text-content ul.intro-bullets {
        padding-left: 0;
        list-style-position: inside;
    }

    .intro-text-right .intro-text-content ul.intro-bullets li,
    .intro-text-left .intro-text-content ul.intro-bullets li {
        margin-bottom: 12px;
        font-size: 1.1rem;
    }

    /* Industries */
    .industries {
        column-gap: 40px;
        row-gap: 60px;
    }

    /* Hire Now */
    .hire-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hire-btn {
        width: 60px;
        height: 60px;
    }

    .contact-info p {
        font-size: 1rem;
    }

    /* Footer */
    .site-footer {
        padding: 15px 4%;
        font-size: 0.8rem;
    }

    /* Vacancies grid */
    .vacancies-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .vacancies-hero h1 {
        font-size: 2.2rem;
    }
}

/* ========================================
   RESPONSIVE — MOBILE (max 540px)
   ======================================== */
@media (max-width: 540px) {

    /* Header — stack logo + hide nav text, keep upload btn */
    .header-inner {
        flex-wrap: wrap;
        gap: 10px;
    }

    .main-nav {
        gap: 12px;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .upload-cv-btn {
        padding: 7px 12px;
        font-size: 0.75rem;
    }

    /* Hero */
    .hero {
        padding: 30px 4%;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    /* Intro text */
    .intro-text {
        margin: 60px auto 40px auto;
    }

    .intro-text h2 {
        font-size: 1.2rem;
    }

    .intro-text-right,
    .intro-text-left {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .intro-text-right .intro-text-content h1,
    .intro-text-left .intro-text-content h1 {
        font-size: 1.5rem;
    }

    .intro-text-right .intro-text-content p.intro-paragraph,
    .intro-text-left .intro-text-content ul.intro-bullets li {
        font-size: 1rem;
    }

    /* Industries */
    .industries {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
        row-gap: 40px;
        padding: 0 4%;
    }

    /* Hire Now */
    .hire-now {
        padding: 60px 4%;
    }

    .hire-now h2 {
        font-size: 1.8rem;
    }

    .hire-now p {
        font-size: 1rem;
    }

    .contact-info {
        padding: 15px;
    }

    .contact-info p {
        font-size: 0.95rem;
    }

    /* Vacancies */
    .vacancies-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .vacancies-hero {
        padding: 50px 4%;
    }

    .vacancies-hero h1 {
        font-size: 1.8rem;
    }

    .vacancies-hero p {
        font-size: 1rem;
    }

    /* Modal */
    .modal-content {
        width: 95%;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-header h2 {
        font-size: 1.4rem;
    }

    .modal-body {
        padding: 20px;
    }
}

/* ========================================
   VACANCIES PAGE STYLES
   ======================================== */

/* Vacancies Hero Section */
.vacancies-hero {
    background: #121212;
    color: #fff;
    padding: 80px 4%;
    text-align: center;
}

.vacancies-hero-content {
    max-width: 1500px;
    margin: 0 auto;
}

.vacancies-hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.vacancies-hero p {
    font-size: 1.2rem;
    font-weight: 300;
    margin: 0;
    opacity: 0.9;
}

/* Vacancies Container */
.vacancies-container {
    margin: 60px auto;
    padding: 0 4%;
}

/* Loading State */
.loading {
    text-align: center;
    padding: 60px 20px;
    font-size: 1.2rem;
    color: #666;
}

/* Vacancies Grid */
.vacancies-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

/* Vacancy Card */
.vacancy-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vacancy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #121212, #444);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.vacancy-card:hover {
    border-color: #121212;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vacancy-card:hover::before {
    transform: scaleX(1);
}

.vacancy-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #121212;
    line-height: 1.3;
}

.vacancy-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.vacancy-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #555;
}

.vacancy-meta-item svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    opacity: 0.7;
}

.view-details-btn {
    background: #121212;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.view-details-btn:hover {
    background: #333;
    transform: scale(1.02);
}

/* Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

/* Modal Content */
.modal-content {
    background: #121212;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

/* Modal Header */
.modal-header {
    background: #121212;
    color: #fff;
    padding: 30px;
    position: relative;
}

/* Modal Body scrolls independently */
.modal-body {
    background: #fff;
    padding: 40px;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 40px 0 0;
    line-height: 1.3;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}



.modal-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.modal-meta-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.modal-meta-item-content strong {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-meta-item-content span {
    font-size: 1.1rem;
    color: #121212;
    font-weight: 600;
}

.modal-section {
    margin-bottom: 30px;
}

.modal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #121212;
}

.modal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.modal-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-section ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.modal-section ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #121212;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Apply Button */
.apply-btn {
    background: #121212;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

.apply-btn:hover {
    background: #333;
    transform: scale(1.02);
}

/* ========================================
   MODERN HOMEPAGE
   Scoped to .home-page to preserve vacancies
   ======================================== */

.home-page {
    --ink: #111111;
    --paper: #f6f4ef;
    --white: #ffffff;
    --muted: #686864;
    --line: #dedbd3;
    --dark-line: rgba(255, 255, 255, 0.16);
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.home-page *,
.home-page *::before,
.home-page *::after {
    box-sizing: border-box;
}

.home-page main {
    overflow: hidden;
}

.home-page a {
    color: inherit;
}

.home-page .home-container {
    width: min(1200px, calc(100% - 48px));
    margin-inline: auto;
}

.home-page .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(17, 17, 17, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
}

.home-page .header-inner {
    width: min(1200px, calc(100% - 48px));
    max-width: none;
    min-height: 48px;
    margin-inline: auto;
    gap: 28px;
}

.home-page .logo {
    display: inline-flex;
    flex-shrink: 0;
}

.home-page .logo img {
    display: block;
    width: auto;
    max-height: 46px;
}

.home-page .main-nav {
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.home-page .nav-link {
    position: relative;
    padding-block: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.home-page .nav-link::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.home-page .nav-link:hover {
    opacity: 1;
    color: var(--white);
}

.home-page .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.home-page .button {
    min-height: 50px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.home-page .button:hover {
    transform: translateY(-2px);
}

.home-page .button-light {
    background: var(--white);
    color: var(--ink);
}

.home-page .button-light:hover {
    background: var(--paper);
}

.home-page .button-dark {
    background: var(--ink);
    color: var(--white);
}

.home-page .button-dark:hover {
    background: #2a2a2a;
}

.home-page .button-outline {
    border-color: var(--ink);
    background: transparent;
    color: var(--ink);
}

.home-page .button-outline:hover {
    background: var(--ink);
    color: var(--white);
}

.home-page .header-cta {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 0.82rem;
}

.home-page .burger {
    margin-left: auto;
}

.home-page .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 8px 24px 20px;
    background: var(--ink);
    border-bottom: 1px solid var(--dark-line);
}

.home-page .mobile-nav-link {
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    border-bottom-color: var(--dark-line);
}

.home-page .mobile-nav-cta {
    margin-top: 10px;
    padding: 14px 18px;
    border: 0;
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    text-align: center;
}

.home-page .home-hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    background: var(--ink);
    color: var(--white);
}

.home-page .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
    align-items: center;
    gap: clamp(40px, 7vw, 96px);
    padding-block: 90px 104px;
}

.home-page .eyebrow {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.home-page .eyebrow-dark {
    color: #73736e;
}

.home-page .hero-copy h1,
.home-page .section-heading h2,
.home-page .candidate-panel h2,
.home-page .contact-panel h2 {
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.home-page .hero-copy h1 {
    max-width: 690px;
    font-size: clamp(3.6rem, 6.1vw, 5.8rem);
}

.home-page .hero-copy h1 span {
    color: #a8a8a3;
}

.home-page .hero-lead {
    max-width: 590px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    line-height: 1.7;
}

.home-page .hero-actions,
.home-page .contact-actions,
.home-page .candidate-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.home-page .hero-actions {
    margin-top: 36px;
}

.home-page .text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-block: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.home-page .text-link span,
.home-page .button span {
    transition: transform 180ms ease;
}

.home-page .text-link:hover span,
.home-page .button:hover span {
    transform: translate(2px, -1px);
}

.home-page .text-link-light {
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}

.home-page .hero-art {
    min-width: 0;
}

.home-page .hero-art-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dark-line);
    border-radius: 20px;
    background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        #151515;
    background-size: 42px 42px;
}

.home-page .hero-art-frame::after {
    content: '';
    position: absolute;
    inset: auto -22% -52% 20%;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.home-page .hero-art-frame img {
    position: relative;
    z-index: 1;
    width: 112%;
    max-width: none;
    height: auto;
    transform: translate(6%, 3%);
}

.home-page .hero-art-label {
    position: absolute;
    z-index: 2;
    top: 22px;
    left: 22px;
    padding: 8px 12px;
    border: 1px solid var(--dark-line);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.68);
    background: rgba(17, 17, 17, 0.75);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.home-page .proof-strip {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.home-page .proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.home-page .proof-item {
    min-height: 146px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--line);
}

.home-page .proof-item:last-child {
    border-right: 1px solid var(--line);
}

.home-page .proof-item strong {
    margin-bottom: 5px;
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.home-page .proof-item span {
    color: var(--muted);
    font-size: 0.82rem;
}

.home-page .home-section {
    padding-block: 150px;
}

.home-page .section-heading {
    max-width: 690px;
    margin-bottom: 56px;
}

.home-page .section-heading h2,
.home-page .candidate-panel h2,
.home-page .contact-panel h2 {
    font-size: clamp(2.5rem, 4.6vw, 4.25rem);
}

.home-page .section-heading > p:last-child,
.home-page .candidate-panel > div > p:last-child,
.home-page .contact-panel > p {
    max-width: 590px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.home-page .expertise-section {
    background: var(--paper);
}

.home-page .expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.home-page .expertise-card {
    min-height: 230px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.48);
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.home-page .expertise-card:hover {
    transform: translateY(-4px);
    border-color: #b9b6ae;
    background: var(--white);
    box-shadow: 0 18px 45px rgba(17, 17, 17, 0.06);
}

.home-page .expertise-card img {
    display: block;
    width: 38px;
    height: 38px;
    margin-bottom: 38px;
    object-fit: contain;
}

.home-page .expertise-card h3,
.home-page .process-step h3,
.home-page .benefit-card h3 {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.home-page .expertise-card p,
.home-page .process-step p,
.home-page .benefit-card p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.home-page .process-section {
    position: relative;
    background: var(--ink);
    color: var(--white);
}

.home-page .process-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: max(24px, calc((100vw - 1200px) / 2));
    width: min(34vw, 440px);
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
}

.home-page .section-heading-light h2 {
    color: var(--white);
}

.home-page .process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--dark-line);
}

.home-page .process-step {
    min-height: 280px;
    padding: 34px 34px 20px;
    border-left: 1px solid var(--dark-line);
}

.home-page .process-step:last-child {
    border-right: 1px solid var(--dark-line);
}

.home-page .step-number {
    display: block;
    margin-bottom: 72px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.home-page .process-step p {
    color: rgba(255, 255, 255, 0.58);
}

.home-page .why-section {
    background: var(--white);
}

.home-page .why-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: center;
    gap: clamp(50px, 8vw, 110px);
}

.home-page .why-copy .section-heading {
    margin-bottom: 42px;
}

.home-page .benefit-list {
    border-top: 1px solid var(--line);
}

.home-page .benefit-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.home-page .benefit-card > span {
    color: #8a8a84;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.home-page .why-art {
    aspect-ratio: 1 / 1.06;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--paper);
}

.home-page .why-art img {
    width: 88%;
    height: auto;
}

.home-page .candidate-section {
    padding: 24px;
    background: var(--white);
}

.home-page .candidate-panel {
    width: min(1200px, 100%);
    padding: 58px 64px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    border-radius: 20px;
    background: var(--ink);
    color: var(--white);
}

.home-page .candidate-panel h2 {
    font-size: clamp(2.1rem, 3.7vw, 3.5rem);
}

.home-page .candidate-panel > div > p:last-child {
    color: rgba(255, 255, 255, 0.6);
}

.home-page .candidate-actions {
    flex-shrink: 0;
}

.home-page .contact-section {
    background: var(--paper);
}

.home-page .contact-panel {
    text-align: center;
}

.home-page .contact-panel .eyebrow,
.home-page .contact-panel > p {
    margin-inline: auto;
}

.home-page .contact-actions {
    justify-content: center;
    margin-top: 36px;
}

.home-page .site-footer {
    margin-top: 0;
    padding: 76px 0 24px;
    background: var(--ink);
    color: var(--white);
    text-align: left;
    font-size: 0.88rem;
    font-weight: 400;
}

.home-page .footer-grid {
    display: grid;
    grid-template-columns: 1fr auto minmax(260px, auto);
    gap: 80px;
    padding-bottom: 70px;
}

.home-page .footer-brand img {
    width: auto;
    max-height: 48px;
}

.home-page .footer-brand p {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.52);
}

.home-page .footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.home-page .footer-column h2 {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-page .footer-column a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
}

.home-page .footer-column a:hover {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.home-page .footer-column span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.48);
}

.home-page .footer-bottom {
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--dark-line);
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.74rem;
}

.home-page :where(a, button):focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
}

.home-page main :where(a, button):focus-visible {
    outline-color: #60605c;
}

.reveal-ready .home-page .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 620ms ease, transform 620ms cubic-bezier(.2, .75, .25, 1);
}

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

@media (max-width: 1050px) {
    .home-page .main-nav {
        gap: 18px;
    }

    .home-page .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
        gap: 44px;
    }

    .home-page .hero-copy h1 {
        font-size: clamp(3.35rem, 6.5vw, 4.6rem);
    }

    .home-page .footer-grid {
        gap: 48px;
    }
}

@media (max-width: 900px) {
    .home-page .header-cta {
        display: none;
    }

    .home-page .header-inner {
        gap: 14px;
    }

    .home-page .home-hero {
        min-height: auto;
    }

    .home-page .hero-grid {
        grid-template-columns: 1fr;
        padding-block: 72px 80px;
    }

    .home-page .hero-copy {
        max-width: 700px;
    }

    .home-page .hero-art {
        width: min(100%, 620px);
    }

    .home-page .hero-art-frame {
        aspect-ratio: 1.3 / 1;
    }

    .home-page .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-page .proof-item:nth-child(2) {
        border-right: 1px solid var(--line);
    }

    .home-page .proof-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .home-page .why-layout {
        grid-template-columns: 1fr;
    }

    .home-page .why-art {
        width: min(100%, 560px);
        aspect-ratio: 1.2 / 1;
    }

    .home-page .why-art img {
        width: 72%;
    }

    .home-page .candidate-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-page .footer-grid {
        grid-template-columns: 1.4fr 0.6fr;
    }

    .home-page .footer-column:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .home-page .home-container,
    .home-page .header-inner {
        width: min(100% - 32px, 1200px);
    }

    .home-page .site-header {
        padding-block: 13px;
    }

    .home-page .header-inner {
        flex-wrap: nowrap;
    }

    .home-page .logo img {
        max-height: 38px;
    }

    .home-page .home-section {
        padding-block: 104px;
    }

    .home-page .hero-grid {
        gap: 42px;
        padding-block: 60px 64px;
    }

    .home-page .hero-copy h1 {
        font-size: clamp(2.65rem, 12vw, 4rem);
        letter-spacing: -0.06em;
    }

    .home-page .hero-lead {
        margin-top: 24px;
        font-size: 1rem;
    }

    .home-page .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        margin-top: 30px;
    }

    .home-page .hero-art-frame {
        aspect-ratio: 1.12 / 1;
    }

    .home-page .hero-art-frame img {
        width: 125%;
    }

    .home-page .hero-art-label {
        top: 16px;
        left: 16px;
    }

    .home-page .proof-item {
        min-height: 124px;
        padding: 24px 18px;
    }

    .home-page .section-heading {
        margin-bottom: 38px;
    }

    .home-page .section-heading h2,
    .home-page .contact-panel h2 {
        font-size: clamp(2.25rem, 10vw, 3.2rem);
    }

    .home-page .section-heading > p:last-child,
    .home-page .contact-panel > p {
        margin-top: 18px;
        font-size: 0.96rem;
    }

    .home-page .expertise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-page .expertise-card {
        min-height: 205px;
        padding: 20px;
    }

    .home-page .expertise-card img {
        width: 34px;
        height: 34px;
        margin-bottom: 30px;
    }

    .home-page .expertise-card h3 {
        font-size: 1rem;
    }

    .home-page .expertise-card p {
        font-size: 0.8rem;
    }

    .home-page .expertise-card:last-child {
        width: calc(50% - 5px);
        grid-column: 1 / -1;
        justify-self: center;
    }

    .home-page .process-grid {
        grid-template-columns: 1fr;
    }

    .home-page .process-step {
        min-height: 0;
        padding: 28px 0 34px;
        border-right: 0;
        border-bottom: 1px solid var(--dark-line);
        border-left: 0;
    }

    .home-page .process-step:last-child {
        border-right: 0;
    }

    .home-page .step-number {
        margin-bottom: 44px;
    }

    .home-page .why-art {
        aspect-ratio: 1 / 1;
    }

    .home-page .candidate-section {
        padding: 12px;
    }

    .home-page .candidate-panel {
        width: 100%;
        padding: 46px 28px;
    }

    .home-page .candidate-panel h2 {
        font-size: 2.3rem;
    }

    .home-page .candidate-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .home-page .contact-actions {
        align-items: stretch;
        flex-direction: column;
        width: min(100%, 340px);
        margin-inline: auto;
    }

    .home-page .site-footer {
        padding-top: 58px;
    }

    .home-page .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 48px;
    }

    .home-page .footer-column:last-child {
        grid-column: auto;
    }

    .home-page .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Admin & HR sector landing page */
.home-page.sector-landing-page main {
    background: #ffffff;
}

.home-page.sector-landing-page .sector-landing-hero {
    min-height: 900px;
    padding: 150px 0 90px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #202020;
    color: #ffffff;
}

.home-page.sector-landing-page .sector-landing-hero-grid {
    width: min(1500px, calc(100% - 48px));
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.72fr);
    align-items: center;
    gap: clamp(40px, 7vw, 110px);
}

.home-page.sector-landing-page .sector-breadcrumb {
    margin-bottom: 38px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: #8f8f8f;
    font-size: 0.72rem;
    font-weight: 600;
}

.home-page.sector-landing-page .sector-breadcrumb a {
    color: #b9b9b9;
    text-decoration: none;
}

.home-page.sector-landing-page .sector-breadcrumb a:hover {
    color: #ffffff;
}

.home-page.sector-landing-page .sector-landing-hero-copy h1 {
    max-width: 870px;
    margin: 0;
    font-size: clamp(3.5rem, 6.7vw, 7rem);
    line-height: 0.96;
    letter-spacing: -0.07em;
}

.home-page.sector-landing-page .sector-landing-hero-copy > p {
    max-width: 710px;
    margin: 32px 0 0;
    color: #a8a8a8;
    font-size: clamp(1rem, 1.55vw, 1.25rem);
    line-height: 1.65;
}

.home-page.sector-landing-page .sector-hero-actions {
    margin-top: 36px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.home-page.sector-landing-page .sector-hero-actions .button:hover {
    transform: none;
}

.home-page.sector-landing-page .sector-text-link {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
}

.home-page.sector-landing-page .sector-landing-art {
    width: 125%;
    margin-left: -13%;
}

.home-page.sector-landing-page .sector-landing-art img {
    width: 100%;
    height: auto;
    display: block;
}

.home-page.sector-landing-page .sector-proof {
    padding: 42px 0;
    border-bottom: 1px solid #dedede;
    background: #ffffff;
}

.home-page.sector-landing-page .sector-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page.sector-landing-page .sector-proof-grid > div {
    padding: 12px 36px;
    display: grid;
    gap: 7px;
    text-align: center;
}

.home-page.sector-landing-page .sector-proof-grid > div + div {
    border-left: 1px solid #dedede;
}

.home-page.sector-landing-page .sector-proof-grid strong {
    font-size: clamp(1rem, 1.7vw, 1.3rem);
    letter-spacing: -0.035em;
}

.home-page.sector-landing-page .sector-proof-grid span {
    color: #737373;
    font-size: 0.76rem;
}

.home-page.sector-landing-page .sector-content-section {
    padding: 110px 0;
}

.home-page.sector-landing-page .narrow-sector-copy,
.home-page.sector-landing-page .sector-section-heading {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

.home-page.sector-landing-page .sector-section-label {
    margin: 0 0 18px;
    color: #777777;
    font-size: 0.76rem;
    font-weight: 700;
}

.home-page.sector-landing-page :is(.narrow-sector-copy, .sector-section-heading) h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4.4vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.home-page.sector-landing-page .narrow-sector-copy > p:not(.sector-section-label),
.home-page.sector-landing-page .sector-section-heading > p:not(.sector-section-label) {
    max-width: 720px;
    margin: 26px auto 0;
    color: #555555;
    font-size: 0.97rem;
    line-height: 1.75;
}

.home-page.sector-landing-page .sector-roles-section {
    border-top: 1px solid #e2e2e2;
}

.home-page.sector-landing-page .admin-role-groups {
    margin-top: 64px;
    display: grid;
    gap: 18px;
}

.home-page.sector-landing-page .admin-role-group {
    padding: 34px;
    border: 1px solid #dcdcdc;
    border-radius: 24px;
    background: #ffffff;
}

.home-page.sector-landing-page .admin-role-group h3 {
    margin: 0 0 24px;
    font-size: 1rem;
    letter-spacing: -0.025em;
}

.home-page.sector-landing-page .admin-role-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0 22px;
}

.home-page.sector-landing-page .admin-role-links a {
    min-height: 45px;
    padding: 12px 0;
    border-bottom: 1px solid #e3e3e3;
    display: flex;
    align-items: center;
    color: #242424;
    font-size: 0.78rem;
    font-weight: 650;
    line-height: 1.35;
    text-decoration: none;
}

.home-page.sector-landing-page .admin-role-links a:hover {
    color: #777777;
}

.home-page.sector-landing-page .sector-employers-section {
    background: #111111;
    color: #ffffff;
}

.home-page.sector-landing-page .sector-employers-section .sector-section-label,
.home-page.sector-landing-page .sector-employers-section .sector-section-heading > p {
    color: #888888;
}

.home-page.sector-landing-page .sector-employer-grid,
.home-page.sector-landing-page .sector-process-grid {
    margin: 64px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-page.sector-landing-page .sector-employer-grid article {
    min-height: 300px;
    padding: 30px;
    border-radius: 22px;
    background: #222222;
}

.home-page.sector-landing-page :is(.sector-employer-grid article, .sector-process-grid li) > span {
    color: #868686;
    font-size: 0.72rem;
    font-weight: 700;
}

.home-page.sector-landing-page :is(.sector-employer-grid, .sector-process-grid) h3 {
    margin: 94px 0 0;
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.home-page.sector-landing-page :is(.sector-employer-grid, .sector-process-grid) p {
    margin: 18px 0 0;
    color: #a2a2a2;
    font-size: 0.84rem;
    line-height: 1.65;
}

.home-page.sector-landing-page .sector-process-grid {
    list-style: none;
}

.home-page.sector-landing-page .sector-process-grid li {
    min-height: 300px;
    padding: 30px;
    border: 1px solid #dcdcdc;
    border-radius: 22px;
}

.home-page.sector-landing-page .sector-process-grid p {
    color: #5e5e5e;
}

.home-page.sector-landing-page .sector-faq-section {
    border-top: 1px solid #e2e2e2;
}

.home-page.sector-landing-page .sector-faq-layout {
    display: block;
}

.home-page.sector-landing-page .sector-faq-layout .sector-section-heading {
    text-align: center;
}

.home-page.sector-landing-page .sector-faq-list {
    max-width: 900px;
    margin: 56px auto 0;
}

.home-page.sector-landing-page .sector-faq-list details {
    border-bottom: 1px solid #dcdcdc;
}

.home-page.sector-landing-page .sector-faq-list summary {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #222222;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.home-page.sector-landing-page .sector-faq-list summary::-webkit-details-marker {
    display: none;
}

.home-page.sector-landing-page .sector-faq-list summary span {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.home-page.sector-landing-page .sector-faq-list details[open] summary span {
    transform: rotate(225deg);
}

.home-page.sector-landing-page .sector-faq-list details > p {
    margin: -2px 0 26px;
    padding-right: 40px;
    color: #555555;
    font-size: 0.92rem;
    line-height: 1.7;
}

.home-page.sector-landing-page .sector-final-cta {
    padding-top: 0;
}

.home-page.sector-landing-page .sector-final-panel {
    padding: clamp(48px, 7vw, 90px);
    border-radius: 28px;
    background: #eeeeee;
    text-align: center;
}

.home-page.sector-landing-page .sector-final-panel h2 {
    max-width: 850px;
    margin: 0 auto;
    font-size: clamp(2.3rem, 5vw, 5rem);
    line-height: 1;
    letter-spacing: -0.065em;
}

.home-page.sector-landing-page .sector-final-panel > p {
    max-width: 620px;
    margin: 24px auto 0;
    color: #595959;
    line-height: 1.65;
}

.home-page.sector-landing-page .sector-final-panel > div {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 1000px) {
    .home-page.sector-landing-page .admin-role-links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .home-page.sector-landing-page .sector-landing-hero-grid,
    .home-page.sector-landing-page .sector-faq-layout {
        grid-template-columns: 1fr;
    }

    .home-page.sector-landing-page .sector-landing-hero-copy {
        text-align: center;
    }

    .home-page.sector-landing-page .sector-breadcrumb,
    .home-page.sector-landing-page .sector-hero-actions {
        justify-content: center;
    }

    .home-page.sector-landing-page .sector-landing-hero-copy > p {
        margin-inline: auto;
    }

    .home-page.sector-landing-page .sector-landing-art {
        width: min(105%, 650px);
        margin: 0 auto;
    }

    .home-page.sector-landing-page .sector-faq-layout .sector-section-heading {
        text-align: center;
    }
}

@media (max-width: 700px) {
    .home-page.sector-landing-page .sector-landing-hero {
        min-height: auto;
        padding: 145px 0 76px;
    }

    .home-page.sector-landing-page .sector-landing-hero-grid {
        width: calc(100% - 32px);
    }

    .home-page.sector-landing-page .sector-landing-hero-copy h1 {
        font-size: clamp(2.8rem, 14.5vw, 4.7rem);
    }

    .home-page.sector-landing-page .sector-content-section {
        padding: 78px 0;
    }

    .home-page.sector-landing-page .sector-proof-grid,
    .home-page.sector-landing-page .sector-employer-grid,
    .home-page.sector-landing-page .sector-process-grid {
        grid-template-columns: 1fr;
    }

    .home-page.sector-landing-page .sector-proof-grid > div {
        padding: 18px 10px;
    }

    .home-page.sector-landing-page .sector-proof-grid > div + div {
        border-top: 1px solid #dedede;
        border-left: 0;
    }

    .home-page.sector-landing-page .admin-role-group {
        padding: 24px 20px;
        border-radius: 19px;
    }

    .home-page.sector-landing-page .admin-role-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 16px;
    }

    .home-page.sector-landing-page .sector-employer-grid,
    .home-page.sector-landing-page .sector-process-grid {
        margin-top: 42px;
    }

    .home-page.sector-landing-page :is(.sector-employer-grid, .sector-process-grid) h3 {
        margin-top: 64px;
    }

    .home-page.sector-landing-page .sector-final-cta {
        padding-top: 0;
    }

    .home-page.sector-landing-page .sector-final-panel {
        border-radius: 22px;
    }
}

@media (max-width: 380px) {
    .home-page.sector-landing-page .admin-role-links {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page.sector-landing-page .sector-faq-list summary span {
        transition: none;
    }
}

/* ========================================
   CONTACT CHOICES + OPEN SECTOR GRID
   ======================================== */

.home-page .header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-page .header-action,
.home-page .mobile-contact-button,
.home-page .route-action {
    border: 0;
    font: inherit;
    cursor: pointer;
}

.home-page .header-action {
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.home-page .header-action:hover {
    transform: translateY(-1px);
}

.home-page .header-action-primary {
    background: var(--white);
    color: var(--ink);
}

.home-page .header-action-secondary {
    background: #2b2b2b;
    color: var(--white);
}

.home-page .mobile-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px 0 4px;
}

.home-page .mobile-contact-button {
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    font-weight: 700;
}

.home-page .mobile-contact-button-secondary {
    background: #303030;
    color: var(--white);
}

.home-page .hero-button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.home-page .hero-button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.14);
}

.home-page .hero-art {
    width: 132%;
    margin-left: -16%;
}

.home-page .section-heading h2,
.home-page .contact-panel h2 {
    font-size: clamp(1.9rem, 3vw, 2.85rem);
}

.home-page .service-route-card .route-action {
    align-self: flex-start;
    min-height: 46px;
    padding: 11px 18px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    font-weight: 700;
    transition: background-color 180ms ease, transform 180ms ease;
}

.home-page .service-route-card .route-action:hover {
    transform: translateY(-2px);
    background: #343434;
}

.home-page .expertise-grid {
    max-width: 1040px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 52px 64px;
}

.home-page .sector-option,
.home-page .sector-option:last-child {
    width: 100%;
    min-width: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    cursor: pointer;
}

.home-page .sector-icon {
    width: 100%;
    min-height: 132px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: #282828;
    transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.home-page .sector-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: brightness(0) invert(100%);
}

.home-page .sector-label {
    max-width: 220px;
    min-height: 2.8em;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--ink);
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.home-page .sector-option:hover .sector-icon {
    transform: translateY(-4px);
    background: #111111;
    box-shadow: 0 16px 35px rgba(17, 17, 17, 0.13);
}

.home-page .sector-option:focus-visible {
    outline: none;
}

.home-page .sector-option:focus-visible .sector-icon {
    outline: 3px solid var(--ink);
    outline-offset: 4px;
}

.home-page.modal-open {
    overflow: hidden;
}

.home-page .contact-modal[hidden] {
    display: none;
}

.home-page .contact-modal {
    position: fixed;
    z-index: 3000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease;
}

.home-page .contact-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.home-page .contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.home-page .contact-dialog {
    position: relative;
    width: min(100%, 560px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 42px;
    border-radius: 30px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
    transform: translateY(18px) scale(0.98);
    transition: transform 220ms ease;
}

.home-page .contact-modal.is-open .contact-dialog {
    transform: translateY(0) scale(1);
}

.home-page .contact-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #e8e5dd;
    color: var(--ink);
    font: inherit;
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
}

.home-page .contact-dialog h2 {
    max-width: 440px;
    margin: 22px 0 12px;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.home-page .contact-dialog > p {
    max-width: 440px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.home-page .contact-modal-actions {
    margin-top: 30px;
    display: grid;
    gap: 10px;
}

.home-page .modal-action {
    min-height: 70px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: var(--white);
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 180ms ease, transform 180ms ease;
}

.home-page .modal-action:hover {
    transform: translateY(-2px);
    border-color: #aaa79f;
}

.home-page .modal-action-primary {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.home-page .modal-action small {
    display: block;
    margin-bottom: 3px;
    color: #888780;
    font-size: 0.69rem;
    font-weight: 600;
}

.home-page .modal-action-primary small {
    color: rgba(255, 255, 255, 0.58);
}

.home-page .modal-vacancies-link {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 700;
}

.home-page .modal-vacancies-link[hidden] {
    display: none;
}

@media (max-width: 900px) {
    .home-page .header-actions {
        display: none;
    }

    .home-page .hero-art {
        width: min(118%, 800px);
        margin-left: -9%;
    }
}

@media (max-width: 700px) {
    .home-page .section-heading h2,
    .home-page .contact-panel h2 {
        font-size: clamp(1.75rem, 7.6vw, 2.3rem);
    }

    .home-page .expertise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 18px;
    }

    .home-page .sector-option:last-child {
        width: calc(50% - 9px);
        grid-column: 1 / -1;
        justify-self: center;
    }

    .home-page .sector-icon {
        min-height: 108px;
        border-radius: 20px;
    }

    .home-page .sector-icon img {
        width: 33px;
        height: 33px;
    }

    .home-page .sector-label {
        min-height: 3em;
        font-size: 0.84rem;
    }

    .home-page .contact-modal {
        align-items: end;
        padding: 12px;
    }

    .home-page .contact-dialog {
        width: 100%;
        max-height: calc(100vh - 24px);
        padding: 34px 22px 24px;
        border-radius: 26px;
    }

    .home-page .contact-modal-close {
        top: 14px;
        right: 14px;
    }

    .home-page .contact-dialog h2 {
        padding-right: 30px;
        font-size: clamp(1.85rem, 9vw, 2.5rem);
    }
}

@media (max-width: 420px) {
    .home-page .hero-art {
        width: 124%;
        margin-left: -12%;
    }

    .home-page .expertise-grid {
        gap: 26px 14px;
    }

    .home-page .sector-option:last-child {
        width: calc(50% - 7px);
    }
}

@media (max-width: 420px) {
    .home-page .button {
        width: 100%;
    }

    .home-page .hero-actions {
        width: 100%;
    }

    .home-page .hero-actions .text-link {
        align-self: center;
        width: auto;
    }

    .home-page .proof-grid {
        grid-template-columns: 1fr;
    }

    .home-page .proof-item,
    .home-page .proof-item:nth-child(2),
    .home-page .proof-item:last-child {
        min-height: 105px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .home-page .expertise-card {
        min-height: 190px;
        padding: 17px;
    }

    .home-page .expertise-card:last-child {
        width: calc(50% - 5px);
    }

    .home-page .candidate-actions,
    .home-page .candidate-actions .button {
        width: 100%;
    }

    .home-page .candidate-actions .text-link {
        width: auto;
    }
}

/* ========================================
   CLIENT-LED STRUCTURE
   ======================================== */

.home-page {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.home-page .site-header.is-pill .header-inner {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(20, 20, 20, 0.58);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    backdrop-filter: blur(22px) saturate(150%);
}

.home-page .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
}

.home-page .hero-copy h1 {
    max-width: 760px;
    font-size: clamp(3.15rem, 5.25vw, 5rem);
    line-height: 1.08;
}

.home-page .hero-copy h1 .dynamic-role {
    display: block;
    min-height: 1.08em;
    color: #ffffff;
    transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
}

.home-page .hero-copy h1 .dynamic-role.is-changing {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(8px);
}

.home-page .hero-subtitle-modern {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(1.05rem, 1.45vw, 1.25rem);
}

.home-page .hero-art-frame {
    overflow: visible;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 0;
    background: none;
}

.home-page .hero-art-frame::after {
    display: none;
}

.home-page .hero-art-frame img {
    width: 100%;
    max-width: 100%;
    height: auto;
    transform: none;
}

.home-page .section-pill {
    width: fit-content;
    margin: 0 0 24px;
    padding: 9px 14px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: #555550;
    font-size: 0.78rem;
    font-weight: 650;
    letter-spacing: -0.01em;
    line-height: 1;
}

.home-page .section-pill-dark {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.72);
}

.home-page .client-proof-section {
    padding: 18px 16px;
    background: var(--paper);
}

.home-page .client-proof {
    min-height: 170px;
    padding: 34px 42px;
    display: grid;
    grid-template-columns: auto auto minmax(220px, 1fr);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    border: 1px solid var(--line);
    border-radius: 32px;
    background: var(--white);
}

.home-page .client-proof .section-pill {
    margin: 0;
}

.home-page .client-proof > strong {
    font-size: clamp(3.4rem, 6vw, 5.6rem);
    font-weight: 750;
    letter-spacing: -0.07em;
    line-height: 1;
}

.home-page .client-proof > p {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.6;
}

.home-page .process-section,
.home-page .why-section,
.home-page .faq-section {
    margin: 16px;
    border-radius: 40px;
    overflow: hidden;
}

.home-page .why-section {
    background: var(--white);
}

.home-page .faq-section {
    background: var(--white);
}

.home-page .faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(440px, 1.22fr);
    align-items: start;
    gap: clamp(60px, 9vw, 120px);
}

.home-page .faq-layout .section-heading {
    position: sticky;
    top: 112px;
    margin-bottom: 0;
}

.home-page .faq-list {
    display: grid;
    gap: 12px;
}

.home-page .faq-list details {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--paper);
    transition: background-color 180ms ease, border-color 180ms ease;
}

.home-page .faq-list details[open] {
    border-color: #c5c1b8;
    background: var(--white);
}

.home-page .faq-list summary {
    min-height: 78px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    list-style: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.home-page .faq-list summary::-webkit-details-marker {
    display: none;
}

.home-page .faq-list summary span {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    font-size: 1.15rem;
    font-weight: 500;
    transition: transform 180ms ease;
}

.home-page .faq-list details[open] summary span {
    transform: rotate(45deg);
}

.home-page .faq-list details > p {
    margin: -4px 24px 24px;
    padding-right: 54px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.home-page .contact-panel .section-pill {
    margin-inline: auto;
}

.home-page .site-footer {
    border-radius: 40px 40px 0 0;
}

@media (max-width: 900px) {
    .home-page .hero-grid {
        grid-template-columns: 1fr;
    }

    .home-page .hero-art {
        width: min(100%, 680px);
    }

    .home-page .client-proof {
        grid-template-columns: auto 1fr;
    }

    .home-page .client-proof .section-pill {
        grid-column: 1 / -1;
    }

    .home-page .faq-layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .home-page .faq-layout .section-heading {
        position: static;
    }
}

@media (max-width: 700px) {
    .home-page .hero-copy h1 {
        font-size: clamp(2.35rem, 10.8vw, 3.4rem);
        line-height: 1.1;
    }

    .home-page .hero-subtitle-modern {
        margin-top: 18px;
    }

    .home-page .hero-art-frame {
        aspect-ratio: 16 / 9;
        border-radius: 0;
    }

    .home-page .client-proof-section {
        padding: 12px;
    }

    .home-page .client-proof {
        min-height: 0;
        padding: 30px 26px;
        grid-template-columns: 1fr;
        gap: 18px;
        border-radius: 26px;
    }

    .home-page .client-proof .section-pill {
        grid-column: auto;
    }

    .home-page .client-proof > strong {
        font-size: 4rem;
    }

    .home-page .process-section,
    .home-page .why-section,
    .home-page .faq-section {
        margin: 10px;
        border-radius: 28px;
    }

    .home-page .faq-list details {
        border-radius: 19px;
    }

    .home-page .faq-list summary {
        min-height: 72px;
        padding: 20px;
        font-size: 0.94rem;
    }

    .home-page .faq-list details > p {
        margin: -2px 20px 22px;
        padding-right: 38px;
        font-size: 0.86rem;
    }

    .home-page .site-footer {
        border-radius: 28px 28px 0 0;
    }
}

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

/* ========================================
   ROUNDED HOMEPAGE REFINEMENT
   ======================================== */

.home-page .site-header {
    position: fixed;
    width: 100%;
    padding: 16px 0;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
    transition: padding 280ms ease;
}

.home-page .header-inner {
    padding: 0;
    border: 1px solid transparent;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition:
        width 360ms cubic-bezier(.2, .75, .25, 1),
        min-height 280ms ease,
        padding 280ms ease,
        border-radius 360ms cubic-bezier(.2, .75, .25, 1),
        background-color 280ms ease,
        border-color 280ms ease,
        box-shadow 280ms ease;
}

.home-page .site-header.is-pill {
    padding-top: 12px;
}

.home-page .site-header.is-pill .header-inner {
    width: min(960px, calc(100% - 32px));
    min-height: 58px;
    padding: 8px 10px 8px 16px;
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.94);
    box-shadow: 0 16px 45px rgba(17, 17, 17, 0.18);
    backdrop-filter: blur(18px);
}

.home-page .site-header.is-pill .logo img {
    max-height: 36px;
}

.home-page .logo img {
    transition: max-height 280ms ease;
}

.home-page .home-hero {
    min-height: 720px;
}

.home-page .hero-grid {
    padding-top: 132px;
}

.home-page .hero-copy h1 {
    background: linear-gradient(180deg, #ffffff 6%, #f1f1ee 42%, #858580 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-page .hero-copy h1 span {
    color: inherit;
}

.home-page .role-line {
    min-height: 31px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 1.02rem;
    font-weight: 500;
}

.home-page .role-line strong {
    display: inline-block;
    min-width: 155px;
    color: var(--white);
    font-weight: 700;
    transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
}

.home-page .role-line strong.is-changing {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(7px);
}

.home-page .hero-lead {
    margin-top: 16px;
}

.home-page .hero-art-frame {
    border-radius: 32px;
}

.home-page .hero-art-frame img {
    width: 116%;
}

.home-page .proof-strip {
    padding-block: 24px;
    background: var(--paper);
    border-bottom: 0;
}

.home-page .proof-grid {
    gap: 14px;
}

.home-page .proof-item,
.home-page .proof-item:nth-child(2),
.home-page .proof-item:nth-child(-n + 2),
.home-page .proof-item:last-child {
    min-height: 132px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
}

.home-page .proof-item strong {
    font-size: 1.1rem;
}

.home-page .expertise-card {
    border-radius: 26px;
}

.home-page .process-section::before {
    display: none;
}

.home-page .process-grid {
    gap: 16px;
    border-top: 0;
}

.home-page .process-step,
.home-page .process-step:last-child {
    min-height: 300px;
    padding: 32px;
    border: 1px solid var(--dark-line);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.025);
}

.home-page .benefit-list {
    display: grid;
    gap: 12px;
    border-top: 0;
}

.home-page .benefit-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--paper);
}

.home-page .why-art {
    border-radius: 32px;
}

.home-page .candidate-panel {
    border-radius: 32px;
}

.home-page .contact-panel {
    padding: 82px 40px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: var(--white);
}

.home-page .footer-column h2 {
    font-size: 0.84rem;
    letter-spacing: 0;
    text-transform: none;
}

@media (max-width: 900px) {
    .home-page .site-header.is-pill .header-inner {
        width: min(620px, calc(100% - 32px));
    }

    .home-page .home-hero {
        min-height: auto;
    }

    .home-page .hero-grid {
        padding-top: 122px;
    }
}

@media (max-width: 700px) {
    .home-page .site-header {
        padding-top: 13px;
    }

    .home-page .site-header.is-pill {
        padding-top: 9px;
    }

    .home-page .site-header.is-pill .header-inner {
        width: calc(100% - 24px);
        min-height: 54px;
        padding: 7px 10px 7px 14px;
    }

    .home-page .site-header.is-pill .mobile-nav {
        top: calc(100% + 8px);
        right: 12px;
        left: 12px;
        padding: 10px 20px 20px;
        border: 1px solid var(--dark-line);
        border-radius: 24px;
        box-shadow: 0 18px 45px rgba(17, 17, 17, 0.2);
    }

    .home-page .hero-grid {
        padding-top: 108px;
    }

    .home-page .role-line {
        min-height: 58px;
        margin-top: 24px;
    }

    .home-page .role-line span,
    .home-page .role-line strong {
        display: block;
    }

    .home-page .hero-art-frame {
        border-radius: 26px;
    }

    .home-page .proof-strip {
        padding-block: 16px;
    }

    .home-page .proof-grid {
        gap: 10px;
    }

    .home-page .proof-item,
    .home-page .proof-item:nth-child(2),
    .home-page .proof-item:nth-child(-n + 2),
    .home-page .proof-item:last-child {
        min-height: 120px;
        padding: 18px;
        border-radius: 19px;
    }

    .home-page .expertise-card {
        border-radius: 22px;
    }

    .home-page .process-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-page .process-step,
    .home-page .process-step:last-child {
        min-height: 0;
        padding: 26px;
        border: 1px solid var(--dark-line);
        border-radius: 22px;
    }

    .home-page .step-number {
        margin-bottom: 42px;
    }

    .home-page .benefit-card {
        padding: 20px;
        border-radius: 20px;
    }

    .home-page .why-art,
    .home-page .candidate-panel,
    .home-page .contact-panel {
        border-radius: 26px;
    }

    .home-page .contact-panel {
        padding: 62px 24px;
    }
}

@media (max-width: 420px) {
    .home-page .proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-page .proof-item,
    .home-page .proof-item:nth-child(2),
    .home-page .proof-item:nth-child(-n + 2),
    .home-page .proof-item:last-child {
        min-height: 132px;
        padding: 16px;
    }

    .home-page .proof-item strong {
        font-size: 0.98rem;
    }

    .home-page .proof-item span {
        font-size: 0.74rem;
        line-height: 1.45;
    }
}

/* Final visual overrides: keep the scrolled nav glassy and the GIF unframed. */
.home-page .site-header.is-pill .header-inner {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(20, 20, 20, 0.58);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    backdrop-filter: blur(22px) saturate(150%);
}

.home-page .hero-art-frame {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: none;
}

.home-page .hero-art-frame::after {
    display: none;
}

.home-page .hero-art-frame img {
    width: 100%;
    max-width: 100%;
    transform: none;
}

/* ========================================
   WIDE BANNER + DELAYED STICKY HEADER
   ======================================== */

.home-page .site-header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 28px 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.home-page .header-inner {
    width: min(1400px, calc(100% - 80px));
    max-width: none;
    min-height: 58px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.home-page .site-header.is-sticky {
    position: fixed;
    padding: 17px 0;
    background: rgba(17, 17, 17, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    backdrop-filter: blur(18px) saturate(135%);
    animation: sticky-header-in 260ms ease both;
}

.home-page .site-header.is-sticky .header-inner {
    width: min(1400px, calc(100% - 80px));
    min-height: 48px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.home-page .site-header.is-sticky .logo img {
    max-height: 40px;
}

@keyframes sticky-header-in {
    from { opacity: 0; transform: translateY(-100%); }
    to { opacity: 1; transform: translateY(0); }
}

.home-page .home-hero {
    min-height: 900px;
    border-radius: 0 0 56px 56px;
    overflow: hidden;
}

.home-page .hero-grid {
    width: min(1400px, calc(100% - 80px));
    max-width: none;
    min-height: 900px;
    padding: 150px 0 112px;
    grid-template-columns: minmax(0, 1.22fr) minmax(470px, 0.78fr);
    gap: clamp(56px, 5.5vw, 88px);
}

.home-page .hero-copy {
    max-width: 820px;
}

.home-page .hero-copy h1 {
    max-width: 820px;
    background: none;
    color: inherit;
    font-size: clamp(3rem, 4.05vw, 3.9rem);
    line-height: 1.12;
    letter-spacing: -0.055em;
}

.home-page .hero-copy h1 .hero-line {
    display: block;
}

.home-page .hero-copy h1 .hero-line-one {
    color: #f4f4f1;
}

.home-page .hero-copy h1 .hero-line-two {
    color: #c8c8c3;
}

.home-page .hero-copy h1 .hero-line-three {
    min-height: 1.12em;
    color: #989893;
}

.home-page .hero-art {
    width: 112%;
    margin-left: -6%;
}

.home-page .hero-art-frame,
.home-page .hero-art-frame img {
    width: 100%;
}

.home-page .client-proof-section {
    padding: 50px 24px 20px;
}

.home-page .client-proof {
    min-height: 0;
    padding: 0;
    display: block;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: center;
}

.home-page .client-proof > p {
    max-width: none;
    margin: 0;
    color: var(--ink);
    font-size: clamp(1rem, 1.45vw, 1.22rem);
    font-weight: 650;
    line-height: 1.5;
}

.home-page .section-heading {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.home-page .section-heading > p:last-child {
    margin-right: auto;
    margin-left: auto;
}

.home-page .section-pill,
.home-page .section-pill-dark {
    margin: 0 auto 24px;
    padding: 10px 16px;
    border: 0;
    background: #202020;
    color: #ffffff;
    box-shadow: none;
}

.home-page .expertise-grid {
    max-width: 940px;
    margin-inline: auto;
    grid-template-columns: repeat(3, minmax(0, 250px));
    justify-content: center;
    gap: 58px 72px;
}

.home-page .expertise-card {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1;
    padding: 24px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-page .expertise-card img {
    margin-bottom: auto;
}

.home-page .expertise-card p {
    display: none;
}

.home-page .process-section,
.home-page .why-section,
.home-page .faq-section {
    border-radius: 52px;
}

.home-page .process-section .section-heading {
    max-width: 780px;
}

.home-page .why-copy .section-heading {
    max-width: 620px;
}

.home-page .benefit-card,
.home-page .faq-list details {
    border-radius: 28px;
}

.home-page .faq-layout {
    display: block;
}

.home-page .faq-layout .section-heading {
    position: static;
    max-width: 760px;
    margin: 0 auto 54px;
}

.home-page .faq-list {
    max-width: 840px;
    margin-inline: auto;
}

.home-page .contact-panel {
    border-radius: 44px;
}

.home-page .site-footer {
    border-radius: 52px 52px 0 0;
}

@media (max-width: 1100px) {
    .home-page .hero-grid {
        grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
        gap: 44px;
    }

    .home-page .hero-copy h1 {
        font-size: clamp(2.8rem, 5vw, 3.45rem);
    }

    .home-page .expertise-grid {
        gap: 34px;
    }
}

@media (max-width: 900px) {
    .home-page .header-inner,
    .home-page .site-header.is-sticky .header-inner {
        width: min(100% - 48px, 1400px);
    }

    .home-page .hero-grid {
        width: min(100% - 48px, 1400px);
        min-height: 980px;
        padding-top: 142px;
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .home-page .home-hero {
        min-height: 980px;
    }

    .home-page .hero-art {
        width: min(108%, 720px);
        margin-left: -4%;
    }

    .home-page .expertise-grid {
        grid-template-columns: repeat(3, minmax(0, 210px));
        gap: 26px;
    }
}

@media (max-width: 700px) {
    .home-page .site-header {
        padding: 20px 0;
    }

    .home-page .header-inner,
    .home-page .site-header.is-sticky .header-inner {
        width: calc(100% - 32px);
    }

    .home-page .site-header.is-sticky {
        padding: 12px 0;
    }

    .home-page .home-hero {
        min-height: 900px;
        border-radius: 0 0 34px 34px;
    }

    .home-page .hero-grid {
        width: calc(100% - 32px);
        min-height: 900px;
        padding: 122px 0 72px;
        gap: 50px;
    }

    .home-page .hero-copy h1 {
        font-size: clamp(2.15rem, 9.8vw, 3rem);
        line-height: 1.13;
    }

    .home-page .hero-art {
        width: 112%;
        margin-left: -6%;
    }

    .home-page .client-proof-section {
        padding: 34px 16px 0;
    }

    .home-page .expertise-grid {
        max-width: 500px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .home-page .expertise-card {
        padding: 20px;
        border-radius: 24px;
    }

    .home-page .expertise-card:last-child {
        width: calc(50% - 11px);
    }

    .home-page .process-section,
    .home-page .why-section,
    .home-page .faq-section {
        border-radius: 34px;
    }

    .home-page .contact-panel {
        border-radius: 32px;
    }

    .home-page .site-footer {
        border-radius: 34px 34px 0 0;
    }
}

@media (max-width: 420px) {
    .home-page .expertise-grid {
        gap: 16px;
    }

    .home-page .expertise-card {
        padding: 17px;
    }

    .home-page .expertise-card:last-child {
        width: calc(50% - 8px);
    }
}

/* ========================================
   CONSISTENT HEADER + REFERENCE STRUCTURE
   ======================================== */

.home-page .site-header,
.home-page .site-header.is-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 24px 0;
    background: #111111;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    animation: none;
}

.home-page .header-inner,
.home-page .site-header.is-sticky .header-inner {
    width: min(1400px, calc(100% - 80px));
    max-width: none;
    min-height: 58px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.home-page .site-header .logo img,
.home-page .site-header.is-sticky .logo img {
    max-height: 46px;
}

.home-page .client-proof-section {
    padding: 82px 24px 30px;
}

.home-page .client-proof > p {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 700;
    letter-spacing: -0.035em;
}

.home-page .service-routes-section {
    background: var(--paper);
}

.home-page .service-routes-grid {
    max-width: 1000px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.home-page .service-route-card {
    min-height: 360px;
    padding: 38px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: var(--white);
}

.home-page .service-card-number,
.home-page .popular-service-card > span {
    color: #8a8a84;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.home-page .service-route-card h3 {
    margin: auto 0 12px;
    font-size: clamp(2rem, 3.3vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.home-page .service-route-card p {
    max-width: 410px;
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 0.95rem;
}

.home-page .service-route-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
}

.home-page .agency-overview-section {
    margin: 16px;
    border-radius: 48px;
    background: var(--white);
}

.home-page .overview-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    align-items: center;
    gap: clamp(60px, 9vw, 120px);
}

.home-page .overview-layout .section-heading {
    margin: 0;
    text-align: left;
}

.home-page .overview-layout .section-heading .section-pill,
.home-page .overview-layout .section-heading > p {
    margin-left: 0;
}

.home-page .overview-stats {
    display: grid;
    gap: 12px;
}

.home-page .overview-stats > div {
    min-height: 120px;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 26px;
    background: var(--paper);
}

.home-page .overview-stats strong {
    font-size: clamp(1.45rem, 2.6vw, 2.2rem);
    letter-spacing: -0.045em;
    line-height: 1.1;
}

.home-page .overview-stats span {
    margin-top: 7px;
    color: var(--muted);
    font-size: 0.82rem;
}

.home-page .popular-services-section {
    background: var(--paper);
}

.home-page .popular-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.home-page .popular-service-card {
    min-height: 230px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border-radius: 28px;
    background: #202020;
    color: var(--white);
}

.home-page .popular-service-card > span {
    color: rgba(255, 255, 255, 0.42);
}

.home-page .popular-service-card h3 {
    margin: auto 0 10px;
    font-size: 1.12rem;
    letter-spacing: -0.025em;
}

.home-page .popular-service-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.84rem;
    line-height: 1.6;
}

.home-page .sectors-section {
    margin: 16px;
    border-radius: 48px;
    background: var(--white);
}

.home-page .expertise-grid {
    max-width: 1040px;
    gap: 34px 56px;
}

.home-page .expertise-card,
.home-page .expertise-card:last-child {
    position: relative;
    width: 100%;
    min-height: 180px;
    aspect-ratio: auto;
    padding: 24px;
    justify-content: flex-end;
    border-radius: 28px;
    background: var(--paper);
}

.home-page .expertise-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #2a2a2a;
}

.home-page .expertise-icon img {
    width: 25px;
    height: 25px;
    margin: 0;
    filter: brightness(0) invert(84%);
}

.home-page .expertise-card h3 {
    max-width: 170px;
}

.home-page .coverage-section {
    padding-top: 24px;
}

.home-page .coverage-panel {
    padding: 90px 60px;
    border-radius: 44px;
    background: #181818;
    color: var(--white);
    text-align: center;
}

.home-page .coverage-panel .section-pill {
    margin-inline: auto;
}

.home-page .coverage-panel h2 {
    max-width: 820px;
    margin: 0 auto;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 1.03;
}

.home-page .coverage-panel p {
    max-width: 650px;
    margin: 24px auto 34px;
    color: rgba(255, 255, 255, 0.62);
}

.home-page .site-footer {
    border-radius: 0;
}

@media (max-width: 900px) {
    .home-page .overview-layout {
        grid-template-columns: 1fr;
    }

    .home-page .overview-layout .section-heading {
        text-align: center;
        margin-inline: auto;
    }

    .home-page .overview-layout .section-heading .section-pill,
    .home-page .overview-layout .section-heading > p {
        margin-inline: auto;
    }

    .home-page .popular-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .home-page .site-header,
    .home-page .site-header.is-sticky {
        padding: 18px 0;
    }

    .home-page .header-inner,
    .home-page .site-header.is-sticky .header-inner {
        width: calc(100% - 32px);
        min-height: 44px;
    }

    .home-page .client-proof-section {
        padding: 56px 16px 8px;
    }

    .home-page .client-proof > p {
        font-size: 1.25rem;
    }

    .home-page .service-routes-grid {
        grid-template-columns: 1fr;
    }

    .home-page .service-route-card {
        min-height: 290px;
        padding: 28px;
        border-radius: 28px;
    }

    .home-page .agency-overview-section,
    .home-page .sectors-section {
        margin: 10px;
        border-radius: 34px;
    }

    .home-page .popular-services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-page .popular-service-card {
        min-height: 205px;
    }

    .home-page .expertise-grid {
        gap: 18px;
    }

    .home-page .expertise-card,
    .home-page .expertise-card:last-child {
        width: 100%;
        min-height: 155px;
        padding: 18px;
        border-radius: 24px;
    }

    .home-page .expertise-icon {
        top: 14px;
        right: 14px;
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .home-page .expertise-card h3 {
        max-width: 130px;
        font-size: 0.94rem;
    }

    .home-page .coverage-panel {
        padding: 66px 24px;
        border-radius: 32px;
    }
}

/* ========================================
   FLAT SECTIONS + COMPACT ICON CARDS
   ======================================== */

.home-page .section-heading h2,
.home-page .contact-panel h2 {
    font-size: clamp(2.1rem, 3.5vw, 3.35rem);
}

.home-page .agency-overview-section,
.home-page .why-section,
.home-page .faq-section,
.home-page .sectors-section,
.home-page .process-section {
    margin: 0;
    border-radius: 0;
}

.home-page .agency-overview-section,
.home-page .why-section,
.home-page .faq-section,
.home-page .sectors-section {
    background: var(--white);
}

.home-page .home-hero {
    border-radius: 0;
}

.home-page :where(#client-proof, #expertise, #process, #why-us, #sectors, #faq) {
    scroll-margin-top: 106px;
}

.home-page .overview-layout {
    display: block;
}

.home-page .overview-layout .section-heading {
    max-width: 820px;
    margin: 0 auto 54px;
    text-align: center;
}

.home-page .overview-layout .section-heading .section-pill,
.home-page .overview-layout .section-heading > p {
    margin-right: auto;
    margin-left: auto;
}

.home-page .overview-stats {
    max-width: 960px;
    margin-inline: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page .overview-stats > div {
    align-items: center;
    text-align: center;
}

.home-page .why-layout {
    display: block;
}

.home-page .why-copy {
    max-width: 900px;
    margin-inline: auto;
}

.home-page .why-copy .section-heading {
    max-width: 720px;
    margin: 0 auto 44px;
}

.home-page .benefit-list {
    max-width: 840px;
    margin-inline: auto;
}

.home-page .why-art {
    width: min(100%, 460px);
    margin: 56px auto 0;
}

.home-page .testimonials-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    text-align: left;
}

.home-page .testimonial-card {
    min-height: 220px;
    margin: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--white);
}

.home-page .testimonial-card blockquote {
    margin: 0;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.65;
    letter-spacing: -0.02em;
}

.home-page .testimonial-card figcaption {
    margin-top: 28px;
    color: #8b8b85;
    font-size: 0.7rem;
    line-height: 1.45;
}

.home-page .service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    flex: 0 0 54px;
    border-radius: 16px;
    background: #272727;
}

.home-page .service-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-page .service-route-card > .service-icon {
    margin-bottom: auto;
}

.home-page .service-route-card a {
    min-height: 46px;
    padding: 11px 18px;
    border: 0;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
}

.home-page .service-route-card a:hover {
    background: #343434;
}

.home-page .popular-service-card .service-icon {
    background: rgba(255, 255, 255, 0.1);
}

.home-page .popular-service-card h3 {
    margin-top: auto;
}

.home-page .expertise-icon {
    right: auto;
    left: 18px;
}

.home-page .expertise-icon img {
    filter: brightness(0) invert(100%);
}

.home-page .site-footer {
    border-radius: 0;
}

@media (max-width: 900px) {
    .home-page .overview-stats {
        grid-template-columns: 1fr;
    }

    .home-page .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .home-page .testimonial-card {
        min-height: 180px;
    }
}

@media (max-width: 700px) {
    .home-page .section-heading h2,
    .home-page .contact-panel h2 {
        font-size: clamp(1.95rem, 8.7vw, 2.65rem);
    }

    .home-page .agency-overview-section,
    .home-page .why-section,
    .home-page .faq-section,
    .home-page .sectors-section {
        margin: 0;
        border-radius: 0;
    }

    .home-page .testimonials-grid {
        margin-top: 30px;
        gap: 12px;
    }

    .home-page .testimonial-card {
        min-height: 165px;
        padding: 22px;
        border-radius: 22px;
    }

    .home-page .expertise-icon {
        right: auto;
        left: 14px;
    }
}

/* Final homepage interaction sizing */
.home-page .hero-art {
    width: 132%;
    margin-left: -16%;
}

.home-page .section-heading h2,
.home-page .contact-panel h2 {
    font-size: clamp(1.9rem, 3vw, 2.85rem);
}

.home-page .expertise-grid {
    max-width: 1040px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 52px 64px;
}

@media (max-width: 900px) {
    .home-page .header-actions {
        display: none;
    }

    .home-page .hero-art {
        width: min(118%, 800px);
        margin-left: -9%;
    }
}

@media (max-width: 700px) {
    .home-page .section-heading h2,
    .home-page .contact-panel h2 {
        font-size: clamp(1.75rem, 7.6vw, 2.3rem);
    }

    .home-page .expertise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 18px;
    }
}

@media (max-width: 420px) {
    .home-page .hero-art {
        width: 124%;
        margin-left: -12%;
    }
}

/* Hero polish, white surfaces and square sector controls */
.home-page {
    --paper: #ffffff;
    --line: #e2e2e2;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.home-page .home-hero,
.home-page .hero-grid {
    min-height: 1040px;
}

.home-page .hero-grid {
    padding-top: 168px;
    padding-bottom: 132px;
}

.home-page .hero-actions {
    gap: 12px;
}

.home-page .hero-actions .button {
    min-width: 138px;
    min-height: 50px;
    padding: 13px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.01em;
    cursor: pointer;
    appearance: none;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-page .hero-actions .button-light {
    border: 1px solid #ffffff;
    background: #ffffff;
    color: #111111;
}

.home-page .hero-actions .button-light:hover {
    transform: translateY(-3px);
    background: #eeeeee;
    border-color: #eeeeee;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.26);
}

.home-page .hero-actions .hero-button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: #292929;
    color: #ffffff;
}

.home-page .hero-actions .hero-button-secondary:hover {
    transform: translateY(-3px);
    border-color: #ffffff;
    background: #3a3a3a;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.26);
}

.home-page .hero-actions .button:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
}

.home-page .client-proof-section,
.home-page .service-routes-section,
.home-page .popular-services-section,
.home-page .contact-section,
.home-page .agency-overview-section,
.home-page .why-section,
.home-page .sectors-section,
.home-page .faq-section {
    background: #ffffff;
}

.home-page .expertise-grid {
    max-width: 900px;
    grid-template-columns: repeat(3, minmax(0, 220px));
    justify-content: center;
    gap: 52px 80px;
}

.home-page .sector-icon {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1;
    border-radius: 24px;
}

@media (max-width: 900px) {
    .home-page .home-hero,
    .home-page .hero-grid {
        min-height: 1120px;
    }

    .home-page .hero-grid {
        padding-top: 148px;
        padding-bottom: 96px;
    }

    .home-page .expertise-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 42px 32px;
    }
}

@media (max-width: 700px) {
    .home-page .home-hero,
    .home-page .hero-grid {
        min-height: 980px;
    }

    .home-page .hero-grid {
        padding-top: 128px;
        padding-bottom: 76px;
    }

    .home-page .hero-actions {
        width: 100%;
        flex-direction: row;
    }

    .home-page .hero-actions .button {
        width: auto;
        flex: 1 1 0;
    }

    .home-page .expertise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 18px;
    }
}

/* Hiring benefits, compact sectors and shared conversion actions */
.home-page .why-layout > .section-heading {
    max-width: 720px;
    margin: 0 auto 58px;
    text-align: center;
}

.home-page .why-layout > .section-heading > p,
.home-page .why-layout > .section-heading .section-pill {
    margin-right: auto;
    margin-left: auto;
}

.home-page .why-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
    align-items: center;
    gap: clamp(58px, 8vw, 110px);
}

.home-page .why-content-grid .benefit-list {
    max-width: none;
    margin: 0;
    text-align: left;
}

.home-page .why-content-grid .benefit-card {
    text-align: left;
}

.home-page .why-art {
    width: 100%;
    max-width: 520px;
    margin: 0 0 0 auto;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.home-page .why-art img {
    width: 100%;
    height: auto;
    display: block;
}

.home-page .popular-service-card .service-icon {
    background: #ffffff;
}

.home-page .popular-service-card .service-icon svg {
    stroke: #111111;
}

.home-page .expertise-grid {
    max-width: 760px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 46px 64px;
}

.home-page .sector-icon {
    width: 76px;
    height: 76px;
    min-height: 76px;
    flex: 0 0 76px;
    aspect-ratio: 1;
    border-radius: 18px;
}

.home-page .sector-icon img {
    width: 31px;
    height: 31px;
}

.home-page .sector-label {
    min-height: 2.8em;
}

.home-page .contact-actions .button {
    min-width: 138px;
    min-height: 50px;
    padding: 13px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    appearance: none;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.home-page .contact-actions .button:hover {
    transform: translateY(-3px);
}

.home-page .contact-actions .button:focus-visible {
    outline: 3px solid var(--ink);
    outline-offset: 4px;
}

.home-page .modal-response-pill {
    width: fit-content;
    min-height: 34px;
    padding: 8px 13px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}

.home-page .modal-response-pill span {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: var(--white);
    animation: response-dot-pulse 1.7s ease-in-out infinite;
}

@keyframes response-dot-pulse {
    0%, 100% {
        opacity: 0.45;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.38);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0);
    }
}

@media (max-width: 900px) {
    .home-page .why-content-grid {
        grid-template-columns: minmax(0, 1fr) minmax(290px, 0.8fr);
        gap: 44px;
    }

    .home-page .expertise-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 42px 28px;
    }
}

@media (max-width: 700px) {
    .home-page .why-layout > .section-heading {
        margin-bottom: 40px;
    }

    .home-page .why-content-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .home-page .why-art {
        width: min(100%, 420px);
        margin-inline: auto;
    }

    .home-page .expertise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 18px;
    }

    .home-page .sector-icon {
        width: 70px;
        height: 70px;
        min-height: 70px;
        flex-basis: 70px;
        border-radius: 17px;
    }

    .home-page .contact-actions {
        width: 100%;
        justify-content: center;
    }

    .home-page .contact-actions .button {
        width: auto;
    }
}

/* Wider hero, testimonial marquee and FAQ arrows */
.home-page .header-inner,
.home-page .site-header.is-sticky .header-inner {
    width: min(1500px, calc(100% - 48px));
    gap: 32px;
}

.home-page .main-nav {
    gap: 30px;
}

.home-page .hero-grid {
    width: min(1500px, calc(100% - 48px));
    grid-template-columns: minmax(0, 1.5fr) minmax(330px, 0.5fr);
    gap: 32px;
}

.home-page .hero-copy,
.home-page .hero-copy h1 {
    max-width: none;
}

.home-page .hero-copy h1 .hero-line-one {
    white-space: nowrap;
}

.home-page .testimonial-marquee {
    width: 100vw;
    margin-top: 38px;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.home-page .testimonial-track {
    --testimonial-gap: 16px;
    width: max-content;
    display: flex;
    gap: var(--testimonial-gap);
    animation: testimonial-marquee 52s linear infinite;
}

.home-page .testimonial-marquee:hover .testimonial-track,
.home-page .testimonial-marquee:focus-within .testimonial-track {
    animation-play-state: paused;
}

.home-page .testimonial-group {
    display: flex;
    gap: var(--testimonial-gap);
}

.home-page .testimonial-card {
    width: clamp(300px, 27vw, 390px);
    min-height: 178px;
    padding: 25px 26px;
    justify-content: flex-start;
    border-color: #dddddd;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(17, 17, 17, 0.045);
}

.home-page .testimonial-card blockquote {
    position: relative;
    font-size: 0.95rem;
    line-height: 1.58;
}

.home-page .testimonial-card figcaption {
    margin-top: 16px;
    color: #72726e;
    font-size: 0.68rem;
}

@keyframes testimonial-marquee {
    to {
        transform: translateX(calc(-50% - (var(--testimonial-gap) / 2)));
    }
}

.home-page .faq-list summary,
.home-page .faq-list details > p {
    font-size: 1rem;
}

.home-page .faq-list details > p {
    color: #3f3f3c;
    line-height: 1.65;
}

.home-page .faq-list summary span {
    font-size: 0.95rem;
    font-weight: 700;
}

.home-page .faq-list details[open] summary span {
    transform: rotate(180deg);
}

@media (min-width: 901px) and (max-width: 1100px) {
    .home-page .hero-grid {
        grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.45fr);
        gap: 24px;
    }

    .home-page .hero-copy h1 {
        font-size: clamp(2.3rem, 3.7vw, 2.55rem);
    }
}

@media (max-width: 900px) {
    .home-page .header-inner,
    .home-page .site-header.is-sticky .header-inner,
    .home-page .hero-grid {
        width: calc(100% - 32px);
    }

    .home-page .header-inner,
    .home-page .site-header.is-sticky .header-inner {
        gap: 10px;
    }

    .home-page .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 52px;
    }

    .home-page .hero-copy {
        min-width: 0;
    }
}

@media (max-width: 700px) {
    .home-page .hero-copy h1 .hero-line-one {
        font-size: clamp(1.15rem, 5.8vw, 2.35rem);
        letter-spacing: -0.045em;
    }

    .home-page .testimonial-marquee {
        margin-top: 30px;
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
        mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    }

    .home-page .testimonial-card {
        width: min(82vw, 330px);
        min-height: 170px;
        padding: 22px;
    }

    .home-page .faq-list summary,
    .home-page .faq-list details > p {
        font-size: 0.94rem;
    }
}

@media (max-width: 350px) {
    .home-page .site-header .logo img,
    .home-page .site-header.is-sticky .logo img {
        max-width: 220px;
        height: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page .testimonial-marquee {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .home-page .testimonial-track {
        animation: none;
    }

    .home-page .testimonial-group[aria-hidden="true"] {
        display: none;
    }

    .home-page .modal-response-pill span {
        animation: none;
        opacity: 1;
    }
}

/* Final hero line composition */
.home-page .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(430px, 0.75fr);
}

.home-page .hero-copy h1 .dynamic-role {
    display: inline-block;
    min-height: 0;
    margin-left: 0.14em;
    color: inherit;
}

.home-page .hero-art {
    width: 150%;
    margin-left: -25%;
}

@media (min-width: 901px) and (max-width: 1100px) {
    .home-page .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
    }

    .home-page .hero-art {
        width: 140%;
        margin-left: -20%;
    }
}

@media (max-width: 900px) {
    .home-page .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-page .hero-art {
        width: min(125%, 860px);
        margin-left: -12.5%;
    }
}

@media (max-width: 700px) {
    .home-page .hero-copy h1 {
        font-size: clamp(1.55rem, 7vw, 3rem);
    }

    .home-page .hero-copy h1 .hero-line-one {
        font-size: inherit;
    }
}

@media (max-width: 420px) {
    .home-page .hero-art {
        width: 135%;
        margin-left: -17.5%;
    }
}

/* Simplified controls and testimonial attribution */
.home-page .header-actions {
    margin-left: auto;
}

.home-page .faq-list summary span {
    width: 11px;
    height: 11px;
    flex: 0 0 11px;
    border: 0;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    border-radius: 0;
    background: transparent;
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.home-page .faq-list details[open] summary span {
    transform: rotate(225deg);
}

.home-page .contact-modal-close {
    border-radius: 0;
    background: transparent;
}

.home-page .contact-modal-close:hover {
    opacity: 0.55;
}

.home-page .testimonial-card {
    min-height: 150px;
}

.home-page .testimonial-card figcaption {
    margin-top: 12px;
    color: #5f5f5b;
    font-weight: 600;
}

@media (max-width: 700px) {
    .home-page .testimonial-card {
        min-height: 148px;
    }
}

.home-page .testimonial-text {
    margin: 0;
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.58;
    letter-spacing: -0.02em;
}

.home-page .testimonial-sector {
    margin: 12px 0 0;
    color: #5f5f5b;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.4;
}

.home-page .testimonial-static-grid {
    max-width: 1180px;
    margin: 38px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-page .testimonial-static-grid .testimonial-card {
    width: auto;
    min-height: 180px;
    box-sizing: border-box;
}

@media (max-width: 800px) {
    .home-page .testimonial-static-grid {
        max-width: 620px;
        grid-template-columns: 1fr;
    }

    .home-page .testimonial-static-grid .testimonial-card {
        width: 100%;
        min-height: 150px;
    }
}

/* Balanced trust spacing, WhatsApp action and intentional mobile layout */
.home-page .client-proof-section {
    padding: 38px 24px 30px;
}

.home-page .header-action,
.home-page .mobile-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.home-page .hero-whatsapp-button {
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: transparent;
    color: #ffffff;
}

.home-page .hero-whatsapp-button:hover {
    transform: translateY(-3px);
    border-color: #ffffff;
    background: #ffffff;
    color: #111111;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.26);
}

.home-page .header-action-whatsapp {
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: transparent;
    color: #ffffff;
}

.home-page .header-action-whatsapp:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #111111;
}

.home-page .mobile-contact-button-whatsapp {
    grid-column: 1 / -1;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: transparent;
    color: #ffffff;
}

@media (max-width: 700px) {
    .home-page .hero-copy {
        text-align: center;
    }

    .home-page .hero-copy h1,
    .home-page .hero-subtitle-modern {
        margin-right: auto;
        margin-left: auto;
    }

    .home-page .hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .home-page .hero-actions .button {
        width: 100%;
        min-width: 0;
    }

    .home-page .hero-whatsapp-button {
        grid-column: 1 / -1;
    }

    .home-page .hero-art {
        margin-right: auto;
        margin-left: -17.5%;
    }

    .home-page .client-proof-section {
        padding: 30px 16px;
    }

    .home-page .overview-stats > div {
        min-height: 150px;
        align-items: center;
        text-align: center;
    }

    .home-page .overview-stats strong {
        font-size: clamp(2.35rem, 12vw, 3.4rem);
    }

    .home-page .overview-stats span {
        margin-top: 10px;
        font-size: 1rem;
        font-weight: 600;
    }

    .home-page .contact-dialog {
        text-align: center;
    }

    .home-page .contact-dialog > p {
        margin-right: auto;
        margin-left: auto;
    }

    .home-page .modal-response-pill {
        margin-inline: auto;
    }

    .home-page .contact-modal-actions {
        text-align: left;
    }

    .home-page .modal-vacancies-link {
        justify-content: center;
    }
}

/* Shared visual system on the vacancies page */
.vacancies-page .vacancies-page-hero .hero-copy h1 {
    max-width: 760px;
}

.vacancies-page .vacancies-page-hero .hero-art {
    display: flex;
    justify-content: flex-end;
}

.vacancies-page .vacancies-page-hero .hero-art-frame {
    width: 100%;
}

.vacancies-page .vacancies-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 110px 0 130px;
    scroll-margin-top: 84px;
}

.vacancies-page .vacancies-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
}

.vacancies-page .vacancy-card {
    min-height: 310px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: none;
}

.vacancies-page .vacancy-card::before {
    display: none;
}

.vacancies-page .vacancy-card:hover {
    border-color: #aaa8a2;
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(17, 17, 17, 0.07);
}

.vacancies-page .vacancy-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.vacancies-page .vacancy-meta {
    gap: 12px;
    margin: 20px 0 26px;
}

.vacancies-page .vacancy-meta-item {
    font-size: 0.88rem;
}

.vacancies-page .view-details-btn,
.vacancies-page .apply-btn {
    min-height: 48px;
    border-radius: 999px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0;
}

.vacancies-page .modal-overlay {
    z-index: 3000;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.vacancies-page .modal-content {
    border-radius: 28px;
}

.vacancies-page .modal-header {
    padding: 32px;
}

.vacancies-page .modal-body {
    padding: 34px;
}

.vacancies-page .site-footer {
    margin-top: 0;
}

@media (max-width: 900px) {
    .vacancies-page .vacancies-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 700px) {
    .vacancies-page .vacancies-page-hero .hero-copy h1 .hero-line-one {
        font-size: inherit;
    }

    .vacancies-page .vacancies-container {
        width: calc(100% - 32px);
        padding: 76px 0 90px;
    }

    .vacancies-page .vacancies-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .vacancies-page .vacancy-card {
        min-height: 280px;
        padding: 24px;
        text-align: left;
    }

    .vacancies-page .modal-overlay.active {
        align-items: flex-end;
        padding: 12px;
    }

    .vacancies-page .modal-content {
        width: 100%;
        max-height: calc(100vh - 24px);
        border-radius: 26px;
    }

    .vacancies-page .modal-header,
    .vacancies-page .modal-body {
        padding: 24px;
    }
}

@media (max-width: 700px) {
    .home-page:not(.vacancies-page) .hero-actions > * {
        grid-column: 1 / -1;
    }
}

/* Primary hero hiring action */
.home-page .hero-actions .hero-hire-cta {
    position: relative;
    isolation: isolate;
    min-height: 50px;
    padding: 13px 46px;
    overflow: hidden;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: inset 0 0 14px rgba(17, 17, 17, 0.1), 0 7px 22px rgba(255, 255, 255, 0.08);
}

.home-page .hero-actions .hero-hire-cta::before,
.home-page .hero-actions .hero-hire-cta::after {
    content: '';
    position: absolute;
    z-index: 2;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    pointer-events: none;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.home-page .hero-actions .hero-hire-cta::before {
    background: conic-gradient(from var(--cta-orbit), transparent 0deg 300deg, rgba(17, 17, 17, 0.16) 312deg, #111111 334deg, transparent 356deg);
    animation: cta-border-orbit 2.8s linear infinite;
    transition: opacity 180ms ease;
}

.home-page .hero-actions .hero-hire-cta::after {
    background: #111111;
    opacity: 0;
    transition: opacity 180ms ease;
}

.home-page .hero-actions .hero-hire-cta:hover::before {
    opacity: 0;
}

.home-page .hero-actions .hero-hire-cta:hover::after {
    opacity: 1;
}

.home-page .hero-actions .hero-hire-cta:hover {
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: inset 0 0 14px rgba(17, 17, 17, 0.1), 0 7px 24px rgba(255, 255, 255, 0.13);
}

.home-page .hero-actions .hero-hire-cta > span {
    position: relative;
    z-index: 1;
}

.home-page .hero-actions .hero-hire-cta:hover > span:last-child {
    transform: none;
}

.home-page .cta-bolt {
    position: absolute !important;
    left: 20px;
    top: 50%;
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    flex: 0 0 19px;
    color: #4f4f4f;
    transform: translateY(-50%);
}

.home-page .cta-bolt svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-page .hero-hire-cta:hover .cta-bolt {
    transform: translateY(-50%);
}

.home-page .hero-actions .button:hover {
    transform: none;
}

@property --cta-orbit {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

@keyframes cta-border-orbit {
    to {
        --cta-orbit: 360deg;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page .hero-actions .hero-hire-cta::before {
        animation: none;
        background: rgba(17, 17, 17, 0.35);
    }
}

/* Shared header mega navigation */
.home-page .site-header {
    overflow: visible;
}

.home-page .header-actions {
    position: static;
    gap: 30px;
}

.home-page .header-menu-item {
    display: flex;
    align-items: center;
}

.home-page .header-menu-trigger,
.home-page .sector-menu-toggle {
    border: 0;
    background: transparent;
    color: inherit;
    font-family: inherit;
    cursor: pointer;
}

.home-page .header-menu-trigger {
    position: relative;
    padding: 12px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: -0.015em;
}

.home-page .header-menu-trigger::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 1px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.home-page .header-menu-trigger:hover,
.home-page .header-menu-item.is-open > .header-menu-trigger {
    color: #ffffff;
}

.home-page .header-menu-trigger:hover::after,
.home-page .header-menu-item.is-open > .header-menu-trigger::after {
    transform: scaleX(1);
    transform-origin: left;
}

.home-page .header-menu-trigger svg,
.home-page .sector-menu-toggle svg {
    width: 10px;
    height: 7px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 180ms ease;
}

.home-page .header-menu-item.is-open > .header-menu-trigger svg,
.home-page .sector-menu-item.is-open > .sector-menu-toggle svg {
    transform: rotate(180deg);
}

.home-page .header-actions .header-action-whatsapp {
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.home-page .mega-menu {
    position: absolute;
    z-index: -1;
    top: 100%;
    right: 0;
    left: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    background: #ffffff;
    color: #111111;
    border-top: 1px solid #e7e7e7;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
    transform: translateY(-12px);
    transition: max-height 360ms cubic-bezier(.22, 1, .36, 1), opacity 180ms ease, transform 260ms ease, visibility 0s linear 360ms;
}

.home-page .header-menu-item.is-open > .mega-menu {
    z-index: 1;
    max-height: 720px;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.home-page .mega-menu-inner {
    width: min(1500px, calc(100% - 48px));
    margin-inline: auto;
    padding: 38px 0 42px;
    display: grid;
    grid-template-columns: minmax(230px, 0.32fr) minmax(0, 0.68fr);
    gap: clamp(50px, 7vw, 110px);
}

.home-page .mega-menu-intro {
    align-self: start;
}

.home-page .mega-menu-label {
    margin: 0 0 13px;
    color: #767676;
    font-size: 0.78rem;
    font-weight: 700;
}

.home-page .mega-menu-intro h2 {
    max-width: 390px;
    margin: 0;
    font-size: clamp(1.65rem, 2.4vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.home-page .mega-menu-intro > p:last-child {
    max-width: 390px;
    margin: 18px 0 0;
    color: #666666;
    font-size: 0.86rem;
    line-height: 1.65;
}

.home-page .sector-menu-grid {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 24px;
    list-style: none;
}

.home-page .sector-menu-item {
    min-width: 0;
    border-bottom: 1px solid #e8e8e8;
}

.home-page .sector-menu-toggle {
    width: 100%;
    min-height: 42px;
    padding: 9px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #222222;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: left;
    text-decoration: none;
}

.home-page .sector-menu-toggle:hover {
    color: #777777;
}

.home-page .role-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 220ms ease, opacity 160ms ease;
}

.home-page .sector-menu-item:hover > .role-menu,
.home-page .sector-menu-item:focus-within > .role-menu,
.home-page .sector-menu-item.is-open > .role-menu {
    max-height: 62px;
    opacity: 1;
}

.home-page .role-menu a {
    padding: 1px 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #686868;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
}

.home-page .role-menu a:hover {
    color: #111111;
}

.home-page .solution-links {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.home-page .solution-links a,
.home-page .candidate-menu-links a {
    border-radius: 16px;
    background: #f2f2f2;
    text-decoration: none;
    transition: background-color 180ms ease;
}

.home-page .solution-links a {
    min-height: 58px;
    padding: 15px 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 0.82rem;
    font-weight: 700;
}

.home-page .solution-links a:hover,
.home-page .candidate-menu-links a:hover {
    background: #e7e7e7;
}

.home-page .candidate-menu-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-self: center;
}

.home-page .candidate-menu-links a {
    min-height: 116px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.home-page .candidate-menu-links a > span:first-child {
    display: grid;
    gap: 8px;
}

.home-page .candidate-menu-links strong {
    font-size: 0.95rem;
}

.home-page .candidate-menu-links small {
    color: #6c6c6c;
    font-size: 0.76rem;
    line-height: 1.45;
}

.home-page :is(.header-menu-trigger, .sector-menu-toggle, .mega-menu a):focus-visible {
    outline: 2px solid #111111;
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .home-page .mobile-nav {
        max-height: calc(100vh - 94px);
        padding: 0 16px 20px;
        overflow-y: auto;
    }

    .home-page .mobile-nav-actions {
        padding: 12px 0 0;
        display: block;
    }

    .home-page .mobile-nav .header-menu-item {
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .home-page .mobile-nav .header-menu-trigger {
        width: 100%;
        min-height: 56px;
        justify-content: space-between;
        font-size: 0.94rem;
    }

    .home-page .mobile-nav .header-menu-trigger::after {
        display: none;
    }

    .home-page .mobile-nav .mega-menu {
        position: static;
        margin-inline: -16px;
        border: 0;
        box-shadow: none;
        transform: none;
    }

    .home-page .mobile-nav .header-menu-item.is-open > .mega-menu {
        max-height: 1100px;
    }

    .home-page .mobile-nav .mega-menu-inner {
        width: 100%;
        padding: 24px 16px 28px;
        display: block;
    }

    .home-page .mobile-nav .mega-menu-intro {
        display: none;
    }

    .home-page .mobile-nav .sector-menu-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .home-page .mobile-nav .sector-menu-toggle {
        min-height: 46px;
    }

    .home-page .mobile-nav .solution-links,
    .home-page .mobile-nav .candidate-menu-links {
        grid-template-columns: 1fr;
    }

    .home-page .mobile-nav .solution-links a {
        min-height: 54px;
    }

    .home-page .mobile-nav .candidate-menu-links a {
        min-height: 88px;
    }

    .home-page .mobile-nav > .mobile-nav-actions > .header-action-whatsapp {
        width: 100%;
        min-height: 48px;
        margin-top: 18px;
        border-radius: 999px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 0.88rem;
        font-weight: 700;
        text-decoration: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page .mega-menu,
    .home-page .role-menu,
    .home-page .header-menu-trigger::after {
        transition: none;
    }
}

/* Temporary landing-page shells linked from the mega menu */
.home-page.landing-page .placeholder-main {
    min-height: 100vh;
    background: #111111;
}

.home-page.landing-page .placeholder-hero {
    min-height: 100vh;
    padding: 190px 0 100px;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.home-page.landing-page .placeholder-content {
    max-width: 900px;
}

.home-page.landing-page .placeholder-back {
    display: inline-block;
    margin-bottom: 70px;
    color: #a0a0a0;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
}

.home-page.landing-page .placeholder-label {
    margin: 0 0 18px;
    color: #8d8d8d;
    font-size: 0.76rem;
    font-weight: 700;
}

.home-page.landing-page .placeholder-content h1 {
    max-width: 800px;
    margin: 0;
    font-size: clamp(3rem, 7vw, 6.8rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.home-page.landing-page .placeholder-content > p:not(.placeholder-label) {
    max-width: 630px;
    margin: 30px 0 0;
    color: #a8a8a8;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    line-height: 1.65;
}

.home-page.landing-page .placeholder-actions {
    margin-top: 38px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-page.landing-page .placeholder-email {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 700px) {
    .home-page.landing-page .placeholder-hero {
        padding: 145px 0 70px;
    }

    .home-page.landing-page .placeholder-back {
        margin-bottom: 48px;
    }

    .home-page.landing-page .placeholder-content h1 {
        font-size: clamp(2.6rem, 14vw, 4.5rem);
    }

    .home-page.landing-page .placeholder-actions {
        display: grid;
    }
}

/* Left-to-right mega-menu hierarchy */
.home-page .mega-menu-hierarchy {
    grid-template-columns: clamp(210px, 19vw, 270px) clamp(250px, 22vw, 310px) minmax(0, 1fr);
    gap: 0;
}

.home-page .menu-level {
    min-width: 0;
    padding: 0 clamp(28px, 3vw, 50px);
}

.home-page .mega-menu-hierarchy .menu-level-sectors,
.home-page .mega-menu-hierarchy .menu-level-roles {
    display: none;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 150ms ease, visibility 0s linear 150ms;
}

.home-page .mega-menu-hire.is-sector-open .menu-level-sectors,
.home-page .mega-menu-hire.has-active-role .menu-level-roles {
    display: block;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
}

.home-page .menu-level:first-child {
    padding-left: 0;
}

.home-page .menu-level:last-child {
    padding-right: 0;
}

.home-page .menu-level + .menu-level {
    border-left: 1px solid #e5e5e5;
}

.home-page .menu-level-primary > a,
.home-page .menu-level-current {
    width: 100%;
    min-height: 48px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #222222;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
}

.home-page .menu-level-current {
    border-top: 0;
    border-right: 0;
    border-left: 0;
    background: transparent;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
}

.home-page .menu-level-current,
.home-page .menu-level-primary > a:hover,
.home-page .mega-menu-hierarchy .sector-menu-item.is-active .sector-menu-toggle {
    color: #777777;
}

.home-page .mega-menu-hierarchy .sector-menu-grid {
    grid-template-columns: 1fr;
    gap: 0;
}

.home-page .mega-menu-hierarchy .sector-menu-toggle > span:last-child {
    font-size: 0.9rem;
    font-weight: 500;
}

.home-page .menu-level-roles .role-menu {
    display: none;
    max-height: none;
    overflow: visible;
    opacity: 1;
}

.home-page .menu-level-roles .role-menu.is-active {
    display: block;
}

.home-page .role-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 0 16px;
}

.home-page .menu-level-roles .role-menu a {
    min-height: 46px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #111111;
    font-size: 0.76rem;
    font-weight: 700;
}

.home-page .menu-level-roles .role-menu p {
    margin: 16px 0 0;
    color: #777777;
    font-size: 0.76rem;
    line-height: 1.55;
}

@media (min-width: 901px) and (max-width: 1100px) {
    .home-page .menu-level-roles {
        max-height: 500px;
        padding-right: 12px;
        overflow-y: auto;
        scrollbar-width: thin;
    }
}

@media (max-width: 900px) {
    .home-page .mobile-nav .mega-menu-hierarchy {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-page .mobile-nav .menu-level {
        padding: 20px 0 0;
        border-left: 0;
    }

    .home-page .mobile-nav .mega-menu-hierarchy .menu-level-sectors,
    .home-page .mobile-nav .mega-menu-hierarchy .menu-level-roles {
        display: none;
    }

    .home-page .mobile-nav .mega-menu-hire.is-sector-open .menu-level-sectors,
    .home-page .mobile-nav .mega-menu-hire.has-active-role .menu-level-roles {
        display: block;
    }

    .home-page .mobile-nav .mega-menu-label {
        display: none;
    }

    .home-page .mobile-nav .header-menu-item.is-open > .mega-menu {
        max-height: none;
        overflow: visible;
    }

    .home-page .mobile-nav .menu-level:first-child {
        padding-top: 0;
    }

    .home-page .mobile-nav .menu-level + .menu-level {
        margin-top: 18px;
        border-top: 1px solid #e5e5e5;
    }

    .home-page .mobile-nav .menu-level-roles .role-menu p {
        display: none;
    }

    .home-page .mobile-nav .role-link-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 14px;
    }
}

@media (max-width: 360px) {
    .home-page .mobile-nav .role-link-grid {
        grid-template-columns: 1fr;
    }
}

/* Header contact link and contact page */
.home-page .header-text-link {
    position: relative;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    text-decoration: none;
}

.home-page .header-text-link::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 1px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.home-page .header-text-link:hover,
.home-page .header-text-link:focus-visible {
    color: #ffffff;
}

.home-page .header-text-link:hover::after,
.home-page .header-text-link:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.home-page.contact-page,
.home-page.contact-page .contact-page-main {
    background: #111111;
}

.home-page.contact-page .contact-page-main {
    min-height: calc(100vh - 90px);
}

.home-page.contact-page .contact-page-hero {
    min-height: calc(100vh - 90px);
    padding: 180px 0 100px;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.home-page.contact-page .contact-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.7fr);
    align-items: center;
    gap: clamp(60px, 9vw, 150px);
}

.home-page.contact-page .contact-page-copy h1 {
    margin: 28px 0 0;
    font-size: clamp(4rem, 9vw, 8.5rem);
    line-height: 0.9;
    letter-spacing: -0.075em;
}

.home-page.contact-page .contact-page-copy > p {
    max-width: 600px;
    margin: 34px 0 0;
    color: #a6a6a6;
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    line-height: 1.65;
}

.home-page.contact-page .contact-response {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #b8b8b8;
    font-size: 0.78rem;
    font-weight: 700;
}

.home-page.contact-page .contact-response > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.08);
    animation: contact-pulse 1.8s ease-out infinite;
}

.home-page.contact-page .contact-methods {
    display: grid;
    gap: 12px;
}

.home-page.contact-page .contact-method {
    min-height: 94px;
    padding: 21px 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease;
}

.home-page.contact-page .contact-method:hover {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.06);
}

.home-page.contact-page .contact-method-primary {
    border-color: #ffffff;
    background: #ffffff;
    color: #111111;
}

.home-page.contact-page .contact-method-primary:hover {
    border-color: #ffffff;
    background: #f0f0f0;
}

.home-page.contact-page .contact-method > span:first-child {
    display: grid;
    gap: 6px;
}

.home-page.contact-page .contact-method small {
    color: #929292;
    font-size: 0.7rem;
    font-weight: 600;
}

.home-page.contact-page .contact-method strong {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
}

.home-page.contact-page .contact-page-footer {
    padding-top: 0;
}

.home-page.contact-page .contact-page-footer .footer-bottom {
    padding-top: 28px;
}

.home-page.contact-page .contact-page-footer a {
    color: inherit;
    text-decoration: none;
}

@keyframes contact-pulse {
    70%, 100% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
}

@media (max-width: 900px) {
    .home-page .mobile-nav > .mobile-nav-actions > .header-text-link {
        min-height: 56px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        color: #ffffff;
        font-size: 0.94rem;
    }

    .home-page .mobile-nav > .mobile-nav-actions > .header-text-link::after {
        display: none;
    }

    .home-page.contact-page .contact-page-layout {
        grid-template-columns: 1fr;
        gap: 54px;
    }
}

@media (max-width: 600px) {
    .home-page.contact-page .contact-page-hero {
        padding: 145px 0 70px;
    }

    .home-page.contact-page .contact-page-copy h1 {
        font-size: clamp(4rem, 22vw, 6rem);
    }

    .home-page.contact-page .contact-method {
        min-height: 84px;
        padding: 18px;
        border-radius: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page.contact-page .contact-response > span {
        animation: none;
    }
}

/* Wider twelve-sector grid */
.home-page .expertise-grid {
    max-width: 900px;
}

@media (max-width: 700px) {
    .home-page .sector-option:last-child {
        width: 100%;
        grid-column: auto;
        justify-self: stretch;
    }
}

/* Reusable full and compact footers */
.home-page .shared-site-footer:not(.shared-site-footer-compact) .home-container {
    width: 100%;
    max-width: none;
    padding-inline: 48px;
}

.home-page .shared-footer-grid {
    grid-template-columns: minmax(250px, 1.35fr) repeat(4, minmax(120px, auto));
    gap: clamp(34px, 4.5vw, 72px);
}

.home-page .shared-footer-grid .footer-column h2 {
    font-size: 0.76rem;
    letter-spacing: 0;
    text-transform: none;
}

.home-page .shared-footer-grid .footer-column a {
    font-size: 0.82rem;
    line-height: 1.45;
}

.home-page .shared-site-footer-compact {
    padding: 0 0 28px;
}

.home-page .compact-footer-row {
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.72rem;
}

.home-page .compact-footer-row nav {
    display: flex;
    gap: 18px;
}

.home-page .compact-footer-row a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.home-page .compact-footer-row a:hover {
    color: #ffffff;
}

@media (min-width: 901px) and (max-width: 1150px) {
    .home-page .shared-footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .home-page .shared-footer-grid .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .home-page .shared-site-footer:not(.shared-site-footer-compact) .home-container {
        padding-inline: 32px;
    }

    .home-page .shared-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-page .shared-footer-grid .footer-brand {
        grid-column: 1 / -1;
    }

    .home-page .shared-footer-grid .footer-column:last-child {
        grid-column: auto;
    }
}

@media (max-width: 700px) {
    .home-page .shared-site-footer:not(.shared-site-footer-compact) .home-container {
        padding-inline: 20px;
    }

    .home-page .shared-footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .home-page .shared-footer-grid .footer-brand,
    .home-page .shared-footer-grid .footer-column:last-child {
        grid-column: auto;
    }

    .home-page .compact-footer-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}

/* Admin & HR directory: homepage component system */
.home-page.admin-hr-page .admin-role-groups {
    max-width: 1120px;
    margin: 58px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.home-page.admin-hr-page .admin-role-group {
    padding: 28px;
    border-radius: 28px;
    background: var(--paper);
}

.home-page.admin-hr-page .admin-role-group h3 {
    margin: 34px 0 20px;
    font-size: 1.2rem;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.home-page.admin-hr-page .admin-role-links {
    display: grid;
}

.home-page.admin-hr-page .admin-role-links a {
    min-height: 43px;
    padding: 11px 0;
    border-bottom: 1px solid #dcdcd7;
    display: flex;
    align-items: center;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 650;
    line-height: 1.35;
    text-decoration: none;
    transition: color 180ms ease, padding-left 180ms ease;
}

.home-page.admin-hr-page .admin-role-links a:hover {
    padding-left: 5px;
    color: #74746f;
}

.home-page.admin-hr-page .admin-role-links a:focus-visible {
    border-radius: 4px;
    outline: 2px solid var(--ink);
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .home-page.admin-hr-page .admin-role-groups {
        grid-template-columns: 1fr;
        max-width: 700px;
    }

    .home-page.admin-hr-page .admin-role-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 24px;
    }
}

@media (max-width: 540px) {
    .home-page.admin-hr-page .admin-role-groups {
        margin-top: 42px;
    }

    .home-page.admin-hr-page .admin-role-group {
        padding: 22px;
        border-radius: 24px;
    }

    .home-page.admin-hr-page .admin-role-links {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page.admin-hr-page .admin-role-links a {
        transition: none;
    }
}

/* HGV driver employer landing page */
.home-page.hgv-page {
    --hgv-ink: #111111;
    --hgv-muted: #666661;
    --hgv-paper: #f2f2ed;
    --hgv-line: #ddddda;
}

.home-page.hgv-page main {
    background: #ffffff;
}

.home-page.hgv-page .hgv-hero {
    min-height: 790px;
    padding: 176px 0 104px;
    display: flex;
    align-items: center;
    background: #111111;
    color: #ffffff;
}

.home-page.hgv-page .hgv-hero-inner {
    max-width: 1120px;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.home-page.hgv-page .hgv-breadcrumb {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.72rem;
    font-weight: 600;
}

.home-page.hgv-page .hgv-breadcrumb a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.home-page.hgv-page .hgv-breadcrumb a:hover {
    color: #ffffff;
}

.home-page.hgv-page .hgv-hero .section-pill {
    margin: 0 auto 28px;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
}

.home-page.hgv-page .hgv-hero h1 {
    max-width: 1050px;
    margin: 0;
    font-size: clamp(3.7rem, 7.6vw, 7.6rem);
    line-height: 0.94;
    letter-spacing: -0.075em;
}

.home-page.logistics-page .logistics-hero-line {
    display: block;
}

.home-page.logistics-page .hgv-hero-inner {
    max-width: 1380px;
}

.home-page.logistics-page .hgv-hero h1 {
    max-width: 1320px;
    font-size: clamp(3.1rem, 4.8vw, 4.5rem);
    line-height: 1.22;
    letter-spacing: -0.055em;
    word-spacing: 0.035em;
}

.home-page.logistics-page .logistics-hero-line-one {
    color: #f4f4f1;
}

.home-page.logistics-page .logistics-hero-line-two {
    color: #c8c8c3;
}

.home-page.logistics-page .logistics-hero-line-three {
    min-height: 0.94em;
    color: #989893;
}

.home-page.logistics-page .logistics-dynamic-role {
    display: inline-block;
    color: inherit;
    transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
}

.home-page.logistics-page .logistics-dynamic-role.is-changing {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(8px);
}

@media (min-width: 901px) {
    .home-page.logistics-page .logistics-hero-line {
        white-space: nowrap;
    }
}

.home-page.hgv-page .hgv-hero-inner > p {
    max-width: 760px;
    margin: 32px auto 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: clamp(1rem, 1.55vw, 1.24rem);
    line-height: 1.65;
}

.home-page.hgv-page .hgv-hero .hero-actions {
    margin-top: 38px;
    justify-content: center;
}

.home-page.hgv-page .hgv-hero .hero-actions a {
    text-decoration: none;
}

.home-page.hgv-page .hgv-proof {
    padding: 60px 0 48px;
    border-bottom: 1px solid var(--hgv-line);
    background: #ffffff;
}

.home-page.hgv-page .hgv-proof-quote {
    max-width: 840px;
    margin: 0 auto 44px;
    text-align: center;
}

.home-page.hgv-page .hgv-proof-quote p {
    margin: 0;
    color: var(--hgv-ink);
    font-size: clamp(1.35rem, 2.5vw, 2.2rem);
    font-weight: 650;
    line-height: 1.3;
    letter-spacing: -0.04em;
}

.home-page.hgv-page .hgv-proof-quote cite {
    margin-top: 14px;
    display: block;
    color: var(--hgv-muted);
    font-size: 0.76rem;
    font-style: normal;
}

.home-page.hgv-page .hgv-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page.hgv-page .hgv-stat-grid > div {
    padding: 15px 24px;
    display: grid;
    gap: 7px;
    text-align: center;
}

.home-page.hgv-page .hgv-stat-grid > div + div {
    border-left: 1px solid var(--hgv-line);
}

.home-page.hgv-page .hgv-stat-grid strong {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    letter-spacing: -0.04em;
}

.home-page.hgv-page .hgv-stat-grid span {
    color: var(--hgv-muted);
    font-size: 0.76rem;
}

.home-page.hgv-page .home-section {
    padding-top: 150px;
    padding-bottom: 150px;
}

.home-page.hgv-page .section-heading {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.home-page.hgv-page .section-heading > p:last-child {
    max-width: 750px;
    margin-right: auto;
    margin-left: auto;
}

.home-page.hgv-page .hgv-card-grid,
.home-page.hgv-page .hgv-process-grid,
.home-page.hgv-page .hgv-service-grid,
.home-page.hgv-page .hgv-resource-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-page.hgv-page .hgv-info-card,
.home-page.hgv-page .hgv-process-grid li,
.home-page.hgv-page .hgv-service-grid article,
.home-page.hgv-page .hgv-resource-grid a {
    min-height: 340px;
    padding: 30px;
    border: 1px solid var(--hgv-line);
    border-radius: 26px;
    background: #ffffff;
}

.home-page.hgv-page :is(.hgv-info-card, .hgv-process-grid li) > span,
.home-page.hgv-page .hgv-kicker,
.home-page.hgv-page .hgv-resource-grid a > span {
    margin: 0;
    color: #777771;
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.01em;
}

.home-page.hgv-page :is(.hgv-info-card, .hgv-process-grid li) h3 {
    margin: 92px 0 0;
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    line-height: 1.16;
    letter-spacing: -0.045em;
}

.home-page.hgv-page :is(.hgv-info-card, .hgv-process-grid li) p {
    margin: 18px 0 0;
    color: var(--hgv-muted);
    font-size: 0.86rem;
    line-height: 1.7;
}

.home-page.hgv-page .hgv-problems,
.home-page.hgv-page .hgv-services,
.home-page.hgv-page .hgv-faq {
    background: #fafaf7;
}

.home-page.hgv-page .hgv-split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.72fr);
    align-items: start;
    gap: clamp(56px, 8vw, 120px);
}

.home-page.hgv-page .hgv-copy h2 {
    max-width: 760px;
    margin: 24px 0 0;
    font-size: clamp(2.4rem, 4.8vw, 5rem);
    line-height: 1;
    letter-spacing: -0.065em;
}

.home-page.hgv-page .hgv-copy > p {
    max-width: 760px;
    margin: 24px 0 0;
    color: #555551;
    font-size: 0.94rem;
    line-height: 1.8;
}

.home-page.hgv-page .hgv-check-panel {
    padding: 34px;
    border-radius: 28px;
    background: var(--hgv-ink);
    color: #ffffff;
}

.home-page.hgv-page .hgv-check-panel .hgv-kicker {
    color: rgba(255, 255, 255, 0.48);
}

.home-page.hgv-page .hgv-check-panel h3 {
    margin: 16px 0 28px;
    font-size: 1.55rem;
    line-height: 1.2;
    letter-spacing: -0.045em;
}

.home-page.hgv-page .hgv-check-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-page.hgv-page .hgv-check-panel li {
    position: relative;
    padding: 14px 0 14px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.8rem;
    line-height: 1.5;
}

.home-page.hgv-page .hgv-check-panel li::before {
    content: '';
    position: absolute;
    top: 19px;
    left: 2px;
    width: 8px;
    height: 4px;
    border-bottom: 1.5px solid #ffffff;
    border-left: 1.5px solid #ffffff;
    transform: rotate(-45deg);
}

.home-page.hgv-page .hgv-roles {
    border-top: 1px solid var(--hgv-line);
}

.home-page.hgv-page .hgv-role-groups {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-page.hgv-page .hgv-role-group {
    padding: 30px;
    border-radius: 28px;
    background: var(--hgv-paper);
}

.home-page.hgv-page .hgv-role-group h3 {
    min-height: 2.4em;
    margin: 22px 0 22px;
    font-size: 1.3rem;
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.home-page.hgv-page .hgv-role-links {
    display: grid;
}

.home-page.hgv-page .hgv-role-links a {
    min-height: 47px;
    padding: 12px 0;
    border-bottom: 1px solid #d5d5d0;
    display: flex;
    align-items: center;
    color: var(--hgv-ink);
    font-size: 0.79rem;
    font-weight: 650;
    line-height: 1.4;
    text-decoration: none;
    transition: color 180ms ease, padding-left 180ms ease;
}

.home-page.hgv-page .hgv-role-links a:hover {
    padding-left: 5px;
    color: #6b6b66;
}

.home-page.hgv-page .hgv-process-grid {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.home-page.hgv-page .hgv-employers {
    background: var(--hgv-ink);
    color: #ffffff;
}

.home-page.hgv-page .hgv-employers .section-heading > p:last-child {
    color: rgba(255, 255, 255, 0.52);
}

.home-page.hgv-page .hgv-employers .section-pill {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
}

.home-page.hgv-page .hgv-employer-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-page.hgv-page .hgv-employer-grid article {
    min-height: 270px;
    padding: 30px;
    border-radius: 26px;
    background: #222222;
}

.home-page.hgv-page .hgv-employer-grid article > span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
    font-weight: 700;
}

.home-page.hgv-page .hgv-employer-grid h3 {
    margin: 72px 0 0;
    font-size: 1.4rem;
    line-height: 1.16;
    letter-spacing: -0.04em;
}

.home-page.hgv-page .hgv-employer-grid p {
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.82rem;
    line-height: 1.65;
}

.home-page.hgv-page .hgv-service-grid article {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.home-page.hgv-page .hgv-service-grid h3 {
    margin: 48px 0 0;
    font-size: 1.55rem;
    line-height: 1.15;
    letter-spacing: -0.045em;
}

.home-page.hgv-page .hgv-service-grid article > p:not(.hgv-kicker) {
    margin: 17px 0 28px;
    color: var(--hgv-muted);
    font-size: 0.84rem;
    line-height: 1.7;
}

.home-page.hgv-page .hgv-service-grid button {
    margin-top: auto;
    padding: 0 0 6px;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    color: var(--hgv-ink);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 750;
    cursor: pointer;
}

.home-page.hgv-page .hgv-benefit-list {
    max-width: 970px;
    margin: 60px auto 0;
}

.home-page.hgv-page .hgv-benefit-list article {
    padding: 30px 0;
    border-top: 1px solid var(--hgv-line);
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 28px;
}

.home-page.hgv-page .hgv-benefit-list article:last-child {
    border-bottom: 1px solid var(--hgv-line);
}

.home-page.hgv-page .hgv-benefit-list article > span {
    color: #85857f;
    font-size: 0.76rem;
    font-weight: 750;
}

.home-page.hgv-page .hgv-benefit-list h3 {
    margin: 0;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.home-page.hgv-page .hgv-benefit-list p {
    max-width: 720px;
    margin: 12px 0 0;
    color: var(--hgv-muted);
    font-size: 0.87rem;
    line-height: 1.7;
}

.home-page.hgv-page .hgv-resources {
    border-top: 1px solid var(--hgv-line);
}

.home-page.hgv-page .hgv-resource-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-page.hgv-page .hgv-resource-grid a {
    display: flex;
    flex-direction: column;
    color: var(--hgv-ink);
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease;
}

.home-page.hgv-page .hgv-resource-grid a:hover {
    transform: translateY(-5px);
    background: var(--hgv-paper);
}

.home-page.hgv-page .hgv-resource-grid h3 {
    margin: 68px 0 0;
    font-size: 1.45rem;
    line-height: 1.17;
    letter-spacing: -0.045em;
}

.home-page.hgv-page .hgv-resource-grid p {
    margin: 16px 0 26px;
    color: var(--hgv-muted);
    font-size: 0.83rem;
    line-height: 1.65;
}

.home-page.hgv-page .hgv-resource-grid strong {
    margin-top: auto;
    font-size: 0.76rem;
}

.home-page.hgv-page .hgv-faq .faq-layout {
    grid-template-columns: 1fr;
}

.home-page.hgv-page .hgv-faq .faq-list {
    max-width: 920px;
    margin: 58px auto 0;
}

.home-page.hgv-page .hgv-final-cta {
    padding-top: 0;
    background: #ffffff;
}

.home-page.hgv-page .hgv-final-cta .contact-panel {
    text-align: center;
}

.home-page.hgv-page .hgv-final-cta .section-pill,
.home-page.hgv-page .hgv-final-cta > .home-container > p {
    margin-right: auto;
    margin-left: auto;
}

.home-page.hgv-page .hgv-final-cta .contact-actions {
    justify-content: center;
}

.home-page.hgv-page :is(.hgv-role-links a, .hgv-resource-grid a, .hgv-service-grid button):focus-visible {
    outline: 3px solid var(--hgv-ink);
    outline-offset: 4px;
}

@media (max-width: 1000px) {
    .home-page.hgv-page .hgv-role-groups,
    .home-page.hgv-page .hgv-employer-grid,
    .home-page.hgv-page .hgv-resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-page.hgv-page .hgv-role-group:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .home-page.hgv-page .hgv-split {
        grid-template-columns: 1fr;
    }

    .home-page.hgv-page .hgv-check-panel {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
}

@media (max-width: 760px) {
    .home-page.hgv-page .hgv-hero {
        min-height: 700px;
        padding: 152px 0 84px;
    }

    .home-page.hgv-page .hgv-hero h1 {
        font-size: clamp(3rem, 14vw, 5.2rem);
    }

    .home-page.logistics-page .hgv-hero h1 {
        font-size: clamp(2.25rem, 10.5vw, 4rem);
        line-height: 1.23;
        letter-spacing: -0.045em;
        word-spacing: 0.025em;
    }

    .home-page.logistics-page .logistics-hero-line-three {
        min-height: 2.46em;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .home-page.logistics-page .logistics-dynamic-role {
        display: block;
    }

    .home-page.hgv-page .home-section {
        padding-top: 104px;
        padding-bottom: 104px;
    }

    .home-page.hgv-page .hgv-card-grid,
    .home-page.hgv-page .hgv-process-grid,
    .home-page.hgv-page .hgv-service-grid,
    .home-page.hgv-page .hgv-resource-grid,
    .home-page.hgv-page .hgv-role-groups,
    .home-page.hgv-page .hgv-employer-grid {
        margin-top: 44px;
        grid-template-columns: 1fr;
    }

    .home-page.hgv-page .hgv-role-group:last-child {
        grid-column: auto;
    }

    .home-page.hgv-page .hgv-stat-grid {
        grid-template-columns: 1fr;
    }

    .home-page.hgv-page .hgv-stat-grid > div {
        padding: 20px 10px;
    }

    .home-page.hgv-page .hgv-stat-grid > div + div {
        border-top: 1px solid var(--hgv-line);
        border-left: 0;
    }

    .home-page.hgv-page .hgv-employer-grid article {
        min-height: 235px;
    }

    .home-page.hgv-page .hgv-benefit-list article {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 15px;
    }
}

@media (max-width: 540px) {
    .home-page.hgv-page .hgv-hero .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .home-page.hgv-page .hgv-hero .hero-actions .button {
        width: 100%;
        flex: none;
    }

    .home-page.hgv-page .hgv-info-card,
    .home-page.hgv-page .hgv-process-grid li,
    .home-page.hgv-page .hgv-service-grid article,
    .home-page.hgv-page .hgv-resource-grid a,
    .home-page.hgv-page .hgv-role-group,
    .home-page.hgv-page .hgv-check-panel,
    .home-page.hgv-page .hgv-employer-grid article {
        padding: 24px;
        border-radius: 22px;
    }

    .home-page.hgv-page :is(.hgv-info-card, .hgv-process-grid li) h3 {
        margin-top: 64px;
    }

    .home-page.hgv-page .hgv-benefit-list article {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page.hgv-page :is(.hgv-role-links a, .hgv-resource-grid a) {
        transition: none;
    }

    .home-page.logistics-page .logistics-dynamic-role {
        transition: none;
    }
}

/* Direction-aware employer contact banner */
.home-page .employer-scroll-banner {
    position: absolute;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    min-height: 106px;
    padding: 20px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    background: #111111;
    color: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-105%);
    transition: transform 280ms cubic-bezier(.22, 1, .36, 1), opacity 180ms ease, visibility 0s linear 280ms;
}

.home-page .site-header.show-employer-banner .employer-scroll-banner {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}

.home-page .employer-scroll-banner p {
    max-width: 1250px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(0.98rem, 1.25vw, 1.15rem);
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: -0.02em;
}

.home-page .employer-banner-mobile {
    display: none;
}

.home-page .employer-scroll-banner strong {
    color: #ffffff;
    font-weight: 800;
}

.home-page .employer-scroll-banner a {
    min-height: 42px;
    margin: 0 7px;
    padding: 10px 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: #111111;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.home-page .employer-scroll-banner a:hover {
    background: #f0f0ed;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
    transform: translateY(-2px);
}

.home-page .employer-scroll-banner a:focus-visible {
    border-radius: 3px;
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

@media (max-width: 700px) {
    .home-page .employer-scroll-banner {
        min-height: 82px;
        padding: 8px 18px;
    }

    .home-page .employer-scroll-banner p {
        max-width: 470px;
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .home-page .employer-banner-desktop {
        display: none;
    }

    .home-page .employer-banner-mobile {
        display: inline;
    }

    .home-page .employer-scroll-banner a {
        min-height: 34px;
        margin: 4px 4px;
        padding: 8px 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page .employer-scroll-banner {
        transition: none;
    }
}

/* Logistics landing page: reviews, SEO introduction and hiring timeline */
.home-page.logistics-page .logistics-reviews {
    padding-top: 58px;
    padding-bottom: 82px;
    border-bottom: 1px solid var(--hgv-line);
    background: #fafaf7;
}

.home-page.logistics-page .logistics-intro {
    overflow: hidden;
    background: #ffffff;
}

.home-page.logistics-page .logistics-intro-grid {
    width: min(1480px, calc(100% - 48px));
    max-width: 1480px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.82fr);
    align-items: center;
    gap: clamp(48px, 6vw, 92px);
}

.home-page.logistics-page .logistics-intro-copy h2 {
    max-width: 760px;
    margin: 24px 0 0;
    color: var(--hgv-ink);
    font-size: clamp(2.7rem, 5.1vw, 5.3rem);
    line-height: 0.98;
    letter-spacing: -0.068em;
}

.home-page.logistics-page .logistics-intro-copy > p {
    max-width: 770px;
    margin: 20px 0 0;
    color: #5d5d58;
    font-size: 0.92rem;
    line-height: 1.78;
}

.home-page.logistics-page .logistics-intro-copy .logistics-intro-lead {
    margin-top: 30px;
    color: #242422;
    font-size: clamp(1.06rem, 1.5vw, 1.25rem);
    font-weight: 650;
    line-height: 1.58;
    letter-spacing: -0.025em;
}

.home-page.logistics-page .logistics-specialisms {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.home-page.logistics-page .logistics-specialisms span {
    padding: 10px 14px;
    border: 1px solid #dcdcd7;
    border-radius: 999px;
    background: #fafaf7;
    color: #363633;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
}

.home-page.logistics-page .logistics-intro-art {
    position: relative;
    display: grid;
    place-items: center;
}

.home-page.logistics-page .logistics-intro-art img {
    position: relative;
    z-index: 1;
    width: 112%;
    max-width: none;
    height: auto;
    display: block;
    transform: translateX(1%);
}

/* Art & Galleries landing page: keep the supplied portrait line art composed cleanly. */
.home-page.art-gallery-page .art-line-art {
    padding-top: 44px;
    box-sizing: border-box;
}

.home-page.art-gallery-page .art-line-art img {
    width: min(108%, 630px);
    max-height: 840px;
    object-fit: contain;
    transform: none;
}

.home-page.art-gallery-page .art-role-copy {
    min-height: 8.5em;
    margin: 0 0 22px;
    color: var(--hgv-muted);
    font-size: 0.84rem;
    line-height: 1.7;
}

@media (max-width: 1000px) {
    .home-page.art-gallery-page .art-role-copy {
        min-height: 0;
    }
}

@media (max-width: 700px) {
    .home-page.art-gallery-page .art-line-art {
        padding-top: 28px;
    }
}

.home-page.logistics-page .logistics-process-section {
    background: #111111;
    color: #ffffff;
}

.home-page.logistics-page .logistics-process-layout {
    display: grid;
    grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(48px, 7vw, 96px);
}

.home-page.logistics-page .logistics-process-heading {
    align-self: center;
}

.home-page.logistics-page .logistics-process-heading h2 {
    max-width: 520px;
    margin: 24px 0 0;
    font-size: clamp(3.1rem, 4.4vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.068em;
}

.home-page.logistics-page .logistics-process-heading > p {
    max-width: 520px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.91rem;
    line-height: 1.75;
}

.home-page.logistics-page .logistics-process-actions {
    margin-top: 32px;
    justify-content: flex-start;
}

.home-page.logistics-page .logistics-timeline {
    position: relative;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 20px;
    list-style: none;
}

.home-page.logistics-page .logistics-timeline::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 28px;
    bottom: 28px;
    left: 27px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.1));
}

.home-page.logistics-page .logistics-timeline li {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: start;
    gap: 20px;
}

.home-page.logistics-page .logistics-step-number {
    width: 56px;
    height: 56px;
    border: 6px solid #111111;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-sizing: border-box;
    background: #ffffff;
    color: #111111;
    font-size: 0.68rem;
    font-weight: 800;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.home-page.logistics-page .logistics-step-copy {
    padding: 28px 30px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: #202020;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.home-page.logistics-page .logistics-step-copy .hgv-kicker {
    color: rgba(255, 255, 255, 0.4);
}

.home-page.logistics-page .logistics-step-copy h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.3rem, 2.2vw, 1.72rem);
    line-height: 1.18;
    letter-spacing: -0.045em;
}

.home-page.logistics-page .logistics-step-copy > p:last-child {
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.84rem;
    line-height: 1.72;
}

@media (max-width: 980px) {
    .home-page.logistics-page .logistics-intro-grid,
    .home-page.logistics-page .logistics-process-layout {
        grid-template-columns: 1fr;
    }

    .home-page.logistics-page .logistics-intro-art {
        width: min(100%, 680px);
        margin: 0 auto;
    }

    .home-page.logistics-page .logistics-process-heading {
        position: static;
        max-width: 720px;
    }

    .home-page.logistics-page .logistics-timeline {
        max-width: 760px;
    }
}

@media (max-width: 700px) {
    .home-page.logistics-page .logistics-reviews {
        padding-top: 42px;
        padding-bottom: 62px;
    }

    .home-page.logistics-page .logistics-intro-grid,
    .home-page.logistics-page .logistics-process-layout {
        gap: 48px;
    }

    .home-page.logistics-page .logistics-process-actions {
        display: flex;
        grid-template-columns: none;
    }

    .home-page.logistics-page .logistics-process-actions .button {
        width: 100%;
    }

    .home-page.logistics-page .logistics-intro-copy h2,
    .home-page.logistics-page .logistics-process-heading h2 {
        font-size: clamp(2.45rem, 12vw, 4rem);
    }

    .home-page.logistics-page .logistics-intro-copy > p {
        font-size: 0.88rem;
    }

    .home-page.logistics-page .logistics-intro-art img {
        width: 118%;
        transform: none;
    }

    .home-page.logistics-page .logistics-timeline::before {
        top: 24px;
        bottom: 24px;
        left: 23px;
    }

    .home-page.logistics-page .logistics-timeline li {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 12px;
    }

    .home-page.logistics-page .logistics-step-number {
        width: 48px;
        height: 48px;
        border-width: 5px;
    }

    .home-page.logistics-page .logistics-step-copy {
        padding: 23px 20px 24px;
        border-radius: 20px;
    }
}

/* Homepage testimonial cards */
.home-page .client-proof {
    width: 100%;
    max-width: 1480px;
}

.home-page .testimonial-static-grid {
    width: 100%;
    max-width: none;
    gap: 16px;
}

.home-page .testimonial-static-grid .testimonial-card {
    position: relative;
    min-height: 0;
    padding: 26px 28px 22px;
    overflow: hidden;
    border: 1px solid #deded8;
    border-radius: 22px;
    background: linear-gradient(145deg, #ffffff 0%, #fafaf7 100%);
    box-shadow: 0 14px 34px rgba(17, 17, 17, 0.06);
    text-align: left;
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.home-page .testimonial-static-grid .testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: -17px;
    right: 18px;
    color: rgba(17, 17, 17, 0.055);
    font-family: Georgia, serif;
    font-size: 7.5rem;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.home-page .testimonial-static-grid .testimonial-card:hover {
    border-color: #c9c9c1;
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.09);
    transform: translateY(-3px);
}

.home-page .testimonial-static-grid .testimonial-text {
    position: relative;
    z-index: 1;
    font-size: clamp(0.84rem, 0.86vw, 0.94rem);
    line-height: 1.52;
}

.home-page .testimonial-static-grid .testimonial-sector {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 18px;
    color: #40403d;
    font-size: 0.73rem;
}

.home-page .testimonial-stars {
    position: relative;
    z-index: 1;
    margin-top: 15px;
    color: #f5bf19;
    font-family: Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 2.5px;
    text-shadow: 0 1px 0 rgba(126, 88, 0, 0.22);
}

@media (max-width: 800px) {
    .home-page .client-proof {
        width: min(100% - 32px, 620px);
    }

    .home-page .testimonial-static-grid .testimonial-card {
        min-height: 0;
        padding: 24px 22px 20px;
    }

    .home-page .testimonial-static-grid .testimonial-text {
        font-size: 0.91rem;
    }
}

/* Logistics page: whitespace-led sections and meaningful card icons */
.home-page.logistics-page .logistics-reviews,
.home-page.logistics-page .hgv-problems,
.home-page.logistics-page .hgv-services,
.home-page.logistics-page .hgv-faq {
    border: 0;
    background: #ffffff;
}

.home-page.logistics-page .hgv-roles,
.home-page.logistics-page .hgv-resources {
    border: 0;
}

.home-page.logistics-page .testimonial-static-grid .testimonial-card,
.home-page.logistics-page .hgv-info-card,
.home-page.logistics-page .hgv-service-grid article,
.home-page.logistics-page .hgv-resource-grid a {
    border: 0;
    background: var(--hgv-paper);
    box-shadow: none;
}

.home-page.logistics-page .testimonial-static-grid .testimonial-card {
    border: 1px solid #deded8;
    background: #ffffff;
}

.home-page.logistics-page .hgv-role-group {
    border: 0;
    background: var(--hgv-paper);
    box-shadow: none;
}

.home-page.logistics-page .hgv-check-panel li,
.home-page.logistics-page .hgv-role-links a {
    border: 0;
}

.home-page.logistics-page .hgv-role-links {
    gap: 5px;
}

.home-page.logistics-page .hgv-benefit-list {
    display: grid;
    gap: 18px;
}

.home-page.logistics-page .hgv-benefit-list article,
.home-page.logistics-page .hgv-benefit-list article:last-child {
    padding: 30px;
    border: 0;
    border-radius: 24px;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 24px;
    background: var(--hgv-paper);
    box-shadow: none;
}

.home-page.logistics-page .logistics-step-copy {
    border: 0;
}

.home-page.logistics-page .hgv-card-icon,
.home-page.logistics-page .hgv-benefit-icon {
    width: 56px;
    height: 56px;
    padding: 15px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    box-sizing: border-box;
    background: #111111;
    color: #ffffff;
}

.home-page.logistics-page :is(.hgv-card-icon, .hgv-benefit-icon) svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-page.logistics-page .hgv-info-card > .hgv-card-icon {
    margin: 0;
    color: #ffffff;
}

.home-page.logistics-page .hgv-info-card h3 {
    margin-top: 46px;
}

.home-page.logistics-page .hgv-employer-grid article > .hgv-card-icon {
    margin: 0;
    background: #ffffff;
    color: #111111;
}

.home-page.logistics-page .hgv-employer-grid h3 {
    margin-top: 42px;
}

.home-page.logistics-page .hgv-benefit-list article > .hgv-benefit-icon {
    margin: 0;
    color: #ffffff;
}

.home-page.logistics-page .logistics-staffing .section-heading {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.home-page.logistics-page .logistics-staffing .section-heading > p {
    margin-right: auto;
    margin-left: auto;
}

.home-page.logistics-page .logistics-staffing-grid {
    max-width: 1120px;
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-page.logistics-page .logistics-staffing-grid article {
    min-height: 310px;
}

.home-page.logistics-page .logistics-staffing-grid h3 {
    margin-top: 0;
    font-size: 1.25rem;
    letter-spacing: -0.035em;
}

.home-page.logistics-page .logistics-staffing-grid ul {
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
    list-style: none;
}

.home-page.logistics-page .logistics-staffing-grid li {
    position: relative;
    padding-left: 22px;
    color: var(--hgv-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.home-page.logistics-page .logistics-staffing-grid li::before {
    content: '';
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #111111;
}

.home-page.logistics-page .logistics-staffing-action {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

.home-page.logistics-page .logistics-staffing-action .button {
    min-width: 250px;
}

.home-page.logistics-page .logistics-staffing-action .logistics-staffing-cta {
    min-height: 50px;
    padding: 13px 46px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.01em;
}

@media (max-width: 540px) {
    .home-page.logistics-page .hgv-benefit-list article,
    .home-page.logistics-page .hgv-benefit-list article:last-child {
        padding: 24px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-page.logistics-page .hgv-card-icon,
    .home-page.logistics-page .hgv-benefit-icon {
        width: 52px;
        height: 52px;
        padding: 14px;
    }

    .home-page.logistics-page .logistics-staffing-grid {
        grid-template-columns: 1fr;
    }

    .home-page.logistics-page .logistics-staffing-grid article {
        min-height: 0;
    }

    .home-page.logistics-page .logistics-staffing-action .button {
        width: 100%;
        min-width: 0;
    }
}

/* Unified homepage line-icon system */
.home-page .service-icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
    border-radius: 17px;
}

.home-page .service-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.7;
}

.home-page .benefit-card {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 22px;
}

.home-page .benefit-card > .home-benefit-icon {
    width: 56px;
    height: 56px;
    padding: 15px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    box-sizing: border-box;
    background: #111111;
    color: #ffffff;
    letter-spacing: 0;
}

.home-page .home-benefit-icon svg,
.home-page .sector-icon svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-page .sector-icon {
    color: #ffffff;
}

.home-page .sector-icon svg {
    width: 42px;
    height: 42px;
    stroke-width: 1.15;
}

@media (max-width: 540px) {
    .home-page .benefit-card {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 18px;
    }

    .home-page .benefit-card > .home-benefit-icon {
        width: 52px;
        height: 52px;
        padding: 14px;
    }

    .home-page .sector-icon svg {
        width: 36px;
        height: 36px;
    }
}
