:root {
    --color-red: #ef2f25;
    --color-red-dark: #c8241d;
    --color-navy: #07142f;
    --color-navy-soft: #0c1e42;
    --color-text: #101828;
    --color-muted: #6b7280;
    --color-border: #d9dde5;
    --color-bg: #ffffff;
    --color-bg-soft: #f6f7f9;
    --color-white: #ffffff;
    --shadow-soft: 0 18px 55px rgba(7, 20, 47, 0.12);
    --container: 1340px;
    --header-height: 86px;
    --font-base: Verdana, Geneva, Tahoma, sans-serif;
}

/* Base reset and reusable layout primitives */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-base);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

select,
textarea {
    color: inherit;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Sticky corporate header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    background: var(--color-red);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.16);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-logo img {
    width: 300px;
    max-height: 58px;
    object-fit: contain;
}

.primary-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-nav a,
.dropdown-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 0;
    padding: 28px 0;
    color: var(--color-white);
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
}

.primary-nav a::after,
.dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    height: 3px;
    background: var(--color-white);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.primary-nav a:hover::after,
.primary-nav a.active::after,
.dropdown-toggle.active::after,
.dropdown-toggle:hover::after {
    transform: scaleX(1);
}

.has-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dropdown-trigger .dropdown-main-link {
    padding-right: 2px;
}

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

.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -18px;
    display: grid !important;
    min-width: 270px;
    gap: 0 !important;
    padding: 12px 0 !important;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 11px 18px;
    color: var(--color-text);
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    color: var(--color-red);
    background: var(--color-bg-soft);
}

.dropdown-menu .dropdown-button-link {
    display: inline-flex;
    justify-content: center;
    width: auto;
    margin: 10px 18px 4px;
    padding: 11px 18px;
    color: var(--color-white);
    background: var(--color-red);
    border-radius: 999px;
    font-weight: 700;
}

.dropdown-menu .dropdown-button-link:hover {
    color: var(--color-white);
    background: var(--color-red-dark);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--color-white);
}

/* Homepage hero with video background and image fallback */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--color-white);
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-image: url("/assets/images/hero.jpg");
    background-position: center;
    background-size: cover;
}

.hero-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 920px;
    text-align: center;
}

.hero h1 {
    margin: 18px 0 28px;
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1.14;
    font-weight: 800;
    color: var(--color-white);
}

/* Homepage goals cards */
.homepage-goals {
    display: grid;
    min-height: 95vh;
    align-items: center;
    padding: clamp(28px, 4vh, 46px) 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(239, 47, 37, 0.07), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
}

.homepage-goals-heading {
    max-width: 920px;
    margin: 0 auto clamp(20px, 3vh, 28px);
    text-align: center;
}

.homepage-goals-heading .eyebrow {
    margin: 0 0 8px;
    color: var(--color-red-dark);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.homepage-goals-heading h2 {
    margin: 0;
    color: #161922;
    font-size: clamp(29px, 3.7vw, 44px);
    font-weight: 800;
    line-height: 1.16;
}

.homepage-goals-heading h2 span {
    color: #d70f16;
}

.homepage-goals-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.goal-card {
    position: relative;
    min-height: clamp(410px, 58vh, 450px);
    padding: 22px 24px 26px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(217, 221, 229, 0.72);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 45px rgba(7, 20, 47, 0.09);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.goal-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 247, 249, 0.32));
    pointer-events: none;
}

.goal-card > * {
    position: relative;
    z-index: 1;
}

.goal-card:hover {
    border-color: rgba(239, 47, 37, 0.28);
    box-shadow: 0 26px 58px rgba(7, 20, 47, 0.13);
    transform: translateY(-5px);
}

.goal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: -2px auto 8px;
    color: #d70f16;
    border-radius: 50%;
    background: var(--color-white);
    box-shadow: 0 14px 30px rgba(239, 47, 37, 0.16);
}

.goal-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.goal-number {
    display: block;
    margin-bottom: 6px;
    color: #d70f16;
    font-size: 14px;
    font-weight: 800;
}

.goal-card h3 {
    position: relative;
    margin: 0 0 14px;
    padding-bottom: 12px;
    color: #141821;
    font-size: 18px;
    line-height: 1.32;
}

.goal-card h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 38px;
    height: 2px;
    background: #d70f16;
    transform: translateX(-50%);
}

.goal-card p {
    max-width: 292px;
    min-height: 62px;
    margin: 0 auto 16px;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.55;
}

.goal-visual {
    margin: 0 auto;
    border: 1px solid rgba(217, 221, 229, 0.48);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 34px rgba(7, 20, 47, 0.08);
}

.goal-visual-report {
    position: relative;
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    width: min(100%, 292px);
    min-height: 126px;
    align-items: end;
    gap: 14px;
    padding: 22px 16px 16px;
    border-radius: 8px;
}

.report-lines {
    display: grid;
    gap: 9px;
    align-self: center;
}

.report-lines span {
    width: 100%;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, #d9dde5, rgba(217, 221, 229, 0.18));
}

.report-lines span:nth-child(2) {
    width: 76%;
}

.report-lines span:nth-child(3) {
    width: 64%;
}

.report-lines span:nth-child(4) {
    width: 84%;
}

.report-chart {
    display: flex;
    align-items: end;
    gap: 9px;
    height: 78px;
}

.report-chart span {
    flex: 1;
    min-width: 11px;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, rgba(215, 15, 22, 0.92), rgba(217, 221, 229, 0.45));
}

.report-chart span:nth-child(1) {
    height: 26%;
    opacity: 0.38;
}

.report-chart span:nth-child(2) {
    height: 39%;
    opacity: 0.46;
}

.report-chart span:nth-child(3) {
    height: 56%;
    opacity: 0.62;
}

.report-chart span:nth-child(4) {
    height: 76%;
    opacity: 0.72;
}

.report-chart span:nth-child(5) {
    height: 58%;
    opacity: 0.42;
}

.report-chart span:nth-child(6) {
    height: 100%;
}

.report-ring {
    position: absolute;
    top: 18px;
    left: 46%;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: conic-gradient(#d70f16 0 36%, #d9dde5 36% 74%, #07142f 74% 100%);
}

.report-ring::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: var(--color-white);
}

.goal-visual-plan {
    width: min(100%, 292px);
    padding: 12px 16px 15px;
    border-radius: 8px;
}

.plan-label {
    display: block;
    color: #4b5563;
    font-size: 13px;
}

.goal-visual-plan strong {
    display: block;
    color: #d70f16;
    font-size: 28px;
    line-height: 1.2;
}

.plan-divider {
    height: 1px;
    margin: 10px 0 12px;
    background: #d9dde5;
}

.plan-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}

.plan-steps span {
    display: grid;
    justify-items: center;
    gap: 6px;
    color: #2b303b;
    font-size: 11px;
}

.plan-steps svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.plan-progress {
    height: 4px;
    margin-top: 13px;
    overflow: hidden;
    border-radius: 999px;
    background: #d9dde5;
}

.plan-progress span {
    display: block;
    width: 48%;
    height: 100%;
    border-radius: inherit;
    background: #d70f16;
}

.goal-visual-orbit {
    position: relative;
    width: min(100%, 280px);
    height: 158px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.goal-visual-orbit::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(7, 20, 47, 0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: var(--color-white);
    font-size: 32px;
    font-weight: 900;
    border-radius: 50%;
    background: linear-gradient(145deg, #f0534b, #c90912);
    box-shadow: 0 12px 26px rgba(215, 15, 22, 0.2);
    transform: translate(-50%, -50%);
}

.orbit-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 3px solid var(--color-white);
    border-radius: 50%;
    background: #d70f16;
    box-shadow: 0 6px 14px rgba(215, 15, 22, 0.22);
}

.dot-top {
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.dot-right {
    top: 56px;
    right: 60px;
}

.dot-bottom-right {
    right: 78px;
    bottom: 18px;
}

.dot-bottom-left {
    bottom: 18px;
    left: 78px;
}

.dot-left {
    top: 56px;
    left: 60px;
}

.orbit-label {
    position: absolute;
    color: #2b303b;
    font-size: 10px;
    line-height: 1.25;
}

.label-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.label-right {
    top: 60px;
    right: 0;
    text-align: left;
}

.label-bottom-right {
    right: 28px;
    bottom: 4px;
}

.label-bottom-left {
    bottom: 4px;
    left: 14px;
}

.label-left {
    top: 60px;
    left: 0;
    text-align: right;
}

/* Homepage testimonials */
.testimonials-section {
    position: relative;
    padding: 104px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 9% 12%, rgba(239, 47, 37, 0.09), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(7, 20, 47, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f5f6f9 100%);
    color: var(--color-text);
}

.testimonials-section::before {
    content: "";
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(7, 20, 47, 0.07);
    pointer-events: none;
}

.testimonials-section::after {
    content: "";
    position: absolute;
    right: -84px;
    bottom: 52px;
    width: 300px;
    height: 30px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(239, 47, 37, 0.06), rgba(239, 47, 37, 0.2));
    box-shadow:
        38px 68px 0 rgba(239, 47, 37, 0.15),
        76px 136px 0 rgba(239, 47, 37, 0.1);
    filter: blur(0.4px);
    pointer-events: none;
    animation: testimonial-mark-drift 12s ease-in-out infinite alternate;
    will-change: transform, opacity;
}

@keyframes testimonial-mark-drift {
    0% {
        opacity: 0.72;
        transform: translate3d(0, 0, 0) rotate(-18deg) scale(1);
    }

    50% {
        opacity: 0.95;
        transform: translate3d(-54px, -34px, 0) rotate(-14deg) scale(1.05);
    }

    100% {
        opacity: 0.78;
        transform: translate3d(-24px, -78px, 0) rotate(-21deg) scale(0.96);
    }
}

@media (prefers-reduced-motion: reduce) {
    .testimonials-section::after {
        animation: none;
    }
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-header {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
    gap: 44px;
    align-items: end;
    margin-bottom: 46px;
}

.testimonials-header .eyebrow {
    margin: 0 0 12px;
    color: var(--color-red-dark);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.testimonials-header h2 {
    max-width: 790px;
    margin: 0;
    color: var(--color-navy);
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.12;
}

.testimonials-header > p {
    margin: 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.75;
}

.testimonials-slider {
    display: grid;
    gap: 28px;
}

.testimonials-viewport {
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, minmax(0, 0.9fr));
    gap: 24px;
}

.testimonial-card {
    position: relative;
    display: flex;
    min-height: 330px;
    flex-direction: column;
    justify-content: space-between;
    gap: 34px;
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(217, 221, 229, 0.82);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 22px 56px rgba(7, 20, 47, 0.1);
    backdrop-filter: blur(18px);
    transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.2s ease, background 0.2s ease;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, rgba(239, 47, 37, 0.07), transparent 46%);
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: rgba(239, 47, 37, 0.28);
    background: var(--color-white);
    transform: translateY(-5px);
}

.testimonial-card.is-testimonial-hidden {
    display: none;
}

.testimonial-card-featured {
    min-height: 370px;
    padding: 40px;
    background:
        linear-gradient(135deg, rgba(239, 47, 37, 0.92), rgba(200, 36, 29, 0.72)),
        rgba(255, 255, 255, 0.08);
}

.testimonial-card-featured:hover {
    background:
        linear-gradient(135deg, rgba(239, 47, 37, 0.98), rgba(200, 36, 29, 0.78)),
        rgba(255, 255, 255, 0.1);
}

.testimonial-quote {
    position: absolute;
    top: 12px;
    right: 28px;
    color: rgba(239, 47, 37, 0.14);
    font-size: 122px;
    font-weight: 800;
    line-height: 1;
}

.testimonial-card p,
.testimonial-author {
    position: relative;
    z-index: 1;
}

.testimonial-card p {
    margin: 0;
    color: var(--color-navy);
    font-size: clamp(17px, 1.7vw, 22px);
    font-weight: 700;
    line-height: 1.58;
}

.testimonial-card:not(.testimonial-card-featured) p {
    font-size: 16px;
    font-weight: 600;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author span {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--color-red);
    border: 1px solid rgba(239, 47, 37, 0.18);
    border-radius: 50%;
    background: rgba(239, 47, 37, 0.08);
    font-weight: 800;
}

.testimonial-author strong,
.testimonial-author small {
    display: block;
}

.testimonial-author strong {
    color: var(--color-navy);
    font-size: 15px;
}

.testimonial-author small {
    color: var(--color-muted);
    font-size: 13px;
}

.testimonial-card-featured .testimonial-quote {
    color: rgba(255, 255, 255, 0.2);
}

.testimonial-card-featured p,
.testimonial-card-featured .testimonial-author strong {
    color: var(--color-white);
}

.testimonial-card-featured .testimonial-author span {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.14);
}

.testimonial-card-featured .testimonial-author small {
    color: rgba(255, 255, 255, 0.72);
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.testimonial-control {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(239, 47, 37, 0.22);
    border-radius: 50%;
    color: var(--color-red);
    background: var(--color-white);
    box-shadow: 0 14px 30px rgba(7, 20, 47, 0.08);
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.testimonial-control:hover,
.testimonial-control:focus-visible {
    color: var(--color-white);
    border-color: var(--color-red);
    background: var(--color-red);
    transform: translateY(-2px);
}

.testimonial-control:focus-visible {
    outline: 3px solid rgba(239, 47, 37, 0.24);
    outline-offset: 3px;
}

.testimonial-control span {
    font-size: 28px;
    line-height: 1;
}

.testimonials-status {
    min-width: 54px;
    color: var(--color-navy);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

/* Sectors page */
.sectors-hero {
    position: relative;
    padding-top: 28px;
    overflow: hidden;
    background:
        linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 34%, rgba(255, 255, 255, 0.6) 52%, rgba(255, 255, 255, 0) 100%),
        linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
}

.sectors-hero-grid {
    display: grid;
    min-height: 460px;
    grid-template-columns: minmax(410px, 0.58fr) minmax(0, 0.72fr);
    gap: 34px;
    align-items: stretch;
}

.sectors-hero-copy {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: center;
    max-width: 610px;
    padding: 68px 0;
    animation: sectors-hero-copy-in 0.85s ease-out 0.1s both;
}

.sectors-hero-copy .eyebrow {
    margin: 0 0 18px;
    color: var(--color-red-dark);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sectors-hero h1 {
    margin: 0;
    color: #151a25;
    font-size: clamp(27px, 3.45vw, 48px);
    font-weight: 650;
    line-height: 1.14;
}

.sectors-title-line {
    display: block;
    width: 66px;
    height: 2px;
    margin: 28px 0;
    background: var(--color-red);
}

.sectors-hero-copy p:last-child {
    margin: 0;
    color: #5d6472;
    font-size: 16px;
    line-height: 1.78;
}

.sectors-hero-image {
    min-height: 460px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.02)),
        url("/assets/images/sectors/hero-office.webp");
    background-position: center;
    background-size: cover;
    animation: sectors-hero-image-in 0.85s ease-out 0.18s both;
}

@keyframes sectors-hero-copy-in {
    from {
        opacity: 0;
        transform: translateX(-34px);
    }

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

@keyframes sectors-hero-image-in {
    from {
        opacity: 0;
        transform: translateX(34px);
    }

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

@media (prefers-reduced-motion: reduce) {
    .sectors-hero-copy,
    .sectors-hero-image {
        animation: none;
    }
}

.sectors-section {
    padding: 54px 0 86px;
    background:
        radial-gradient(circle at 12% 12%, rgba(239, 47, 37, 0.045), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8f8f9 100%);
}

.sectors-heading {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    margin-bottom: 34px;
    text-align: center;
}

.sectors-heading > span {
    height: 1px;
    background: rgba(7, 20, 47, 0.17);
}

.sectors-heading h2 {
    margin: 0;
    color: #2a303b;
    font-size: clamp(21px, 2vw, 28px);
    font-weight: 500;
    line-height: 1.3;
}

.sectors-heading i {
    display: block;
    width: 86px;
    height: 3px;
    margin: 10px auto 0;
    border-radius: 999px;
    background: var(--color-red);
    transform: scaleX(0.12);
    transform-origin: center;
    animation: sectors-heading-line-grow 1.1s ease-out 0.25s forwards;
}

@keyframes sectors-heading-line-grow {
    0% {
        opacity: 0.72;
        transform: scaleX(0.12);
    }

    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .sectors-heading i {
        animation: none;
        transform: scaleX(1);
    }
}

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

.sector-card {
    position: relative;
    display: flex;
    min-height: 300px;
    overflow: hidden;
    color: var(--color-white);
    background: #111827;
}

.sector-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--sector-image);
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.sector-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 20, 47, 0.86) 0%, rgba(7, 20, 47, 0.48) 44%, rgba(7, 20, 47, 0.82) 100%),
        linear-gradient(90deg, rgba(7, 20, 47, 0.28), rgba(7, 20, 47, 0.02));
}

.sector-card:hover::before {
    filter: saturate(1.08);
    transform: scale(1.08);
}

.sector-card-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: minmax(92px, auto) 1fr;
    gap: 14px;
    width: 100%;
    align-content: start;
    padding: 28px 24px 24px;
}

.sector-card h3 {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(21px, 2vw, 28px);
    font-weight: 500;
    line-height: 1.14;
}

.sector-card p {
    margin: 0;
    align-self: start;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.58;
}

.sectors-cta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
    margin-top: 24px;
    padding: 26px 30px;
    background: #f0f1f3;
}

.sectors-cta-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: var(--color-white);
    background: var(--color-red);
}

.sectors-cta-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sectors-cta strong {
    display: block;
    color: var(--color-navy);
    font-size: 18px;
    font-weight: 500;
}

.sectors-cta p {
    margin: 5px 0 0;
    color: var(--color-muted);
}

/* Services archive hero */
.services-hero {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--color-white);
    text-align: center;
    background-image: url("/assets/images/hero.jpg");
    background-position: center 56%;
    background-size: cover;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 20, 47, 0.42);
}

.services-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services-hero-content {
    position: relative;
    z-index: 1;
    padding: 84px 0;
}

.services-hero h1 {
    margin: 0 0 12px;
    color: var(--color-white);
    font-size: clamp(34px, 4.7vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0.08em;
}

.services-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(13px, 1.4vw, 18px);
    line-height: 1.6;
}

.services-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 34px;
    padding: 13px 26px;
    color: var(--color-red);
    background: var(--color-white);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    transition: color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.services-hero-btn:hover {
    color: var(--color-red-dark);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
}

.faq-section {
    background: #f7f7f8;
}

.faq-inner {
    max-width: 800px;
}

.faq-heading {
    margin-bottom: 34px;
}

.faq-heading h2 {
    color: var(--color-navy);
    font-size: clamp(32px, 4.4vw, 52px);
    letter-spacing: 0.04em;
}

.faq-list {
    display: grid;
    gap: 18px;
}

.faq-item {
    border: 1px solid rgba(239, 47, 37, 0.55);
    border-radius: 4px;
    background: transparent;
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 15px 58px 15px 20px;
    color: var(--color-navy);
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 800;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    color: currentColor;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-50%);
}

.faq-item[open] {
    border-color: var(--color-red);
    background: var(--color-red);
}

.faq-item[open] summary {
    color: var(--color-white);
}

.faq-item[open] summary::after {
    content: "↑";
    font-size: 20px;
}

.faq-item p {
    margin: 0;
    padding: 18px 20px 20px;
    color: var(--color-text);
    background: #f1f2f4;
    font-size: 15px;
    line-height: 1.7;
}

/* Payroll services page */
.payroll-hero {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--color-white);
    text-align: center;
    background: #020813;
}

.payroll-hero-video,
.payroll-hero-overlay {
    position: absolute;
    inset: 0;
}

.payroll-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.payroll-hero-overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.64), rgba(7, 20, 47, 0.42), rgba(0, 0, 0, 0.64)),
        rgba(2, 8, 19, 0.42);
}

.payroll-hero-content {
    position: relative;
    z-index: 1;
    padding: 90px 0;
}

.payroll-hero h1 {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.045em;
    text-shadow: 0 5px 18px rgba(0, 0, 0, 0.56);
}

.payroll-content {
    padding: 46px 0 76px;
    background: #f4f4f5;
}

.payroll-content-inner {
    max-width: 1288px;
}

.payroll-heading-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(460px, 0.98fr);
    gap: 86px;
    align-items: start;
    margin-bottom: 68px;
}

.payroll-heading-grid h2 {
    position: relative;
    margin: 0;
    padding-bottom: 16px;
    color: var(--color-navy);
    font-size: clamp(25px, 2.18vw, 31px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0.01em;
}

.payroll-heading-grid h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 138px;
    height: 2px;
    background: var(--color-red);
}

.payroll-heading-grid p {
    margin: 0;
    color: #9b9da4;
    font-size: 15px;
    line-height: 1.62;
}

.payroll-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(460px, 0.88fr);
    gap: 86px;
    align-items: start;
}

.payroll-copy {
    color: var(--color-navy);
}

.payroll-copy h3 {
    margin: 0 0 30px;
    color: var(--color-navy);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.3;
}

.payroll-copy p {
    margin: 0 0 21px;
    color: #20283a;
    font-size: 15px;
    line-height: 1.68;
}

.payroll-copy ul {
    margin: -6px 0 30px 21px;
    padding: 0;
    color: #20283a;
    font-size: 15px;
    line-height: 1.62;
}

.payroll-copy li + li {
    margin-top: 8px;
}

.payroll-copy strong {
    color: var(--color-navy);
    font-weight: 800;
}

.payroll-contact-card {
    min-height: 590px;
    padding: 38px 42px;
    color: var(--color-white);
    background: #02122b;
}

.payroll-contact-card h2 {
    margin: 0 0 30px;
    color: var(--color-white);
    text-align: center;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.1;
}

.payroll-contact-card p {
    margin: 0 0 21px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.72;
}

.payroll-contact-card strong {
    color: var(--color-white);
}

.payroll-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-height: 48px;
    margin: 32px auto 0;
    padding: 13px 25px;
    color: var(--color-white);
    background: var(--color-red);
    border-radius: 3px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.payroll-contact-btn:hover,
.payroll-contact-btn:focus-visible {
    background: var(--color-red-dark);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.related-services {
    padding: 54px 0 68px;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
}

.related-services-inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
    gap: 58px;
    align-items: center;
    max-width: 1288px;
    padding: 36px 40px;
    border: 1px solid var(--color-border);
    background: linear-gradient(180deg, #fafafb 0%, #f4f4f5 100%);
    box-shadow: 0 16px 42px rgba(7, 20, 47, 0.06);
}

.related-services-heading .eyebrow {
    margin-bottom: 12px;
}

.related-services-heading h2 {
    position: relative;
    margin: 0 0 18px;
    padding-bottom: 14px;
    color: var(--color-navy);
    font-size: clamp(25px, 2.4vw, 36px);
    line-height: 1.12;
}

.related-services-heading h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 2px;
    background: var(--color-red);
}

.related-services-heading p:not(.eyebrow) {
    max-width: 420px;
    margin: 0;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.65;
}

.related-services-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(7, 20, 47, 0.1);
    border-left: 1px solid rgba(7, 20, 47, 0.1);
    background: var(--color-white);
}

.related-services-list a {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-height: 72px;
    padding: 18px 46px 18px 20px;
    color: var(--color-navy);
    border-right: 1px solid rgba(7, 20, 47, 0.1);
    border-bottom: 1px solid rgba(7, 20, 47, 0.1);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.related-services-list a::after {
    content: "→";
    position: absolute;
    right: 20px;
    color: var(--color-red);
    font-size: 17px;
    transition: transform 0.2s ease;
}

.related-services-list span {
    color: rgba(239, 47, 37, 0.72);
    font-size: 12px;
    letter-spacing: 0.12em;
}

.related-services-list a:hover,
.related-services-list a:focus-visible {
    color: var(--color-red);
    background: #fff7f6;
    box-shadow: inset 4px 0 0 var(--color-red);
}

.related-services-list a:hover::after,
.related-services-list a:focus-visible::after {
    transform: translateX(4px);
}

/* About page hero */
.about-hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--color-white);
    background-image: url("/assets/images/DSC07101-scaled.webp");
    background-position: center;
    background-size: cover;
    background-position-y: calc(50% + (var(--about-scroll-progress, 0) * 60px));
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.56);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    min-height: inherit;
    text-align: center;
}

.about-hero-content p {
    max-width: 880px;
    margin: 0;
    color: var(--color-white);
    font-size: clamp(18px, 1.76vw, 27px);
    line-height: 1.34;
    font-weight: 400;
    letter-spacing: 0.01em;
    animation: aboutHeroText 1s cubic-bezier(0.2, 0.78, 0.2, 1) both;
}

.about-intro {
    background: var(--color-white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1fr);
    gap: 0;
    align-items: center;
}

.about-intro-copy {
    position: relative;
    z-index: 2;
    margin-left: -56px;
    padding: 48px;
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
}

.about-intro-copy h1 {
    margin: 0 0 26px;
    color: var(--color-navy);
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.15;
}

.about-intro-copy p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14.3px;
    line-height: 1.78;
}

.about-intro-copy p + p {
    margin-top: 18px;
}

.about-intro-image {
    overflow: hidden;
}

.about-intro-image img,
.about-values-image img,
.why-choose-image img {
    transition: transform 1.2s cubic-bezier(0.2, 0.78, 0.2, 1), filter 1.2s ease;
}

.about-values-image.is-visible img,
.why-choose-image.is-visible img {
    transform: scale(1.04);
}

.about-intro-image img {
    width: 100%;
    height: 85vh;
    object-fit: contain;
    object-position: center;
}

.about-values-feature {
    --about-values-overhang: 64px;
    padding: 0;
    color: var(--color-white);
    background: linear-gradient(
        180deg,
        var(--color-navy) 0 calc(100% - var(--about-values-overhang)),
        var(--color-bg-soft) calc(100% - var(--about-values-overhang)) 100%
    );
}

.about-values-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
    min-height: 620px;
    align-items: stretch;
}

.about-values-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 86px 72px 86px 0;
}

.about-values-copy .eyebrow {
    margin-bottom: 16px;
}

.about-values-copy h2 {
    margin: 0 0 28px;
    color: var(--color-white);
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.08;
}

.about-values-copy p:not(.eyebrow) {
    max-width: 640px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.65;
}

.about-values-image {
    min-height: inherit;
    overflow: hidden;
}

.about-values-image img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    object-position: center;
}

.philosophy-section {
    min-height: 90vh;
    padding: 42px 0;
    background: var(--color-bg-soft);
}

.philosophy-section .section-heading {
    margin-bottom: 28px;
}

.philosophy-section .section-heading h2,
.near-you h2 {
    color: var(--color-navy);
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.philosophy-card {
    min-height: 150px;
    padding: 18px 20px;
    text-align: center;
    border: 1px solid #9a9da5;
    background: var(--color-bg-soft);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.philosophy-card:hover {
    border-color: #5fc3df;
    box-shadow: 0 18px 38px rgba(7, 20, 47, 0.1);
    transform: translateY(-7px);
}

.philosophy-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    color: var(--color-navy);
}

.philosophy-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.philosophy-card h3 {
    margin: 0 0 10px;
    color: var(--color-red);
    font-size: 17px;
    line-height: 1.3;
}

.philosophy-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.55;
}

.near-you {
    max-width: 900px;
    margin: 42px auto 0;
    text-align: center;
}

.near-you h2 {
    margin: 0 0 24px;
}

.near-you p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.6;
}

.why-choose-feature {
    padding: 90px 0 104px;
    color: var(--color-white);
    background: var(--color-navy);
}

.why-choose-feature h2 {
    margin: 0 0 86px;
    color: var(--color-white);
    text-align: center;
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0.02em;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 0.88fr 1fr;
    gap: 70px;
    align-items: center;
}

.why-choose-list {
    display: grid;
    gap: 0;
    text-align: center;
}

.why-choose-list p {
    margin: 0;
    padding: 30px 0;
    color: var(--color-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.78);
    font-size: clamp(12px, 1.5vw, 19px);
    font-weight: 800;
    line-height: 1.2;
}

.why-choose-list p:first-child {
    padding-top: 0;
}

.why-choose-list p:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.why-choose-image {
    overflow: hidden;
}

.why-choose-image img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    object-position: center;
}

.about-final-cta {
    padding: 132px 0 126px;
    text-align: center;
    background: var(--color-bg-soft);
}

.about-final-cta h2 {
    max-width: 1080px;
    margin: 0 auto 52px;
    color: var(--color-navy);
    font-size: clamp(17px, 2.2vw, 31px);
    font-weight: 800;
    line-height: 1.3;
}

.about-final-cta .btn {
    min-width: 238px;
    min-height: 64px;
    font-size: 18px;
    text-transform: none;
}

body.has-scroll-effects .about-reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.75s cubic-bezier(0.2, 0.78, 0.2, 1), transform 0.75s cubic-bezier(0.2, 0.78, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

body.has-scroll-effects .about-reveal-left {
    transform: translateX(-42px);
}

body.has-scroll-effects .about-reveal-right {
    transform: translateX(42px);
}

body.has-scroll-effects .about-reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.philosophy-card:nth-child(2),
.why-choose-list p:nth-child(2) {
    --reveal-delay: 120ms;
}

.philosophy-card:nth-child(3),
.why-choose-list p:nth-child(3) {
    --reveal-delay: 240ms;
}

@keyframes aboutHeroText {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.98);
    }

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

@media (prefers-reduced-motion: reduce) {
    .about-hero {
        background-position-y: center;
    }

    .about-hero-content p {
        animation: none;
    }

    .about-reveal,
    .about-reveal-left,
    .about-reveal-right {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .about-intro-image img,
    .about-values-image img,
    .why-choose-image img,
    .about-intro-image.is-visible img,
    .about-values-image.is-visible img,
    .why-choose-image.is-visible img {
        transform: none;
        transition: none;
    }
}

/* Career page */
.career-hero {
    position: relative;
    min-height: 560px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--color-white);
    background-image: url("/assets/images/DSC07045-scaled.webp");
    background-position: center;
    background-size: cover;
}

.career-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 20, 47, 0.86), rgba(7, 20, 47, 0.52));
}

.career-hero-content {
    position: relative;
    z-index: 1;
    max-width: 880px;
}

.career-hero-content h1 {
    max-width: 820px;
    margin: 0 0 24px;
    color: var(--color-white);
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.12;
    font-weight: 800;
}

.career-hero-content p:not(.eyebrow) {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.72;
}

.career-section {
    background: linear-gradient(180deg, var(--color-bg-soft) 0%, var(--color-white) 100%);
}

.career-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1fr);
    gap: 72px;
    align-items: start;
}

.career-copy {
    position: sticky;
    top: calc(var(--header-height) + 38px);
}

.career-copy h2 {
    margin: 0 0 24px;
    color: var(--color-navy);
    font-size: clamp(24px, 3vw, 41px);
    line-height: 1.14;
}

.career-copy > p:not(.eyebrow) {
    margin: 0;
    color: var(--color-muted);
    font-size: 17px;
    line-height: 1.8;
}

.career-highlights {
    display: grid;
    gap: 1px;
    margin-top: 42px;
    border: 1px solid var(--color-border);
    background: var(--color-border);
}

.career-highlights article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
    padding: 22px 24px;
    background: var(--color-white);
}

.career-highlights strong {
    color: var(--color-red);
    font-size: 13px;
    letter-spacing: 0.12em;
}

.career-highlights span {
    color: var(--color-navy);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
}

.career-form-panel {
    padding: 32px;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
}

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

.form-field {
    display: grid;
    gap: 6px;
}

.form-field label {
    color: var(--color-navy);
    font-size: 14px;
    font-weight: 800;
}

.career-form input,
.career-form select,
.career-form textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    color: var(--color-navy);
    background: #f2f3f8;
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.career-form input,
.career-form select {
    min-height: 48px;
    padding: 0 16px;
}

.career-form textarea {
    height: 104px;
    min-height: 96px;
    padding: 13px 16px;
    resize: vertical;
}

.career-form input::placeholder,
.career-form textarea::placeholder {
    color: #8d93a1;
}

.career-form input:focus,
.career-form select:focus,
.career-form textarea:focus {
    border-color: rgba(239, 47, 37, 0.7);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(239, 47, 37, 0.1);
}

.phone-field {
    display: grid;
    grid-template-columns: auto 1fr;
    border: 1px solid var(--color-border);
    background: #f2f3f8;
}

.phone-field span {
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-right: 1px solid var(--color-border);
    color: var(--color-navy);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.phone-field input {
    border: 0;
    background: transparent;
}

.file-upload {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 7px;
    border: 1px dashed rgba(7, 20, 47, 0.24);
    border-radius: 18px;
    background: #f2f3f8;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.file-upload-input {
    position: absolute;
    width: 1px;
    height: 1px;
    min-height: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.file-upload-button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    color: var(--color-white) !important;
    background: var(--color-navy);
    border-radius: 999px;
    font-size: 13px !important;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.file-upload-button:hover {
    background: var(--color-red);
    transform: translateY(-1px);
}

.file-upload-name {
    flex: 1 1 auto;
    min-width: 0;
    color: var(--color-muted);
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-upload-input:focus-visible + .file-upload-button,
.file-upload:focus-within {
    border-color: rgba(239, 47, 37, 0.7);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(239, 47, 37, 0.1);
}

.career-submit {
    justify-self: start;
    min-width: 220px;
    margin-top: 2px;
    border: 0;
    cursor: pointer;
}

/* Contact page */
.contact-map {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    background: #e5e7eb;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-section {
    padding: 74px 0 88px;
    background: #f5f5f5;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.9fr);
    gap: 82px;
    align-items: start;
}

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

.contact-field {
    display: grid;
    gap: 5px;
}

.contact-field label {
    color: #343845;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 1px solid #aeb3ba;
    color: #343845;
    background: var(--color-white);
    font-size: 17px;
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field input,
.contact-field select {
    min-height: 48px;
    padding: 0 18px;
}

.contact-field select {
    appearance: auto;
    color: #777d87;
}

.contact-field textarea {
    min-height: 126px;
    padding: 12px 18px;
    resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #b7bbc2;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: rgba(239, 47, 37, 0.75);
    box-shadow: 0 0 0 4px rgba(239, 47, 37, 0.1);
}

.contact-submit {
    min-height: 64px;
    margin-top: 0;
    border: 0;
    color: var(--color-white);
    background: var(--color-red);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.16em;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.contact-submit:hover {
    background: var(--color-red-dark);
    transform: translateY(-1px);
}

.contact-details {
    padding-top: 64px;
}

.contact-logo {
    width: min(100%, 410px);
    margin: 0 0 28px;
}

.contact-detail-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 22px;
    align-items: start;
    margin-top: 24px;
}

.contact-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    color: #383c45;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-detail-item h2 {
    margin: 0 0 5px;
    color: #161927;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.contact-detail-item p {
    margin: 0;
    color: #3f4350;
    font-size: 16px;
    line-height: 1.5;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--color-red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border: 2px solid transparent;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--color-white);
    background: var(--color-red);
}

.btn-primary:hover {
    background: var(--color-red-dark);
}

.btn-outline {
    color: var(--color-red);
    border-color: var(--color-red);
}

.btn-outline:hover {
    color: var(--color-white);
    background: var(--color-red);
}

/* Shared section and card styling */
.section {
    padding: 96px 0;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading h2,
.split-content h2,
.stats-copy h2,
.cta-inner h2 {
    margin: 0;
    color: var(--color-navy);
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.15;
}

.section-heading-light h2,
.stats-copy h2,
.cta-inner h2 {
    color: var(--color-white);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.service-card {
    aspect-ratio: 3 / 2.5;
    min-height: 0;
    padding: 28px 34px;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
    border-color: rgba(239, 47, 37, 0.45);
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
}

.service-card:focus-visible {
    outline: 3px solid rgba(239, 47, 37, 0.45);
    outline-offset: 4px;
}

.card-icon {
    display: inline-flex;
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
    color: #454957;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 28px;
    border: 1px solid var(--color-border);
    color: var(--color-red);
    font-weight: 800;
}

.service-card h3,
.values-grid h3,
.why-grid h3 {
    margin: 0 0 14px;
    color: var(--color-red);
    font-size: 21px;
    line-height: 1.3;
}

.service-card h3 {
    font-size: 18px;
}

.service-card p,
.values-grid p,
.why-grid p,
.split-content p,
.footer-column p,
.footer-list {
    margin: 0;
    color: var(--color-muted);
}

.service-card p {
    font-size: 14px;
    line-height: 1.65;
}

.stats-section {
    position: relative;
    min-height: 640px;
    padding: 126px 0 118px;
    color: var(--color-white);
    background-image: linear-gradient(rgba(7, 20, 47, 0.46), rgba(7, 20, 47, 0.56)), url("/assets/images/curved-skyscrapers-and-sky-in-modern-business-dist-2026-01-09-11-59-30-utc.webp");
    background-position: center bottom;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
}

.stats-section::before {
    display: none;
}

.stats-inner {
    position: relative;
    display: flex;
    min-height: 396px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 72px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 760px);
    gap: 52px;
}

.stat-item {
    padding: 0;
    text-align: center;
    border: 0;
    background: transparent;
}

.stat-item strong {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--color-white);
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1;
}

.stat-item em {
    margin-left: 5px;
    font-size: 0.42em;
    font-style: normal;
    line-height: 1;
}

.stat-item span {
    display: block;
    margin-top: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.86);
}

.stats-copy {
    max-width: 1080px;
}

.stats-copy h2 {
    font-size: clamp(20px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.28;
}

/* About, values, CTA and footer sections */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.split-content p {
    margin-top: 18px;
}

.split-content .btn {
    margin-top: 28px;
}

.image-panel {
    min-height: 460px;
    border: 1px solid var(--color-border);
    background: var(--color-bg-soft);
    overflow: hidden;
}

.image-panel img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

.values-section,
.cta-section {
    padding: 92px 0;
    background: var(--color-navy);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.values-grid article {
    min-height: 220px;
    padding: 30px;
    background: var(--color-navy-soft);
}

.values-grid p {
    color: rgba(255, 255, 255, 0.76);
}

.why-us {
    background: var(--color-bg-soft);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.why-grid article {
    padding: 34px;
    border: 1px solid var(--color-border);
    background: var(--color-white);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.cta-inner h2 {
    max-width: 820px;
    font-size: clamp(28px, 4vw, 48px);
}

.site-footer {
    color: var(--color-white);
    background: var(--color-navy);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.16fr 1fr 1.35fr;
    gap: 76px;
    padding: 86px 0 76px;
}

.footer-column h3 {
    margin: 0 0 26px;
    color: var(--color-red);
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.footer-column p,
.footer-list {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.footer-column p {
    font-size: 17px;
}

.footer-column:first-child p {
    max-width: 360px;
    font-size: 15px;
}

.footer-column:last-child h3 {
    margin-bottom: 16px;
}

.footer-column:last-child p {
    font-size: 14px;
    line-height: 1.5;
}

.footer-list {
    display: grid;
    gap: 18px;
    font-size: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 64px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--color-white);
    background: var(--color-red);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.newsletter-form {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.newsletter-form input {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    color: var(--color-white);
    background: transparent;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    justify-self: start;
    min-height: 44px;
    border: 0;
    padding: 0 22px;
    color: var(--color-white);
    background: var(--color-red);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

/* Responsive navigation and stacked content */
@media (max-width: 1024px) {
    .site-logo img {
        width: 250px;
    }

    .primary-nav ul {
        gap: 18px;
    }

    .card-grid,
    .philosophy-grid,
    .stats-inner,
    .split-layout,
    .about-intro-grid,
    .about-values-grid,
    .payroll-heading-grid,
    .payroll-main-grid,
    .career-grid,
    .contact-grid,
    .why-choose-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-copy,
    .footer-column:first-child {
        grid-column: 1 / -1;
    }

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

    .testimonials-header {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sectors-hero-grid {
        grid-template-columns: 1fr;
    }

    .sectors-hero-copy {
        max-width: 680px;
    }

    .sectors-hero-image {
        min-height: 330px;
        order: -1;
    }

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

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

    .testimonial-card-featured {
        grid-column: 1 / -1;
        min-height: 320px;
    }
}

@media (max-width: 820px) {
    :root {
        --header-height: 76px;
    }

    .site-logo img {
        width: 220px;
    }

    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        inset: var(--header-height) 0 auto 0;
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        background: var(--color-red);
        border-top: 1px solid rgba(255, 255, 255, 0.24);
        transform: translateY(-120%);
        transition: transform 0.25s ease;
    }

    .primary-nav.is-open {
        transform: translateY(0);
    }

    .primary-nav ul {
        display: grid;
        gap: 0;
        width: min(100% - 32px, var(--container));
        margin-inline: auto;
        padding: 14px 0 24px;
    }

    .primary-nav a,
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 16px 0;
    }

    .primary-nav a::after,
    .dropdown-toggle::after {
        bottom: 8px;
    }

    .dropdown-trigger {
        display: grid;
        grid-template-columns: 1fr auto;
        width: 100%;
    }

    .dropdown-trigger .dropdown-main-link {
        width: auto;
    }

    .dropdown-trigger .dropdown-toggle {
        width: auto;
        min-width: 44px;
        justify-content: center;
        padding-left: 14px;
    }

    .dropdown-menu {
        position: static;
        min-width: 0;
        padding: 0 0 8px 18px !important;
        background: rgba(255, 255, 255, 0.08);
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none !important;
    }

    .has-dropdown.is-open .dropdown-menu {
        display: grid !important;
    }

    .dropdown-menu a {
        color: var(--color-white);
    }

    .dropdown-menu a:hover {
        color: var(--color-white);
        background: rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu .dropdown-button-link {
        color: var(--color-red);
        background: var(--color-white);
    }

    .dropdown-menu .dropdown-button-link:hover {
        color: var(--color-red);
        background: var(--color-white);
    }

    .hero {
        min-height: 660px;
    }

    .services-hero {
        min-height: 330px;
    }

    .payroll-hero {
        min-height: 330px;
    }

    .payroll-content {
        padding: 42px 0 64px;
    }

    .payroll-heading-grid,
    .payroll-main-grid {
        gap: 44px;
    }

    .payroll-heading-grid {
        margin-bottom: 54px;
    }

    .payroll-contact-card {
        min-height: auto;
    }

    .related-services {
        padding: 42px 0 54px;
    }

    .related-services-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px 24px;
    }

    .related-services-list {
        grid-template-columns: 1fr;
    }

    .sectors-hero-copy {
        padding: 50px 0 58px;
    }

    .sectors-section {
        padding: 48px 0 72px;
    }

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

    .sectors-cta {
        grid-template-columns: auto 1fr;
    }

    .sectors-cta .btn {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .section,
    .values-section,
    .homepage-goals,
    .testimonials-section,
    .stats-section,
    .cta-section {
        padding: 72px 0;
    }

    .stats-section {
        min-height: auto;
        background-attachment: scroll;
    }

    .card-grid,
    .homepage-goals-grid,
    .testimonials-grid,
    .stats-grid,
    .philosophy-grid,
    .split-layout,
    .about-intro-grid,
    .about-values-grid,
    .payroll-heading-grid,
    .payroll-main-grid,
    .why-choose-grid,
    .career-grid,
    .contact-grid,
    .why-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .homepage-goals-heading {
        margin-bottom: 28px;
    }

    .goal-card {
        min-height: auto;
    }

    .goal-card p {
        min-height: 0;
    }

    .testimonial-card {
        min-height: auto;
    }

    .testimonial-card-featured {
        min-height: auto;
    }

    .testimonials-controls {
        justify-content: center;
    }

    .contact-section {
        padding: 54px 0 72px;
    }

    .contact-grid {
        gap: 42px;
    }

    .contact-details {
        padding-top: 0;
    }

    .career-hero {
        min-height: 520px;
    }

    .career-copy {
        position: static;
    }

    .career-form-panel {
        padding: 28px;
    }

    .why-choose-feature h2 {
        margin-bottom: 50px;
    }

    .why-choose-list {
        order: 2;
    }

    .why-choose-image {
        order: 1;
    }

    .why-choose-image img {
        height: 390px;
    }

    .about-final-cta {
        padding: 96px 0;
    }

    .about-final-cta h2 {
        margin-bottom: 38px;
    }

    .about-intro-image img {
        height: 85vh;
    }

    .about-intro-copy {
        margin-left: 0;
        padding: 34px;
    }

    .about-values-grid {
        min-height: auto;
        width: 100%;
    }

    .about-values-feature {
        --about-values-overhang: 48px;
    }

    .about-values-copy {
        padding: 72px 0;
    }

    .about-values-image,
    .about-values-image img {
        min-height: 420px;
    }

    .near-you {
        margin-top: 48px;
    }

    .cta-inner {
        display: grid;
        text-align: left;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .site-logo img {
        width: 185px;
    }

    .hero {
        min-height: 590px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .services-hero {
        min-height: 300px;
    }

    .payroll-hero {
        min-height: 260px;
    }

    .payroll-content {
        padding: 34px 0 52px;
    }

    .payroll-heading-grid {
        margin-bottom: 42px;
    }

    .payroll-heading-grid h2 {
        font-size: 26px;
    }

    .payroll-heading-grid p,
    .payroll-copy p,
    .payroll-copy ul,
    .payroll-contact-card p {
        font-size: 15px;
    }

    .services-hero-content {
        padding: 66px 0;
    }

    .payroll-hero-content {
        padding: 68px 0;
    }

    .payroll-hero h1 {
        font-size: 33px;
        letter-spacing: 0.025em;
    }

    .payroll-copy h3 {
        font-size: 19px;
    }

    .payroll-contact-card {
        padding: 28px 24px;
    }

    .services-hero h1 {
        letter-spacing: 0.04em;
    }

    .faq-item summary {
        min-height: 54px;
        padding-right: 48px;
        font-size: 15px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .service-card,
    .goal-card,
    .testimonial-card,
    .why-grid article,
    .values-grid article {
        padding: 24px;
    }

    .testimonials-section::before {
        inset: 12px;
    }

    .testimonials-header {
        margin-bottom: 30px;
    }

    .sectors-heading {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: left;
    }

    .sectors-heading > span {
        display: none;
    }

    .sectors-heading i {
        margin-left: 0;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .sector-card {
        min-height: 280px;
    }

    .sector-card-content {
        grid-template-rows: minmax(72px, auto) 1fr;
    }

    .sectors-cta {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .testimonials-header > p,
    .testimonial-card:not(.testimonial-card-featured) p {
        font-size: 15px;
    }

    .testimonial-card-featured {
        padding: 28px 24px;
    }

    .homepage-goals-heading .eyebrow {
        font-size: 12px;
        line-height: 1.5;
    }

    .goal-icon {
        width: 66px;
        height: 66px;
    }

    .goal-icon svg {
        width: 32px;
        height: 32px;
    }

    .goal-visual-report,
    .goal-visual-plan {
        width: 100%;
    }

    .goal-visual-orbit {
        transform: scale(0.94);
        transform-origin: center top;
    }

    .service-card {
        aspect-ratio: auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .image-panel,
    .image-panel img {
        min-height: 320px;
    }

    .about-intro-image img {
        height: 85vh;
    }

    .about-values-copy {
        padding: 58px 0;
    }

    .about-values-feature {
        --about-values-overhang: 36px;
    }

    .about-values-copy p:not(.eyebrow) {
        font-size: 15px;
    }

    .about-values-image,
    .about-values-image img {
        min-height: 340px;
    }

    .philosophy-card {
        min-height: auto;
        padding: 22px 18px;
    }

    .near-you p {
        font-size: 13px;
    }

    .why-choose-feature {
        padding: 68px 0 78px;
    }

    .why-choose-grid {
        gap: 42px;
    }

    .why-choose-list p {
        padding: 22px 0;
        font-size: 12px;
    }

    .why-choose-image img {
        height: 300px;
    }

    .about-final-cta {
        padding: 76px 0;
    }

    .about-final-cta h2 {
        font-size: 15px;
    }

    .about-final-cta .btn {
        min-width: 0;
        width: 100%;
    }

    .career-hero {
        min-height: 470px;
    }

    .career-hero-content p:not(.eyebrow),
    .career-copy > p:not(.eyebrow) {
        font-size: 15px;
    }

    .career-form-panel {
        padding: 20px;
    }

    .career-highlights article,
    .phone-field {
        grid-template-columns: 1fr;
    }

    .phone-field span {
        min-height: 44px;
        border-right: 0;
        border-bottom: 1px solid var(--color-border);
    }

    .career-submit {
        width: 100%;
    }

    .contact-map {
        height: 230px;
    }

    .contact-field label,
    .contact-field input,
    .contact-field select,
    .contact-field textarea,
    .contact-detail-item p {
        font-size: 15px;
    }

    .contact-submit {
        min-height: 58px;
        width: 100%;
    }

    .contact-logo {
        width: min(100%, 330px);
    }
}
