:root {
    --brand: #FF7A01;
    --brand-dark: #D96500;
    --brand-light: #FFF3E8;
    --navy: #142033;
    --text: #1C2738;
    --muted: #667286;
    --line: #E7EBF0;
    --soft: #F7F9FB;
    --white: #fff;
    --shadow: 0 18px 50px rgba(20, 32, 51, .10);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    line-height: 1.65;
    background: #fff
}

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

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

.page-container {
    width: min(1180px, calc(100% - 40px));
    margin: auto
}

.top-strip {
    background: var(--navy);
    color: #c7cfdb;
    font-size: 12px;
    padding: 8px 0
}

.top-strip .page-container {
    display: flex;
    justify-content: space-between;
    gap: 20px
}

.top-strip a {
    color: #fff
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line)
}

.header-wrapper {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px
}

.brand-logo img {
    width: 200px
}

.main-nav {
    display: flex;
    gap: 27px;
    align-items: center
}

.main-nav a {
    font-size: 14px;
    font-weight: 600;
    color: #354052
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--brand)
}

.contact-btn,
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--brand);
    color: #fff;
    border-radius: 7px;
    padding: 13px 19px;
    font-size: 14px;
    font-weight: 700
}

.contact-btn:hover,
.btn-primary:hover {
    background: var(--brand-dark)
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid #D7DDE6;
    color: var(--text);
    background: #fff;
    border-radius: 7px;
    padding: 12px 19px;
    font-size: 14px;
    font-weight: 700
}

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

.menu-toggle {
    display: none;
    border: 0;
    background: var(--brand);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 7px;
    font-size: 19px
}

.mobile-menu {
    display: none;
    border-top: 1px solid var(--line);
    background: #fff
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    font-weight: 600;
    font-size: 14px
}

.hero-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff 0%, #fff8f1 55%, #f6f8fb 100%);
    padding: 78px 0 60px
}

.hero-banner:after {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    right: -180px;
    top: -190px;
    background: rgba(255, 122, 1, .08)
}

.banner-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 45px;
    align-items: center
}

.banner-tag,
.section-tag {
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px
}

.banner-tag {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px
}

.banner-tag:before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--brand)
}

.banner-title {
    font-size: clamp(42px, 5.2vw, 68px);
    line-height: 1.03;
    letter-spacing: -2.7px;
    margin: 0 0 22px
}

.banner-title span {
    color: var(--brand)
}

.banner-description {
    max-width: 680px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 30px
}

.action-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.banner-art {
    position: relative;
    min-height: 510px;
    display: flex;
    align-items: flex-end;
    justify-content: center
}

.banner-circle {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fff 0, #fff0df 48%, #ffd1a5 100%);
    top: 25px
}

.banner-art img {
    position: relative;
    z-index: 2;
    width: min(520px, 100%);
    filter: drop-shadow(0 22px 30px rgba(20, 32, 51, .16))
}

.info-card {
    position: absolute;
    z-index: 3;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 12px;
    padding: 14px 16px
}

.info-card.left {
    left: 0;
    top: 115px
}

.info-card.right {
    right: 0;
    bottom: 70px
}

.info-card small {
    display: block;
    color: #8a94a3;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800
}

.info-card strong {
    display: block;
    font-size: 16px;
    margin-top: 3px
}

.highlights {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
    background: #fff
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.highlight-item {
    padding-right: 18px;
    border-right: 1px solid var(--line)
}

.highlight-item:last-child {
    border-right: 0
}

.highlight-item strong {
    display: block;
    font-size: 17px
}

.highlight-item span {
    font-size: 12px;
    color: #7b8695
}

.content-section {
    padding: 95px 0
}

.content-section.soft {
    background: var(--soft)
}

.content-section.dark {
    background: var(--navy);
    color: #fff
}

.two-column {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 70px;
    align-items: center
}

.section-title {
    font-size: clamp(34px, 4.2vw, 42px);
    line-height: 1.08;
    letter-spacing: -1.7px;
    margin: 14px 0 20px
}

.section-copy {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 17px
}

.dark .section-copy {
    color: #bdc7d5
}

.image-frame {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 28px 0;
    border-top: 1px solid var(--line);
    padding-top: 22px
}

.stat-box strong {
    display: block;
    font-size: 27px
}

.stat-box span {
    font-size: 11px;
    color: #7c8795;
    text-transform: uppercase;
    letter-spacing: 1px
}

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

.section-heading .section-copy {
    margin-left: auto;
    margin-right: auto
}

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

.service-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border-radius: 16px;
    background: #172033;
    color: #fff
}

.service-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .6;
    transition: .35s
}

.service-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 32, 51, .08), rgba(20, 32, 51, .96))
}

.service-card:hover img {
    transform: scale(1.05);
    opacity: .72
}

.service-details {
    position: absolute;
    z-index: 2;
    left: 23px;
    right: 23px;
    bottom: 23px
}

.service-number {
    color: #ffb16e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px
}

.service-details h3 {
    font-size: 22px;
    margin: 8px 0
}

.service-details p {
    color: #d8dee7;
    font-size: 14px;
    margin: 0;
    line-height: 1.7
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 35px
}

.reason-card {
    border: 1px solid #2e3a4e;
    background: rgba(255, 255, 255, .03);
    border-radius: 13px;
    padding: 25px
}

.reason-card span {
    color: #ff9b4d;
    font-size: 11px;
    font-weight: 800
}

.reason-card h3 {
    font-size: 19px;
    margin: 8px 0
}

.reason-card p {
    color: #bdc7d5;
    font-size: 14px;
    margin: 0
}

.visual-teaser {
    padding: 90px 0
}

.teaser-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center
}

.teaser-image {
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 18px
}

.teaser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.teaser-image:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(20, 32, 51, .78))
}

.teaser-label {
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 20px;
    background: #fff;
    color: var(--brand);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px
}

.teaser-caption {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 20px;
    bottom: 20px;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.25
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 28px
}

.pill {
    background: var(--brand-light);
    border: 1px solid #ffd9bb;
    color: #8c4b1b;
    border-radius: 30px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 700
}

.career-strip {
    background: #fff7ef
}

.final-banner {
    background: var(--navy);
    color: #fff;
    text-align: center;
    padding: 95px 20px;
    position: relative;
    overflow: hidden
}

.final-banner .page-container {
    position: relative;
    z-index: 2;
    max-width: 850px
}

.final-banner h2 {
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 18px
}

.final-banner h2 span {
    color: var(--brand)
}

.final-banner p {
    color: #c2cad5;
    font-size: 17px;
    line-height: 1.8;
    margin: 0 auto 30px
}

.page-hero {
    background: linear-gradient(135deg, #142033, #24334a);
    color: #fff;
    padding: 85px 0
}

.page-hero .page-container {
    max-width: 1180px
}

.page-hero h1 {
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 15px 0
}

.page-hero p {
    max-width: 760px;
    color: #c8d0db;
    font-size: 17px;
    line-height: 1.8;
    margin: 0
}

.text-list {
    display: grid;
    gap: 15px;
    margin-top: 25px
}

.text-list article {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff
}

.text-list h3 {
    margin: 0 0 7px;
    font-size: 18px
}

.text-list p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.industry-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    transition: .25s
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.industry-card .industry-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 8px;
    font-weight: 800;
    margin-bottom: 18px
}

.industry-card h3 {
    margin: 0 0 10px;
    font-size: 20px
}

.industry-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.process-step {
    padding: 25px;
    border-top: 3px solid var(--brand);
    background: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 25px rgba(20, 32, 51, .06)
}

.process-step span {
    color: var(--brand);
    font-weight: 800;
    font-size: 12px
}

.process-step h3 {
    font-size: 18px;
    margin: 9px 0
}

.process-step p {
    color: var(--muted);
    font-size: 14px;
    margin: 0
}

.career-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.career-point {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 12px
}

.career-point h3 {
    font-size: 18px;
    margin: 0 0 8px
}

.career-point p {
    font-size: 14px;
    color: var(--muted);
    margin: 0
}

.form-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 55px;
    align-items: start
}

.contact-details {
    display: grid;
    gap: 18px
}

.contact-item {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 10px
}

.contact-item strong {
    display: block;
    margin-bottom: 4px
}

.contact-item span,
.contact-item a {
    color: var(--muted);
    font-size: 14px
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #D8DEE7;
    border-radius: 7px;
    font: inherit;
    outline: 0
}

.form-field textarea {
    min-height: 145px;
    resize: vertical
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--brand)
}

.site-footer {
    background: #0c1523;
    color: #aeb8c7;
    padding: 60px 0 24px
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 35px
}

.footer-brand img {
    width: 200px;
    filter: brightness(0) invert(1);
    margin-bottom: 18px
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    max-width: 340px
}

.site-footer h4 {
    color: #fff;
    font-size: 14px;
    margin: 0 0 14px
}

.site-footer a {
    display: block;
    color: #aeb8c7;
    font-size: 13px;
    margin: 8px 0
}

.site-footer a:hover {
    color: #fff
}

.footer-address {
    font-size: 13px;
    line-height: 1.8
}

.footer-bottom {
    border-top: 1px solid #263244;
    margin-top: 35px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 11px
}


.opening-dropdown {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    display: inline-block;
    margin-left: 10px;
    margin-bottom: 4px;
}

@media(max-width:991px) {

    .main-nav,
    .contact-btn {
        display: none
    }

    .menu-toggle {
        display: block
    }

    .banner-layout,
    .two-column,
    .teaser-layout,
    .form-layout {
        grid-template-columns: 1fr
    }

    .banner-art {
        min-height: 420px
    }

    .highlight-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .card-grid {
        grid-template-columns: 1fr 1fr
    }

    .process-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-columns {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:640px) {
    .page-container {
        width: calc(100% - 28px)
    }

    .top-strip {
        display: none
    }

    .header-wrapper {
        height: 70px
    }

    .brand-logo img {
        width: 175px
    }

    .hero-banner {
        padding: 60px 0 40px
    }

    .banner-title {
        font-size: 42px
    }

    .banner-art {
        min-height: 340px
    }

    .banner-circle {
        width: 300px;
        height: 300px
    }

    .info-card.left {
        top: 55px
    }

    .info-card.right {
        bottom: 25px
    }

    .content-section,
    .visual-teaser {
        padding: 70px 0
    }

    .highlight-grid,
    .card-grid,
    .reason-grid,
    .industry-grid,
    .process-grid,
    .career-grid,
    .footer-columns {
        grid-template-columns: 1fr
    }

    .stats {
        grid-template-columns: 1fr
    }

    .image-frame img {
        height: 380px
    }

    .teaser-image {
        height: 340px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        display: block
    }

    .footer-bottom span {
        display: block;
        margin-bottom: 7px
    }
}

/* Services navigation */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 82px
}

.nav-dropdown>a {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100%
}

.nav-chevron {
    font-size: 14px;
    line-height: 1;
    transition: transform .2s
}

.nav-dropdown:hover .nav-chevron {
    transform: rotate(180deg)
}

.services-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    transform: translate(-50%, 8px);
    width: 285px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(20, 32, 51, .13);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .2s ease
}

.nav-dropdown:hover .services-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0)
}

.services-menu a {
    display: block !important;
    padding: 11px 13px;
    border-radius: 7px;
    font-size: 13px !important;
    line-height: 1.35
}

.services-menu a:hover {
    background: var(--brand-light);
    color: var(--brand) !important
}

.mobile-services>a {
    display: block
}

.mobile-submenu {
    padding: 0 0 8px 14px;
    border-left: 2px solid var(--brand-light);
    margin: 0 0 5px 4px
}

.mobile-submenu a {
    padding: 9px 0;
    font-size: 13px
}

.text-link {
    display: inline-block;
    color: var(--brand);
    font-size: 13px;
    font-weight: 800;
    margin-top: 12px
}

.text-link:hover {
    color: var(--brand-dark)
}


/* Current Opportunities */
.current-opportunities {
    padding-top: 80px;
    padding-bottom: 95px;
    background: #fff
}

.current-opportunities .section-heading {
    margin-bottom: 24px
}

.openings-list {
    width: 100%;
    border-top: 1px solid #fff;
    display: grid;
    gap: 4px
}

.opening-item {
    background: #f6f6f6;
    border: 0;
    border-radius: 0;
    overflow: hidden
}

.opening-item summary {
    min-height: 78px;
    padding: 0 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    list-style: none;
    color: #005697;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .1px
}

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

.opening-title {
    line-height: 1.45
}

.opening-title i {
    font-style: normal;
    margin: 0 10px;
    color: #1f5d91
}

.opening-arrow {
    flex: 0 0 39px;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    background: #005b98;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-1px);
    transition: transform .2s ease
}

.opening-item[open] .opening-arrow {
    transform: rotate(180deg) translateY(1px)
}

.opening-details {
    padding: 0 27px 24px;
    color: #555;
    font-size: 14px;
    line-height: 1.7
}

.opening-details p {
    margin: 0 0 12px;
    max-width: 850px
}

.opening-apply {
    display: inline-block;
    color: #005b98;
    font-weight: 700;
    text-decoration: none
}

.opening-apply:hover {
    text-decoration: underline
}

@media(max-width:640px) {
    .current-opportunities {
        padding-top: 65px;
        padding-bottom: 70px
    }

    .opening-item summary {
        padding: 18px 16px;
        align-items: center;
        font-size: 14px;
        min-height: 72px
    }

    .opening-title i {
        margin: 0 5px
    }

    .opening-arrow {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
        font-size: 22px
    }

    .opening-details {
        padding: 0 16px 20px;
        font-size: 13px
    }
}

/* Long-form service pages */
.wide-copy {
    max-width: 900px;
    margin: 0 auto
}

.staffing-highlight {
    background: var(--navy);
    color: #fff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: var(--shadow)
}

.staffing-highlight span {
    display: block;
    color: #ffb16e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 25px
}

.staffing-highlight strong {
    display: block;
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 12px
}

.staffing-highlight p {
    color: #cbd3df;
    margin: 0;
    line-height: 1.8
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 35px
}

.benefit-card {
    padding: 23px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    min-height: 115px
}

.benefit-card strong {
    display: block;
    font-size: 15px;
    margin-bottom: 5px
}

.benefit-card span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.service-detail-grid article {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    transition: .25s
}

.service-detail-grid article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: #ffd5b5
}

.service-detail-grid article>span {
    color: var(--brand);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px
}

.service-detail-grid h3 {
    font-size: 20px;
    line-height: 1.25;
    margin: 10px 0
}

.service-detail-grid p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
    margin: 0
}

.light-reason-grid .reason-card {
    background: #fff;
    border-color: var(--line)
}

.light-reason-grid .reason-card p {
    color: var(--muted)
}

.process-grid-6 {
    grid-template-columns: repeat(3, 1fr)
}

.process-grid-7 {
    grid-template-columns: repeat(4, 1fr)
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.tech-grid>div {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff
}

.tech-grid h3 {
    font-size: 17px;
    margin: 0
}

.tech-grid .pill-list {
    margin-bottom: 0
}

.industry-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 1000px;
    margin: 30px auto 0
}

.industry-list span {
    padding: 12px 17px;
    background: var(--brand-light);
    border: 1px solid #ffd9bb;
    color: #754016;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 12px
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 0 20px
}

.faq-list summary {
    cursor: pointer;
    list-style: none;
    padding: 19px 28px 19px 0;
    font-size: 16px;
    font-weight: 700;
    position: relative
}

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

.faq-list summary:after {
    content: "+";
    position: absolute;
    right: 2px;
    top: 16px;
    color: var(--brand);
    font-size: 22px;
    font-weight: 400
}

.faq-list details[open] summary:after {
    content: "−"
}

.faq-list details p {
    margin: 0;
    padding: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75
}

@media(max-width:991px) {
    .nav-dropdown {
        display: none
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .service-detail-grid,
    .tech-grid {
        grid-template-columns: 1fr 1fr
    }

    .process-grid-6,
    .process-grid-7 {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:640px) {

    .benefit-grid,
    .service-detail-grid,
    .tech-grid,
    .process-grid-6,
    .process-grid-7 {
        grid-template-columns: 1fr
    }

    .staffing-highlight {
        padding: 30px
    }
}

/* Contact page location map */
.location-section { margin-top: 64px; }
.office-map { margin-top: 24px; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
.office-map iframe { display: block; width: 100%; }
.map-address { padding: 20px 24px; display: flex; flex-direction: column; gap: 4px; }
.map-address strong { font-size: 18px; color: var(--navy); }
.map-address span { color: var(--muted); }

/* Social media icons */
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.social-links a:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-3px); }
.social-links svg { width: 18px; height: 18px; fill: currentColor; }
.social-links svg rect, .social-links svg circle { fill: none; stroke: currentColor; stroke-width: 2; }
.social-links svg circle:last-child { fill: currentColor; stroke: none; }

/* Modern custom cursor */
@media (pointer: fine) {
    body, body * { cursor: none !important; }
    .custom-cursor { position: fixed; top: -8px; left: -8px; width: 16px; height: 16px; border: 2px solid var(--brand); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-100px, -100px); transition: width .18s ease, height .18s ease, background .18s ease, border-color .18s ease; mix-blend-mode: multiply; }
    .custom-cursor.cursor-active { width: 34px; height: 34px; top: -17px; left: -17px; background: rgba(255,122,1,.14); border-color: var(--brand-dark); }
}
@media (max-width: 767px) { .location-section { margin-top: 42px; } .office-map iframe { height: 320px; } }

/* Modern Circle Cursor */
@media (pointer: fine) {
  html, body, a, button, input, select, textarea { cursor: none !important; }
  .modern-cursor { position: fixed; width: 34px; height: 34px; border: 2px solid #FF7A01; border-radius: 50%; pointer-events: none; z-index: 99999; transform: translate(-50%, -50%); transition: width .18s ease, height .18s ease, background-color .18s ease, border-color .18s ease; mix-blend-mode: normal; }
  .modern-cursor.is-hover { width: 52px; height: 52px; background: rgba(255,122,1,.12); }
  .modern-cursor-dot { position: fixed; width: 7px; height: 7px; background: #FF7A01; border-radius: 50%; pointer-events: none; z-index: 100000; transform: translate(-50%, -50%); }
}
@media (pointer: coarse) { .modern-cursor, .modern-cursor-dot { display: none !important; } }
