:root {
    --black: #000;
    --ink: #121212;
    --muted: #666;
    --line: #dedede;
    --paper: #fff;
    --soft: #f4f4f4;
    --radius: 16px;
    --shadow: 0 18px 55px rgba(0, 0, 0, .12);
    --container: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Manrope, Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
img[src$="/live-icons/erp.png"] { filter: brightness(0) invert(1); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.7rem, 5vw, 4.8rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.7rem); }
h3 { font-size: 1.35rem; }
p { color: var(--muted); }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.narrow { max-width: 860px; }
.section { padding: 110px 0; }
.section--dark { color: #fff; background: #000; }
.section--dark p { color: #bcbcbc; }
.section--muted { background: var(--soft); }
.eyebrow { margin-bottom: 18px; color: currentColor !important; font-size: .76rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px; color: #000; background: #fff; border-radius: 6px; transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.site-header { position: sticky; z-index: 100; top: 0; height: 100px; color: #fff; background: #000; border-bottom: 1px solid rgba(255,255,255,.06); }
.header-inner { display: flex; align-items: center; height: 100%; gap: 36px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 190px; object-fit: contain; filter: invert(1); }
.primary-nav { display: flex; align-items: center; justify-content: flex-end; gap: 38px; margin-left: auto; }
.primary-nav > a, .nav-dropdown > button { position: relative; padding: 38px 0; color: #fff; background: transparent; border: 0; font-size: .9rem; font-weight: 700; cursor: pointer; }
.primary-nav > a::after, .nav-dropdown > button::after { position: absolute; right: 0; bottom: 29px; left: 0; height: 2px; content: ''; background: #fff; transform: scaleX(0); transition: transform .2s ease; }
.primary-nav > a:hover::after, .primary-nav > a:focus-visible::after, .primary-nav > a[aria-current]::after, .nav-dropdown > button:hover::after { transform: scaleX(1); }
.header-quote { flex: 0 0 auto; min-width: 190px; }
.nav-dropdown { position: relative; }
.nav-mega { position: fixed; top: 100px; right: 0; left: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; width: min(calc(100% - 48px), 900px); margin-inline: auto; padding: 34px; visibility: hidden; opacity: 0; color: #fff; background: #111; border: 1px solid #2b2b2b; border-radius: 0 0 16px 16px; box-shadow: var(--shadow); transform: translateY(-8px); transition: .2s ease; }
.nav-dropdown:hover .nav-mega, .nav-dropdown:focus-within .nav-mega, .nav-dropdown.is-open .nav-mega { visibility: visible; opacity: 1; transform: none; }
.nav-mega > div { display: grid; grid-template-columns: repeat(2, 1fr); align-content: start; gap: 9px 22px; }
.nav-mega a { color: #cfcfcf; font-size: .86rem; }
.nav-mega a:hover, .nav-mega a:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.nav-mega .nav-mega__title { grid-column: 1 / -1; margin-bottom: 7px; color: #fff; font-size: .95rem; font-weight: 800; }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 11px; background: #fff; border: 0; border-radius: 8px; }
.nav-toggle > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: #000; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 14px 28px; border: 2px solid transparent; border-radius: 14px; font-size: .82rem; font-weight: 800; letter-spacing: .015em; text-align: center; text-transform: uppercase; transition: transform .18s ease, color .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid #8cc8ff; outline-offset: 3px; }
.button--light { color: #000; background: #fff; border-color: #fff; }
.button--light:hover { color: #fff; background: #000; }
.button--outline { color: #fff; background: transparent; border-color: #fff; }
.button--outline:hover { color: #000; background: #fff; }
.button-row { display: flex; flex-wrap: wrap; gap: 16px; }

.home-hero { min-height: 800px; display: flex; align-items: center; color: #fff; background-color: #000; background-image: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.4) 48%, rgba(0,0,0,.38) 100%), url('../img/home-hero.jpg'); background-position: center; background-size: cover; }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 76px; padding-block: 90px; }
.hero-copy h1 { max-width: 620px; margin-bottom: 24px; font-size: clamp(3rem, 3.8vw, 3.55rem); }
.hero-copy p { max-width: 620px; margin-bottom: 30px; color: #d0d0d0; font-size: 1.08rem; }
.hero-copy strong { color: #fff; }
.hero-form h2 { margin-bottom: 26px; font-size: clamp(2rem, 3vw, 2.8rem); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form--compact label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.form-field { display: grid; gap: 7px; }
.form-field--wide { grid-column: 1 / -1; }
.form-field label { font-size: .82rem; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea { width: 100%; color: #111; background: #fff; border: 1px solid #cfcfcf; border-radius: 11px; outline: none; }
.form-field input, .form-field select { height: 55px; padding: 0 16px; }
.form-field textarea { min-height: 142px; padding: 14px 16px; resize: vertical; }
.contact-form--compact .form-field input { color: #fff; background: rgba(0,0,0,.35); border-color: rgba(255,255,255,.45); }
.contact-form--compact .form-field input::placeholder { color: #aaa; }
.contact-form--compact .form-submit { width: 100%; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: #111; box-shadow: 0 0 0 3px rgba(0,0,0,.08); }
.contact-form--compact .form-field input:focus { border-color: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.15); }
.field-error { color: #c91c1c; font-size: .78rem; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.section-heading { margin-bottom: 55px; }
.split-heading { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: end; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p, .split-heading > div + p { margin-bottom: 8px; font-size: 1.08rem; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-grid--six { grid-template-columns: repeat(3, 1fr); }
.feature-card { min-height: 240px; padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.feature-card > span { display: inline-block; margin-bottom: 42px; color: #888; font-weight: 800; }
.feature-card h3 { margin-bottom: 12px; }
.feature-card p { margin-bottom: 0; }
.services-section > .container > h2, .comparison-section h2, .testimonials h2, .faq-section > .container > h2, .roles-section > .container > h2, .process-section h2 { max-width: 770px; margin-bottom: 52px; }
.service-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #333; border-left: 1px solid #333; }
.service-card { position: relative; min-height: 310px; padding: 38px; border-right: 1px solid #333; border-bottom: 1px solid #333; }
.service-card__number { display: inline-block; margin-bottom: 38px; color: #777; font-size: .82rem; font-weight: 800; }
.service-card h3 { color: #fff; }
.service-card p { font-size: .95rem; }
.service-card > a { position: absolute; right: 38px; bottom: 32px; left: 38px; display: flex; justify-content: space-between; color: #fff; font-size: .8rem; font-weight: 800; text-transform: uppercase; }
.service-card > a:hover { text-decoration: underline; text-underline-offset: 5px; }
.service-card { display: flex; flex-direction: column; min-height: 370px; }
.service-card p { margin-bottom: 28px; }
.service-card > a { position: relative; right: auto; bottom: auto; left: auto; margin-top: auto; padding-top: 21px; border-top: 1px solid #333; }
.service-card-grid--light { border-color: #d4d4d4; }
.service-card-grid--light .service-card { color: #111; border-color: #d4d4d4; }
.service-card-grid--light .service-card h3, .service-card-grid--light .service-card > a { color: #111; }
.service-card-grid--light .service-card > a { border-top-color: #d4d4d4; }

.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.comparison-panel { padding: 44px; background: #f3f3f3; border: 1px solid #ddd; border-radius: var(--radius); }
.comparison-panel--dark { color: #fff; background: #000; border-color: #000; }
.comparison-panel h3 { margin-bottom: 28px; font-size: 1.8rem; }
.comparison-panel ul { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.comparison-panel li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; }
.comparison-panel li span { font-size: 1.25rem; font-weight: 900; line-height: 1.25; }
.testimonial-slider { min-height: 340px; }
.testimonial { display: none; margin: 0; }
.testimonial.is-active { display: block; }
.testimonial blockquote { margin: 0 0 34px; font-size: clamp(1.8rem, 3.2vw, 3rem); font-weight: 700; line-height: 1.25; letter-spacing: -.025em; }
.testimonial figcaption { display: grid; gap: 1px; }
.testimonial figcaption span { color: #aaa; }
.slider-dots { display: flex; gap: 8px; margin-top: 32px; }
.slider-dots button { width: 34px; height: 5px; padding: 0; background: #444; border: 0; border-radius: 99px; cursor: pointer; }
.slider-dots button[aria-current="true"] { background: #fff; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }
details { border-top: 1px solid #ccc; }
details:last-child { border-bottom: 1px solid #ccc; }
.faq-grid details:nth-last-child(2) { border-bottom: 1px solid #ccc; }
summary { position: relative; padding: 23px 42px 23px 0; font-weight: 800; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { position: absolute; top: 22px; right: 6px; content: '+'; font-size: 1.3rem; line-height: 1; }
details[open] summary::after { content: '−'; }
details p { padding: 0 30px 22px 0; }

.cta-section { padding: 84px 0; color: #fff; background: #111; }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: center; }
.cta-inner h2 { max-width: 780px; margin-bottom: 18px; }
.cta-inner p:not(.eyebrow) { max-width: 680px; margin-bottom: 0; color: #bcbcbc; }

.site-footer { padding: 84px 0 20px; color: #fff; background: #000; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 80px; padding-bottom: 54px; }
.footer-brand img { width: 220px; margin-bottom: 25px; }
.footer-brand p { max-width: 430px; color: #aaa; }
.site-footer h2 { margin-bottom: 22px; font-size: 1.25rem; }
.site-footer ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.site-footer li, .site-footer a, .site-footer p { color: #aaa; }
.site-footer a:hover { color: #fff; }
.social-links { display: flex; gap: 22px; font-size: .8rem; font-weight: 800; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid #242424; font-size: .84rem; }
.footer-bottom p { margin: 0; }

.service-hero { min-height: 440px; display: flex; align-items: center; color: #fff; background-color: #111; background-position: center; background-size: cover; }
.service-hero__inner { width: min(calc(100% - 48px), 1020px); padding-block: 52px; }
.service-hero h1 { max-width: 900px; margin-bottom: 20px; font-size: clamp(2.8rem, 3.7vw, 3.25rem); }
.service-hero p { max-width: 800px; color: #e4e4e4; font-size: 1.1rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 30px; margin: 25px 0 30px; padding: 0; list-style: none; font-size: .9rem; font-weight: 700; }
.hero-points li::before { margin-right: 8px; content: '✓'; }
.hero--outsourcing { background-image: linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.36)), url('../img/outsourcing.webp'); }
.hero--digital-marketing { background-image: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.5)), url('../img/digital-marketing.jpeg'); }
.hero--ai-data { background-image: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.48)), url('../img/ai-data.jpg'); }
.hero--graphic-design { background-image: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.48)), url('../img/graphic-design.jpg'); }
.hero--developer { background-image: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.48)), url('../img/developer.webp'); }
.hero--ecommerce { background-image: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.48)), url('../img/ecommerce.webp'); }
.hero--cloud { background-image: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.48)), url('../img/cloud.avif'); }
.hero--customer-service { background-image: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.48)), url('../img/customer-service.jpg'); }
.hero--human-resources { background-image: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.48)), url('../img/human-resources.jpg'); }
.hero--admin { background-image: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.48)), url('../img/admin.webp'); }
.hero--procurement { background-image: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.48)), url('../img/procurement.jpg'); }
.hero--accounting { background-image: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.48)), url('../img/accounting.jpeg'); }
.hero--erp { background-image: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.48)), url('../img/erp.jpg'); }
.hero--it-services { background-image: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.48)), url('../img/it-services.jpeg'); }
.why-us h2 { text-align: center; margin-bottom: 52px; }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.why-grid article { min-height: 205px; display: grid; align-content: center; justify-items: center; padding: 25px; color: #fff; text-align: center; background: #000; border-radius: 14px; }
.why-grid article > span { display: grid; width: 60px; height: 60px; place-items: center; margin-bottom: 20px; font-size: 2rem; border: 1px solid #555; border-radius: 50%; }
.why-grid h3 { margin: 0; font-size: 1rem; line-height: 1.35; }
.impact-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 55px; border-top: 1px solid #bbb; border-bottom: 1px solid #bbb; }
.impact-strip > div { display: grid; padding: 32px 24px; border-right: 1px solid #bbb; }
.impact-strip > div:last-child { border-right: 0; }
.impact-strip strong { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -.04em; }
.impact-strip span { margin-top: 10px; color: #777; font-size: .8rem; font-weight: 800; text-transform: uppercase; }
.role-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.role-grid article { min-height: 248px; padding: 31px; background: #0a0a0a; border: 1px solid #292929; border-radius: 12px; }
.role-grid h3 { margin-bottom: 14px; color: #fff; font-size: 1.2rem; line-height: 1.25; }
.role-grid p { margin: 0; color: #c8c8c8; font-size: .94rem; line-height: 1.7; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid #444; border-left: 1px solid #444; }
.process-grid li { min-height: 250px; padding: 30px; border-right: 1px solid #444; border-bottom: 1px solid #444; }
.process-grid li > span { display: block; margin-bottom: 54px; color: #777; font-size: .8rem; }
.process-grid h3 { font-size: 1.15rem; }
.process-grid p { margin: 0; font-size: .9rem; }

.page-hero { padding: 120px 0; color: #fff; text-align: center; background: #000; }
.page-hero--compact { padding: 80px 0; }
.page-hero h1 { margin-bottom: 24px; }
.page-hero p:not(.eyebrow) { color: #bbb; font-size: 1.15rem; }
.page-hero .button-row { justify-content: center; margin-top: 28px; }
.page-hero--articles { background-image: radial-gradient(circle at 82% 18%, rgba(177,149,64,.2), transparent 28%); }
.split-content { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.split-content p { font-size: 1.1rem; }
.contact-hero { padding: 90px 0 110px; color: #fff; background: linear-gradient(135deg, #050505, #282828); }
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.contact-copy { position: sticky; top: 145px; }
.contact-copy h1 { margin-bottom: 24px; font-size: clamp(2.8rem, 4.6vw, 4.5rem); }
.contact-copy > p:not(.eyebrow) { color: #c9c9c9; font-size: 1.08rem; }
.contact-details { display: grid; gap: 20px; margin: 40px 0 0; padding: 0; list-style: none; }
.contact-details li { display: grid; }
.contact-details span { color: #888; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-panel { padding: 38px; color: #111; background: #fff; border-radius: 18px; box-shadow: var(--shadow); }
.form-success, .form-alert { margin-bottom: 22px; padding: 14px 16px; border-radius: 8px; }
.form-success { color: #155f32; background: #e6f7ec; }
.form-alert { color: #8b1b1b; background: #fdeaea; }
.form-response { grid-column: 1 / -1; margin-top: 2px; padding: 13px 15px; border: 1px solid transparent; border-radius: 10px; font-size: .9rem; font-weight: 700; line-height: 1.45; }
.form-response.is-sending { color: #514821; background: #fff7d8; border-color: #eadb95; }
.form-response.is-success { color: #155f32; background: #e6f7ec; border-color: #b8e2c8; }
.form-response.is-error { color: #8b1b1b; background: #fdeaea; border-color: #efbcbc; }
.contact-form--compact .form-response { color: #fff; background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.3); }
.contact-form--compact .form-response.is-error { color: #ffd8d8; background: rgba(145,15,15,.35); border-color: rgba(255,170,170,.45); }
.form-submit:disabled, .quote-form__action:disabled { cursor: wait; opacity: .72; transform: none; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.article-card { overflow: hidden; background: #fff; border: 1px solid #ddd; border-radius: 14px; color: #111; }
.article-card > img, .article-card__placeholder { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: #111; }
.article-card__placeholder { display: grid; place-items: center; color: #fff; font-size: 3rem; font-weight: 900; }
.article-card__body { padding: 25px; }
.article-card time, .article-hero time { color: #777; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.article-card h2 { margin: 12px 0 14px; font-size: 1.42rem; line-height: 1.18; }
.article-card h2 a { color: #111; }
.article-card h2 a:hover { text-decoration: underline; text-underline-offset: 4px; }
.article-card p { display: -webkit-box; overflow: hidden; margin-bottom: 18px; -webkit-box-orient: vertical; -webkit-line-clamp: 3; font-size: .92rem; color: #555; }
.text-link { color: #111; font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.prose a { color: #075aa5; font-weight: 800; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; overflow-wrap: anywhere; }
.prose a:hover { color: #000; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 25px; margin-top: 52px; }
.pagination a { padding: 10px 18px; border: 1px solid #111; border-radius: 8px; font-weight: 800; }
.article-hero { padding: 90px 0; color: #fff; text-align: center; background: #000; }
.article-hero h1 { margin: 20px auto; font-size: clamp(2.8rem, 5.5vw, 5rem); }
.article-hero p { color: #bbb; font-size: 1.1rem; }
.back-link { display: inline-block; margin-bottom: 25px; font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.article-image { margin-top: 60px; }
.article-image img { width: 100%; max-height: 650px; object-fit: cover; border-radius: 16px; }
.prose { max-width: 800px; padding-top: 70px; padding-bottom: 100px; }
.prose h2 { margin-top: 2.2em; margin-bottom: .7em; font-size: clamp(1.8rem, 3vw, 2.65rem); }
.prose h3 { margin-top: 1.9em; margin-bottom: .7em; font-size: 1.55rem; }
.prose p, .prose li { color: #333; font-size: 1.05rem; line-height: 1.78; }
.prose ul, .prose ol { padding-left: 24px; }
.prose blockquote { margin: 35px 0; padding: 25px 30px; background: #f2f2f2; border-left: 4px solid #000; }
.prose table { display: block; width: 100%; overflow-x: auto; border-collapse: collapse; }
.prose th, .prose td { min-width: 160px; padding: 12px 14px; border: 1px solid #ccc; text-align: left; }
.prose th { color: #fff; background: #111; }
.prose hr { margin: 45px 0; border: 0; border-top: 1px solid #ccc; }
.legal-copy a { text-decoration: underline; }
.error-page { min-height: 65vh; display: grid; place-items: center; padding: 100px 0; color: #fff; text-align: center; background: #000; }
.error-code { margin-bottom: 10px; color: #777; font-size: 1rem; font-weight: 900; letter-spacing: .2em; }
.error-page h1 { margin-bottom: 18px; }
.error-page p:not(.error-code) { color: #bbb; }

@media (max-width: 1050px) {
    .site-header { height: 84px; }
    .header-inner { gap: 18px; }
    .brand img { width: 160px; }
    .primary-nav { gap: 22px; }
    .header-quote { min-width: 155px; padding-inline: 18px; }
    .nav-mega { top: 84px; }
    .hero-grid { gap: 38px; }
    .feature-grid, .role-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid article:last-child { grid-column: 2; }
    .article-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .container { width: min(calc(100% - 32px), var(--container)); }
    .section { padding: 76px 0; }
    .nav-toggle { display: block; margin-left: auto; }
    .header-quote { display: none; }
    .primary-nav { position: fixed; z-index: 99; top: 84px; right: 0; bottom: 0; left: 0; display: none; overflow-y: auto; align-items: stretch; justify-content: start; gap: 0; padding: 20px 24px 60px; background: #000; }
    .primary-nav.is-open { display: block; }
    .primary-nav > a, .nav-dropdown > button { width: 100%; display: block; padding: 17px 0; text-align: left; border-bottom: 1px solid #292929; }
    .primary-nav > a::after, .nav-dropdown > button::after { display: none; }
    .nav-mega { position: static; display: none; width: 100%; padding: 18px 0 20px 16px; visibility: visible; opacity: 1; border: 0; border-radius: 0; box-shadow: none; transform: none; }
    .nav-dropdown.is-open .nav-mega { display: grid; grid-template-columns: 1fr; }
    .nav-mega > div { grid-template-columns: 1fr; }
    .home-hero { min-height: auto; }
    .hero-grid, .split-heading, .split-content, .contact-layout { grid-template-columns: 1fr; }
    .hero-grid { gap: 52px; padding-block: 70px; }
    .hero-copy h1 { font-size: clamp(2.55rem, 9vw, 4rem); }
    .hero-form { padding-top: 10px; }
    .feature-grid--six { grid-template-columns: repeat(2, 1fr); }
    .service-card-grid { grid-template-columns: repeat(2, 1fr); }
    .comparison-grid, .faq-grid { grid-template-columns: 1fr; }
    .faq-grid details:nth-last-child(2) { border-bottom: 0; }
    .cta-inner { grid-template-columns: 1fr; gap: 34px; }
    .cta-inner .button { justify-self: start; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
    .footer-brand { grid-column: 1 / -1; }
    .service-hero { min-height: 520px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid article:last-child { grid-column: auto; }
    .impact-strip { grid-template-columns: repeat(2, 1fr); }
    .impact-strip > div:nth-child(2) { border-right: 0; }
    .impact-strip > div:nth-child(-n+2) { border-bottom: 1px solid #bbb; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-copy { position: static; }
}

@media (max-width: 560px) {
    body { font-size: 16px; }
    h1 { font-size: 2.65rem; }
    h2 { font-size: 2.2rem; }
    .section { padding: 62px 0; }
    .brand img { width: 170px; }
    .hero-grid { padding-block: 52px; }
    .hero-copy h1 { font-size: 2.65rem; }
    .button-row { align-items: stretch; flex-direction: column; }
    .button-row .button { width: 100%; }
    .contact-form, .feature-grid, .feature-grid--six, .service-card-grid, .why-grid, .role-grid, .process-grid, .article-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 280px; }
    .comparison-panel { padding: 30px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
    .service-hero { min-height: 600px; }
    .service-hero h1 { font-size: 2.7rem; }
    .hero-points { display: grid; }
    .why-grid article:last-child { grid-column: auto; }
    .impact-strip { grid-template-columns: 1fr; }
    .impact-strip > div { border-right: 0; border-bottom: 1px solid #bbb; }
    .impact-strip > div:last-child { border-bottom: 0; }
    .contact-panel { padding: 25px 20px; }
    .article-hero { padding: 70px 0; }
    .article-hero h1 { font-size: 2.55rem; }
    .article-image { width: 100%; margin-top: 0; }
    .article-image img { border-radius: 0; }
}

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

/* Homepage motion and testimonial experience */
@keyframes header-enter {
    from { opacity: 0; transform: translateY(-18px); }
    to { opacity: 1; transform: none; }
}

@keyframes hero-enter {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: none; }
}

@keyframes form-enter {
    from { opacity: 0; transform: translateX(38px); }
    to { opacity: 1; transform: none; }
}

.motion-ready .site-header { animation: header-enter .55s ease both; }
.motion-ready .home-hero .hero-copy h1,
.motion-ready .home-hero .hero-copy > p,
.motion-ready .home-hero .button-row { animation: hero-enter .72s cubic-bezier(.2,.75,.2,1) both; }
.motion-ready .home-hero .hero-copy > p { animation-delay: .12s; }
.motion-ready .home-hero .button-row { animation-delay: .22s; }
.motion-ready .home-hero .hero-form { animation: form-enter .8s .18s cubic-bezier(.2,.75,.2,1) both; }
.motion-ready [data-reveal] > .container { opacity: 0; transform: translateY(42px); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.75,.2,1); }
.motion-ready [data-reveal].is-visible > .container { opacity: 1; transform: none; }
.motion-ready [data-reveal] .feature-card,
.motion-ready [data-reveal] .service-card,
.motion-ready [data-reveal] .comparison-panel { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease, background-color .2s ease, box-shadow .2s ease; }
.motion-ready [data-reveal].is-visible .feature-card,
.motion-ready [data-reveal].is-visible .service-card,
.motion-ready [data-reveal].is-visible .comparison-panel { opacity: 1; transform: none; }
.motion-ready [data-reveal].is-visible :is(.feature-card, .service-card, .comparison-panel):nth-child(2) { transition-delay: .07s; }
.motion-ready [data-reveal].is-visible :is(.feature-card, .service-card, .comparison-panel):nth-child(3) { transition-delay: .14s; }
.motion-ready [data-reveal].is-visible :is(.feature-card, .service-card, .comparison-panel):nth-child(4) { transition-delay: .21s; }
.motion-ready [data-reveal].is-visible :is(.feature-card, .service-card, .comparison-panel):nth-child(5) { transition-delay: .28s; }
.motion-ready [data-reveal].is-visible :is(.feature-card, .service-card, .comparison-panel):nth-child(6) { transition-delay: .35s; }
.feature-card, .comparison-panel { transition: transform .22s ease, box-shadow .22s ease; }
.feature-card:hover, .comparison-panel:hover { transform: translateY(-6px); box-shadow: 0 22px 55px rgba(0,0,0,.11); }
.services-section .service-card { overflow: hidden; transition: background-color .22s ease; }
.services-section .service-card::before { position: absolute; inset: auto 0 0; height: 0; content: ''; background: #111; transition: height .28s cubic-bezier(.2,.75,.2,1); }
.services-section .service-card:hover::before { height: 100%; }
.services-section .service-card > * { position: relative; z-index: 1; }
.services-section .service-card > a span { transition: transform .2s ease; }
.services-section .service-card:hover > a span { transform: translate(4px, -4px); }
details[open] > p { animation: hero-enter .28s ease both; }

.testimonials { position: relative; overflow: hidden; background: #000; }
.testimonials::before { position: absolute; top: -240px; right: -180px; width: 620px; height: 620px; content: ''; background: radial-gradient(circle, rgba(255,255,255,.09), transparent 68%); border-radius: 50%; pointer-events: none; }
.testimonials .container { position: relative; }
.testimonial-heading { display: grid; grid-template-columns: 1fr 390px; gap: 70px; align-items: end; margin-bottom: 52px; }
.testimonial-heading h2 { max-width: 760px; margin-bottom: 0; }
.testimonial-heading > p { margin-bottom: 4px; color: #a8a8a8; font-size: 1.02rem; }
.testimonial-slider { min-height: 0; overflow: hidden; background: #0b0b0b; border: 1px solid #292929; border-radius: 20px; box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.testimonial-stage { position: relative; min-height: 420px; display: grid; }
.testimonial { position: absolute; inset: 0; display: grid; grid-template-rows: 1fr auto; margin: 0; padding: 55px 58px 45px; visibility: hidden; opacity: 0; transform: translateX(38px); transition: opacity .42s ease, transform .42s cubic-bezier(.2,.75,.2,1), visibility .42s; }
.testimonial.is-active { position: relative; display: grid; visibility: visible; opacity: 1; transform: none; }
.testimonial__mark { position: absolute; top: 20px; right: 42px; color: #2e2e2e; font-family: Georgia, serif; font-size: 10rem; line-height: 1; pointer-events: none; }
.testimonial blockquote { position: relative; z-index: 1; max-width: 940px; align-self: center; margin: 22px 0 48px; font-size: clamp(2rem, 3.5vw, 3.65rem); font-weight: 650; line-height: 1.16; letter-spacing: -.035em; }
.testimonial figcaption { display: flex; align-items: center; gap: 16px; }
.testimonial__avatar { display: grid; width: 52px; height: 52px; flex: 0 0 auto; place-items: center; color: #000; background: #fff; border-radius: 50%; font-size: .78rem; font-weight: 900; letter-spacing: .04em; }
.testimonial__person { display: grid; gap: 1px; }
.testimonial__person strong { font-size: .92rem; }
.testimonial__person > span { color: #929292; font-size: .82rem; }
.testimonial-controls { min-height: 88px; display: grid; grid-template-columns: 100px 1fr auto; align-items: center; gap: 24px; padding: 16px 26px 16px 58px; border-top: 1px solid #292929; }
.testimonial-controls > p { margin: 0; color: #777; font-size: .82rem; font-weight: 800; letter-spacing: .08em; }
.testimonial-controls > p span:first-child { color: #fff; }
.testimonial-controls .slider-dots { justify-self: center; margin: 0; }
.testimonial-controls .slider-dots button { width: 46px; height: 3px; background: #363636; transition: width .2s ease, background .2s ease; }
.testimonial-controls .slider-dots button[aria-current="true"] { width: 70px; background: #fff; }
.testimonial-arrows { display: flex; gap: 8px; }
.testimonial-arrows button { width: 50px; height: 50px; padding: 0; color: #fff; background: transparent; border: 1px solid #454545; border-radius: 50%; font-size: 1.15rem; cursor: pointer; transition: color .18s ease, background .18s ease, transform .18s ease; }
.testimonial-arrows button:hover { color: #000; background: #fff; transform: translateY(-2px); }

.about-proof .split-heading > p { color: #bcbcbc; }
.about-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; overflow: hidden; background: #343434; border: 1px solid #343434; border-radius: 18px; }
.about-metrics article { min-height: 330px; display: grid; align-content: start; padding: 38px; background: #080808; transition: background .22s ease, transform .22s ease; }
.about-metrics article:hover { background: #111; }
.about-metrics article > span { margin-bottom: 46px; color: #707070; font-size: .75rem; font-weight: 800; letter-spacing: .12em; }
.about-metrics strong { margin-bottom: 18px; color: #fff; font-size: clamp(3rem, 5vw, 5rem); line-height: .9; letter-spacing: -.06em; }
.about-metrics h3 { max-width: 340px; margin-bottom: 12px; color: #fff; font-size: 1.28rem; }
.about-metrics p { max-width: 430px; margin: 0; color: #999; font-size: .94rem; }

@media (max-width: 820px) {
    .testimonial-heading { grid-template-columns: 1fr; gap: 14px; }
    .testimonial-heading > p { max-width: 620px; }
    .testimonial-stage { min-height: 460px; }
    .testimonial { padding: 42px 34px 34px; }
    .testimonial blockquote { font-size: clamp(1.85rem, 6vw, 2.7rem); }
    .testimonial-controls { grid-template-columns: auto 1fr auto; padding-left: 34px; }
    .testimonial-controls .slider-dots { display: none; }
    .about-metrics { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .testimonial-heading { margin-bottom: 34px; }
    .testimonial-slider { border-radius: 14px; }
    .testimonial-stage { min-height: 500px; }
    .testimonial { padding: 35px 24px 30px; }
    .testimonial__mark { top: 12px; right: 20px; font-size: 7rem; }
    .testimonial blockquote { margin-top: 42px; font-size: 1.8rem; line-height: 1.22; }
    .testimonial-controls { min-height: 76px; grid-template-columns: 1fr auto; padding: 13px 18px 13px 24px; }
    .testimonial-arrows button { width: 46px; height: 46px; }
    .service-card { min-height: 330px; }
    .about-metrics { grid-template-columns: 1fr; }
    .about-metrics article { min-height: 290px; padding: 30px 26px; }
    .about-metrics article > span { margin-bottom: 36px; }
}

@media (prefers-reduced-motion: reduce) {
    .motion-ready [data-reveal] > .container,
    .motion-ready [data-reveal] .feature-card,
    .motion-ready [data-reveal] .service-card,
    .motion-ready [data-reveal] .comparison-panel { opacity: 1; transform: none; }
}

/* Structured site navigation */
.site-header { height: 88px; background: rgba(0,0,0,.96); backdrop-filter: blur(16px); }
.brand img { width: 172px; }
.primary-nav > a, .nav-dropdown > button { padding: 32px 0; }
.header-quote { min-width: 168px; border-radius: 999px; }
.nav-mega { top: 88px; grid-template-columns: .72fr 1.28fr; gap: 0; width: min(calc(100% - 48px), 1160px); padding: 16px; background: #101010; border-color: #2d2d2d; border-radius: 0 0 22px 22px; }
.nav-mega__models, .nav-mega__catalog { min-width: 0; padding: 26px; }
.nav-mega__models { display: grid; align-content: start; gap: 10px; background: #181818; border-radius: 14px; }
.nav-mega__catalog { padding-left: 34px; }
.nav-mega__label { margin: 0 0 12px; color: #7f7f7f; font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.nav-model { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 17px; color: #fff !important; border: 1px solid #303030; border-radius: 10px; transition: color .18s ease, background .18s ease, border-color .18s ease; }
.nav-model span { display: grid; gap: 3px; }
.nav-model strong { font-size: .9rem; }
.nav-model small { color: #969696; font-size: .75rem; line-height: 1.45; }
.nav-model b { font-size: 1rem; }
.nav-model:hover { color: #000 !important; background: #fff; border-color: #fff; text-decoration: none !important; }
.nav-model:hover small { color: #555; }
.nav-mega__groups { display: grid; grid-template-columns: 1.15fr .9fr 1.15fr; gap: 30px; }
.nav-mega__groups > div { display: grid; align-content: start; gap: 8px; }
.nav-mega__groups strong { min-height: 36px; color: #fff; font-size: .78rem; line-height: 1.3; }
.nav-mega__groups a { color: #aaa; font-size: .78rem; line-height: 1.35; }
.nav-mega__groups a:hover { color: #fff; }

@media (max-width: 820px) {
    .nav-mega { top: auto; grid-template-columns: 1fr; padding: 12px 0 16px 14px; border-radius: 0; }
    .nav-mega__models, .nav-mega__catalog { padding: 18px; }
    .nav-mega__catalog { padding-top: 10px; }
    .nav-mega__groups { grid-template-columns: 1fr; gap: 24px; }
    .nav-mega__groups strong { min-height: 0; margin-bottom: 3px; }
    .primary-nav { top: 88px; }
}

/* Contact page and site-wide motion */
.contact-page-hero { position: relative; overflow: hidden; padding: 125px 0; color: #fff; background: #000; }
.contact-page-hero::after { position: absolute; top: -220px; right: -160px; width: 620px; height: 620px; content: ''; background: radial-gradient(circle, rgba(255,255,255,.11), transparent 68%); border-radius: 50%; }
.contact-page-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: end; }
.contact-page-hero h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(3.3rem, 6vw, 6.2rem); }
.contact-page-hero__grid > div > p:not(.eyebrow) { max-width: 680px; color: #bbb; font-size: 1.08rem; }
.contact-next { padding: 30px; background: #111; border: 1px solid #303030; border-radius: 16px; }
.contact-next > p { margin-bottom: 20px; color: #777; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-next ol { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.contact-next li { display: grid; grid-template-columns: 44px 1fr; gap: 12px; padding: 14px 0; border-top: 1px solid #292929; color: #ddd; font-size: .9rem; }
.contact-next li span { color: #777; font-size: .72rem; font-weight: 800; }
.contact-options { background: #fff; }
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-method-card { min-height: 310px; display: flex; flex-direction: column; padding: 32px; background: #f4f4f4; border: 1px solid #ddd; border-radius: 16px; transition: transform .22s ease, color .22s ease, background .22s ease; }
.contact-method-card:hover { color: #fff; background: #000; transform: translateY(-6px); }
.contact-method-card > span { margin-bottom: 62px; color: #888; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-method-card h3 { margin-bottom: 12px; font-size: 1.55rem; }
.contact-method-card p { margin-bottom: 28px; }
.contact-method-card:hover p { color: #aaa; }
.contact-method-card a { display: flex; justify-content: space-between; gap: 15px; margin-top: auto; padding-top: 18px; border-top: 1px solid #ccc; font-size: .82rem; font-weight: 800; }
.contact-method-card:hover a { border-top-color: #333; }
.contact-method-card a b { transition: transform .18s ease; }
.contact-method-card:hover a b { transform: translate(3px, -3px); }
.contact-message__layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.contact-message__intro { position: sticky; top: 135px; }
.contact-message__intro h2 { margin-bottom: 22px; }
.contact-message__intro > p:not(.eyebrow) { max-width: 470px; font-size: 1.04rem; }
.contact-message__intro ul { display: grid; gap: 12px; margin: 34px 0 0; padding: 0; list-style: none; }
.contact-message__intro li { display: flex; gap: 10px; color: #444; font-weight: 700; }
.contact-message__intro li::before { content: '✓'; color: #000; }
.contact-message .contact-panel { box-shadow: 0 20px 65px rgba(0,0,0,.1); }
.quote-hero { background: linear-gradient(135deg, #050505, #1f1f1f); }

.motion-ready [data-reveal].container { opacity: 0; transform: translateY(42px); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.75,.2,1); }
.motion-ready [data-reveal].container.is-visible { opacity: 1; transform: none; }
.motion-ready [data-reveal] :is(.why-grid article, .role-grid article, .process-grid li, .about-metrics article, .contact-method-card, .contact-next li) { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease, background-color .22s ease, box-shadow .22s ease; }
.motion-ready [data-reveal].is-visible :is(.why-grid article, .role-grid article, .process-grid li, .about-metrics article, .contact-method-card, .contact-next li) { opacity: 1; transform: none; }
.motion-ready [data-reveal].is-visible :is(.why-grid article, .role-grid article, .process-grid li, .about-metrics article, .contact-method-card, .contact-next li):nth-child(2) { transition-delay: .07s; }
.motion-ready [data-reveal].is-visible :is(.why-grid article, .role-grid article, .process-grid li, .about-metrics article, .contact-method-card, .contact-next li):nth-child(3) { transition-delay: .14s; }
.motion-ready [data-reveal].is-visible :is(.why-grid article, .role-grid article, .process-grid li, .about-metrics article, .contact-method-card, .contact-next li):nth-child(4) { transition-delay: .21s; }

@media (max-width: 820px) {
    .contact-page-hero__grid, .contact-message__layout { grid-template-columns: 1fr; gap: 50px; }
    .contact-page-hero { padding: 90px 0; }
    .contact-next { max-width: 600px; }
    .contact-methods { grid-template-columns: 1fr 1fr; }
    .contact-method-card:last-child { grid-column: 1 / -1; min-height: 260px; }
    .contact-message__intro { position: static; }
}

@media (max-width: 560px) {
    .contact-page-hero { padding: 72px 0; }
    .contact-page-hero h1 { font-size: 3.05rem; }
    .contact-methods { grid-template-columns: 1fr; }
    .contact-method-card, .contact-method-card:last-child { grid-column: auto; min-height: 280px; }
}

@media (prefers-reduced-motion: reduce) {
    .motion-ready [data-reveal].container,
    .motion-ready [data-reveal] :is(.why-grid article, .role-grid article, .process-grid li, .about-metrics article, .contact-method-card, .contact-next li) { opacity: 1; transform: none; }
}

/* Original two-panel services navigation */
.nav-mega { position: absolute; top: 100%; right: auto; left: -155px; grid-template-columns: 260px 280px; gap: 0; width: 540px; margin: 0; padding: 0; overflow: hidden; background: #000; border: 0; border-radius: 0; box-shadow: 0 24px 60px rgba(0,0,0,.38); }
.nav-mega > .nav-mega__modes { display: grid; grid-template-columns: 1fr; align-content: start; background: #111; }
.nav-mega__modes a { min-height: 70px; display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; padding: 17px 25px; color: #888; border-bottom: 1px solid #202020; font-size: .82rem; line-height: 1.35; }
.nav-mega__modes a.is-active, .nav-mega__modes a:hover, .nav-mega__modes a:focus-visible { color: #fff; background: #090909; text-decoration: none; }
.nav-mega__modes a span { font-size: 1.1rem; }
.nav-mega__service-list { display: grid; align-content: start; padding: 8px 0; background: #000; }
.nav-mega__service-list[hidden] { display: none; }
.nav-mega__service-list.is-active { animation: serviceMenuIn .16s ease both; }
.nav-mega__service-list a { display: block; padding: 11px 26px; color: #888; font-size: .82rem; line-height: 1.35; transition: color .16s ease, padding-left .16s ease; }
.nav-mega__service-list a:hover, .nav-mega__service-list a:focus-visible { color: #fff; padding-left: 31px; text-decoration: none; }
@keyframes serviceMenuIn { from { opacity: 0; transform: translateX(7px); } to { opacity: 1; transform: none; } }

/* Original home-page floating geometry */
.about-intro { position: relative; overflow: hidden; isolation: isolate; }
.about-intro > .container { position: relative; z-index: 2; }
.about-intro__ornament { position: absolute; z-index: 1; pointer-events: none; user-select: none; }
.about-intro__ornament svg { width: 100%; height: auto; display: block; overflow: visible; }
.about-intro__ornament--eclipse { top: 28px; left: max(44px, calc((100vw - var(--container)) / 2 - 220px)); width: 154px; animation: homeEclipseFloat 7s ease-in-out infinite; }
.about-intro__ornament--eclipse-right { top: 170px; right: max(35px, calc((100vw - var(--container)) / 2 - 220px)); width: 154px; animation: homeEclipseRightFloat 8.5s ease-in-out infinite; }
@keyframes homeEclipseFloat { 0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); } 50% { transform: translate3d(0, -14px, 0) rotate(2deg); } }
@keyframes homeEclipseRightFloat { 0%, 100% { transform: translate3d(0, 0, 0) rotate(2deg); } 50% { transform: translate3d(0, 13px, 0) rotate(-2deg); } }

@media (max-width: 1500px) {
    .about-intro__ornament--eclipse { top: 2px; left: 14px; width: 105px; opacity: .28; }
    .about-intro__ornament--eclipse-right { top: 175px; right: 4px; width: 105px; opacity: .25; }
}

@media (max-width: 820px) {
    .nav-mega { position: static; display: none; width: 100%; padding: 12px 0 18px 14px; overflow: visible; border-radius: 0; box-shadow: none; }
    .nav-dropdown.is-open .nav-mega { display: grid; grid-template-columns: 1fr; }
    .nav-mega__modes a { min-height: 58px; padding: 14px 18px; }
    .nav-mega__service-list { padding: 12px 0 0 15px; }
    .nav-mega__service-list a { padding: 10px 18px; }
    .about-intro__ornament { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .about-intro__ornament { animation: none; }
}

/* Responsive quote journey */
.quote-page { padding: 15px 0; background: #f6f6f6; }
.quote-layout { width: min(calc(100% - 40px), 1210px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .95fr); gap: 26px; align-items: stretch; }
.quote-showcase { position: relative; min-height: 570px; overflow: hidden; color: #fff; background-color: #191919; background-image: linear-gradient(90deg, rgba(19,17,18,.84), rgba(19,17,18,.62)), url('../img/it-services.jpeg'); background-position: 57% center; background-size: cover; border-radius: 22px; isolation: isolate; }
.quote-showcase::after { position: absolute; z-index: -1; inset: 0; content: ''; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.38)); }
.quote-showcase__content { height: 100%; display: flex; flex-direction: column; padding: clamp(38px, 4.2vw, 56px) 44px 40px; }
.quote-showcase__badge { align-self: flex-start; margin-bottom: 24px; padding: 7px 14px; color: #fff; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.35); border-radius: 999px; font-size: .75rem; font-weight: 800; }
.quote-showcase h1 { max-width: 500px; margin-bottom: 16px; font-size: clamp(2.35rem, 3.3vw, 3.05rem); }
.quote-showcase__content > p:not(.quote-showcase__badge) { max-width: 510px; margin-bottom: 18px; color: #ededed; line-height: 1.55; }
.quote-showcase ul { display: grid; gap: 7px; margin: 0 0 20px; padding: 0; list-style: none; }
.quote-showcase li { display: flex; gap: 12px; color: #fff; font-size: .92rem; }
.quote-showcase li::before { content: '✓'; font-weight: 900; }
.quote-showcase__pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: auto; }
.quote-showcase__pills span { padding: 7px 13px; color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.28); border-radius: 999px; font-size: .72rem; font-weight: 800; }
.quote-panel { min-width: 0; padding: 26px 28px 22px; color: #111; background: #fff; border: 1px solid #ddd; border-radius: 22px; box-shadow: 0 18px 55px rgba(0,0,0,.09); }
.quote-form__progress { height: 10px; overflow: hidden; margin-bottom: 34px; background: #e5e5e5; border-radius: 999px; }
.quote-form__progress span { display: block; height: 100%; width: 50%; background: #292526; border-radius: inherit; transition: width .3s ease; }
.quote-form__step[hidden] { display: none; }
.quote-form__header { margin-bottom: 26px; }
.quote-form__count { margin-bottom: 5px; color: #777; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.quote-form__header h2 { margin-bottom: 9px; font-size: clamp(1.8rem, 3vw, 2.15rem); }
.quote-form__header p:last-child { margin: 0; font-size: .98rem; }
.quote-form__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 17px 20px; }
.quote-form .form-field label { font-size: .82rem; }
.quote-form .form-field label > span:not(.optional) { color: #d91515; }
.quote-form .form-field .optional { color: #777; font-weight: 400; }
.quote-form .form-field input, .quote-form .form-field select { height: 51px; border-color: #d2d2d2; border-radius: 999px; }
.quote-form__action { width: 100%; min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; padding: 12px 22px; color: #fff; background: #292526; border: 0; border-radius: 999px; font-weight: 800; cursor: pointer; transition: transform .18s ease, background .18s ease; }
.quote-form__action:hover { background: #000; transform: translateY(-2px); }
.quote-form__actions { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: end; }
.quote-form__back { min-height: 50px; margin-top: 18px; padding: 12px 20px; background: #fff; border: 1px solid #aaa; border-radius: 999px; font-weight: 800; cursor: pointer; }
.quote-form__assurance { margin: 25px 0 0; color: #6f6265; font-size: .8rem; text-align: center; }

/* Keep the full desktop navigation out of tablet-sized viewports. */
@media (max-width: 1100px) {
    .site-header { height: 84px; animation: none; transform: none; backdrop-filter: none; }
    .motion-ready .site-header { animation: none; transform: none; }
    .nav-toggle { display: block; margin-left: auto; }
    .header-quote { display: none; }
    .primary-nav { position: fixed; z-index: 99; top: 84px; right: 0; bottom: 0; left: 0; display: none; overflow-x: hidden; overflow-y: auto; align-items: stretch; justify-content: start; gap: 0; margin: 0; padding: 16px 20px 54px; background: #000; }
    .primary-nav.is-open { display: block; }
    .primary-nav > a, .nav-dropdown > button { width: 100%; display: block; padding: 16px 0; text-align: left; border-bottom: 1px solid #292929; }
    .primary-nav > a::after, .nav-dropdown > button::after { display: none; }
    .nav-mega { position: static; display: none; width: 100%; max-width: none; margin: 0; padding: 12px 0 18px; overflow: visible; visibility: visible; opacity: 1; border: 0; box-shadow: none; transform: none; }
    .nav-dropdown:hover .nav-mega, .nav-dropdown:focus-within .nav-mega { display: none; }
    .nav-dropdown.is-open .nav-mega { display: grid; grid-template-columns: minmax(0, 1fr); }
    .nav-mega > .nav-mega__modes, .nav-mega__service-list { min-width: 0; width: 100%; }
    .nav-mega__modes a { min-height: 0; padding: 15px 16px; }
    .nav-mega__service-list { padding: 10px 0 6px 14px; }
    .nav-mega__service-list a { padding: 9px 16px; }
    .nav-mega__service-list a:hover, .nav-mega__service-list a:focus-visible { padding-left: 20px; }
}

@media (max-width: 900px) {
    .quote-layout { grid-template-columns: 1fr; }
    .quote-showcase { min-height: 500px; }
    .quote-panel { min-height: 530px; }
}

@media (max-width: 560px) {
    .quote-page { padding: 10px 0; }
    .quote-layout { width: min(calc(100% - 20px), 1210px); gap: 12px; }
    .quote-showcase { min-height: 510px; border-radius: 17px; }
    .quote-showcase__content { padding: 30px 24px 24px; }
    .quote-showcase h1 { font-size: 2.35rem; }
    .quote-showcase__pills span { font-size: .67rem; }
    .quote-panel { min-height: 0; padding: 24px 20px; border-radius: 17px; }
    .quote-form__fields { grid-template-columns: 1fr; }
    .quote-form__actions { grid-template-columns: 1fr; }
    .quote-form__back { margin-top: 18px; }
    .quote-form__action { margin-top: 0; }
}

/* Original service icons and a complete final grid row */
.services-section .service-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 31px; }
.services-section .service-card__number { margin: 0; }
.services-section .service-card__icon { width: 62px; height: 62px; flex: 0 0 62px; object-fit: contain; opacity: .94; transition: opacity .22s ease, transform .3s cubic-bezier(.2,.75,.2,1); }
.services-section .service-card:hover .service-card__icon { opacity: 1; transform: translateY(-4px) scale(1.06); }
.services-section .service-card:last-child:nth-child(3n + 1) { grid-column: 1 / -1; min-height: 270px; display: grid; grid-template-columns: 165px minmax(230px, .72fr) minmax(350px, 1.28fr); grid-template-rows: 1fr auto; gap: 22px 45px; align-items: start; }
.services-section .service-card:last-child:nth-child(3n + 1) .service-card__head { grid-row: 1 / 3; display: grid; align-content: space-between; height: 100%; margin: 0; }
.services-section .service-card:last-child:nth-child(3n + 1) .service-card__icon { width: 78px; height: 78px; }
.services-section .service-card:last-child:nth-child(3n + 1) h3 { grid-column: 2; margin: 3px 0 0; font-size: clamp(1.7rem, 2.8vw, 2.7rem); }
.services-section .service-card:last-child:nth-child(3n + 1) p { grid-column: 3; margin: 4px 0 0; font-size: 1rem; }
.services-section .service-card:last-child:nth-child(3n + 1) > a { grid-column: 2 / -1; width: 100%; margin: 0; }

@media (max-width: 900px) {
    .services-section .service-card:last-child:nth-child(3n + 1) { grid-template-columns: 120px 1fr; grid-template-rows: auto auto 1fr auto; gap: 13px 28px; }
    .services-section .service-card:last-child:nth-child(3n + 1) .service-card__head { grid-row: 1 / 5; }
    .services-section .service-card:last-child:nth-child(3n + 1) h3,
    .services-section .service-card:last-child:nth-child(3n + 1) p,
    .services-section .service-card:last-child:nth-child(3n + 1) > a { grid-column: 2; }
}

@media (max-width: 560px) {
    .services-section .service-card:last-child:nth-child(3n + 1) { grid-column: auto; min-height: 330px; display: flex; gap: 0; }
    .services-section .service-card:last-child:nth-child(3n + 1) .service-card__head { width: 100%; height: auto; display: flex; margin-bottom: 31px; }
    .services-section .service-card:last-child:nth-child(3n + 1) .service-card__icon { width: 62px; height: 62px; }
    .services-section .service-card:last-child:nth-child(3n + 1) h3 { margin: 0 0 12px; font-size: 1.35rem; }
    .services-section .service-card:last-child:nth-child(3n + 1) p { margin-bottom: 28px; font-size: .95rem; }
    .services-section .service-card:last-child:nth-child(3n + 1) > a { margin-top: auto; }
}

/* About imagery, value icons and animated service-page identity */
.page-hero--about { position: relative; min-height: 590px; display: flex; align-items: center; overflow: hidden; isolation: isolate; padding: 105px 0; background-color: #050505; background-image: linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.68) 52%, rgba(0,0,0,.48) 100%), url('../img/outsourcing.webp'); background-position: center 44%; background-size: cover; }
.page-hero--about::after { position: absolute; z-index: -1; inset: 0; content: ''; background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.42)); }
.page-hero--about .container { position: relative; z-index: 1; }
.page-hero--about h1 { text-shadow: 0 3px 28px rgba(0,0,0,.45); }
.page-hero--about p:not(.eyebrow) { color: #e0e0e0; }

.about-values { margin-top: 52px; }
.about-values .feature-card { min-height: 285px; }
.value-card__head { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-bottom: 42px; }
.value-card__head > span:first-child { color: #888; font-size: .82rem; font-weight: 800; }
.value-card__icon { width: 70px; height: 70px; display: grid; flex: 0 0 70px; place-items: center; margin: 0 !important; background: #000; border-radius: 18px; transition: transform .28s cubic-bezier(.2,.75,.2,1), border-radius .28s ease; }
.value-card__icon img { width: 46px; height: 46px; object-fit: contain; }
.about-values .feature-card:hover .value-card__icon { border-radius: 50%; transform: translateY(-5px) rotate(-3deg); }

.service-hero { position: relative; overflow: hidden; isolation: isolate; }
.service-hero::after { position: absolute; z-index: -1; inset: 0; content: ''; background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.32)); pointer-events: none; }
.service-hero__inner { position: relative; z-index: 1; }

.why-grid article { overflow: hidden; border: 1px solid #292929; transition: transform .25s cubic-bezier(.2,.75,.2,1), background-color .25s ease, box-shadow .25s ease; }
.why-grid article > img { width: 66px; height: 66px; object-fit: contain; margin-bottom: 22px; transition: transform .3s cubic-bezier(.2,.75,.2,1); }
.why-grid article:hover { background: #151515; box-shadow: 0 20px 45px rgba(0,0,0,.18); }
.why-grid article:hover > img { transform: translateY(-5px) scale(1.08); }

.service-feature-card__icon { width: 72px; height: 72px; display: grid !important; place-items: center; margin-bottom: 40px !important; background: #000; border-radius: 18px; transition: transform .28s cubic-bezier(.2,.75,.2,1), border-radius .28s ease; }
.service-feature-card__icon img { width: 48px; height: 48px; object-fit: contain; }
.service-feature-card:hover .service-feature-card__icon { border-radius: 50%; transform: translateY(-5px) rotate(3deg); }

.roles-section { background: #000; }
.roles-section > .container > h2 { max-width: 850px; margin: 0 auto 54px; color: #fff; text-align: center; }
.role-card__icon { width: 48px; height: 48px; display: grid; place-items: center; margin: 0 0 28px; background: #1a1711; border: 1px solid #3b3427; border-radius: 9px; }
.role-card__icon img { width: 30px; height: 30px; object-fit: contain; filter: sepia(1) saturate(.55) brightness(.96); }
.role-grid article { transition: transform .25s cubic-bezier(.2,.75,.2,1), background-color .25s ease, border-color .25s ease, box-shadow .25s ease; }
.role-grid article:hover { background: #111; border-color: #4a4233; box-shadow: 0 20px 48px rgba(0,0,0,.38); transform: translateY(-7px); }
.role-grid article:hover .role-card__icon { border-color: #8c7a58; }
.role-grid article:hover .role-card__icon img { transform: scale(1.07); }
.role-card__icon img { transition: transform .28s cubic-bezier(.2,.75,.2,1); }
.role-toggle-wrap { display: flex; justify-content: center; margin-top: 46px; }
.role-toggle { min-width: 178px; min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 13px 24px; color: #111; background: #fff; border: 1px solid #fff; border-radius: 999px; font-weight: 800; text-transform: uppercase; transition: color .2s ease, background-color .2s ease, transform .2s ease; }
.role-toggle:hover { color: #fff; background: transparent; transform: translateY(-2px); }
.role-toggle svg { transition: transform .25s ease; }
.role-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.role-card--enter { animation: roleCardReveal .42s cubic-bezier(.2,.75,.2,1) both; }

.process-step__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 44px; }
.process-step__head span { color: #777; font-size: .8rem; font-weight: 800; }
.process-step__head img { width: 58px; height: 58px; object-fit: contain; opacity: .9; transition: opacity .25s ease, transform .28s cubic-bezier(.2,.75,.2,1); }
.process-grid li { transition: transform .25s cubic-bezier(.2,.75,.2,1), background-color .25s ease; }
.process-grid li:hover { background: #111; }
.process-grid li:hover .process-step__head img { opacity: 1; transform: translateY(-5px) scale(1.07); }

@keyframes serviceHeroCopyEnter {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: none; }
}
@keyframes roleCardReveal {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: none; }
}

.motion-ready .service-hero h1 { animation: serviceHeroCopyEnter .72s .08s cubic-bezier(.2,.75,.2,1) both; }
.motion-ready .service-hero__inner > p { animation: serviceHeroCopyEnter .72s .18s cubic-bezier(.2,.75,.2,1) both; }
.motion-ready .service-hero .hero-points { animation: serviceHeroCopyEnter .72s .27s cubic-bezier(.2,.75,.2,1) both; }
.motion-ready .service-hero .button { animation: serviceHeroCopyEnter .72s .36s cubic-bezier(.2,.75,.2,1) both; }
.motion-ready .page-hero--about .eyebrow { animation: serviceHeroCopyEnter .65s .08s cubic-bezier(.2,.75,.2,1) both; }
.motion-ready .page-hero--about h1 { animation: serviceHeroCopyEnter .75s .17s cubic-bezier(.2,.75,.2,1) both; }
.motion-ready .page-hero--about p:not(.eyebrow) { animation: serviceHeroCopyEnter .75s .29s cubic-bezier(.2,.75,.2,1) both; }

.motion-ready [data-reveal] .impact-strip > div,
.motion-ready [data-reveal].faq-section details { opacity: 0; transform: translateY(22px); transition: opacity .52s ease, transform .52s cubic-bezier(.2,.75,.2,1); }
.motion-ready [data-reveal].is-visible .impact-strip > div,
.motion-ready [data-reveal].is-visible.faq-section details { opacity: 1; transform: none; }
.motion-ready [data-reveal].is-visible .impact-strip > div:nth-child(2),
.motion-ready [data-reveal].is-visible.faq-section details:nth-of-type(2) { transition-delay: .07s; }
.motion-ready [data-reveal].is-visible .impact-strip > div:nth-child(3),
.motion-ready [data-reveal].is-visible.faq-section details:nth-of-type(3) { transition-delay: .14s; }
.motion-ready [data-reveal].is-visible .impact-strip > div:nth-child(4),
.motion-ready [data-reveal].is-visible.faq-section details:nth-of-type(4) { transition-delay: .21s; }
.motion-ready [data-reveal].is-visible .why-grid article:hover,
.motion-ready [data-reveal].is-visible .role-grid article:hover,
.motion-ready [data-reveal].is-visible .service-feature-card:hover { transform: translateY(-7px); }

@media (max-width: 820px) {
    .page-hero--about { min-height: 540px; background-position: 58% center; }
}

@media (max-width: 560px) {
    .page-hero--about { min-height: 560px; padding: 78px 0; background-position: 63% center; }
    .about-values { margin-top: 38px; }
    .about-values .feature-card { min-height: 255px; }
    .value-card__head { margin-bottom: 34px; }
    .why-grid article > img { width: 58px; height: 58px; }
    .process-step__head { margin-bottom: 36px; }
    .role-grid { gap: 16px; }
    .role-grid article { min-height: 230px; padding: 25px; }
}

@media (prefers-reduced-motion: reduce) {
    .motion-ready .service-hero h1,
    .motion-ready .service-hero__inner > p,
    .motion-ready .service-hero .hero-points,
    .motion-ready .service-hero .button,
    .motion-ready .page-hero--about .eyebrow,
    .motion-ready .page-hero--about h1,
    .motion-ready .page-hero--about p:not(.eyebrow) { animation: none; }
    .motion-ready [data-reveal] .impact-strip > div,
    .motion-ready [data-reveal].faq-section details { opacity: 1; transform: none; }
    .role-card--enter { animation: none; }
}

/* Full-time and project-based service overview pages */
.landing-services .service-card-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.landing-services .service-card { grid-column: span 2; min-height: 390px; overflow: hidden; background: #fff; transition: color .24s ease, background-color .24s ease, box-shadow .24s ease, transform .3s cubic-bezier(.2,.75,.2,1); }
.landing-services .service-card:nth-last-child(-n + 2) { grid-column: span 2; }
.landing-services .service-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.landing-services .service-card__number { margin: 0; }
.landing-services .service-card__icon { width: 64px; height: 64px; flex: 0 0 64px; object-fit: contain; padding: 9px; background: #080808; border: 1px solid #202020; border-radius: 16px; transition: transform .3s cubic-bezier(.2,.75,.2,1), border-radius .3s ease, border-color .24s ease; }
.landing-services .service-card:hover { color: #fff; background: #080808; box-shadow: 0 24px 55px rgba(0,0,0,.15); }
.landing-services .service-card:hover h3,
.landing-services .service-card:hover > a { color: #fff; }
.landing-services .service-card:hover p { color: #bcbcbc; }
.landing-services .service-card:hover > a { border-top-color: #3b3b3b; }
.landing-services .service-card:hover .service-card__icon { border-color: #3d3d3d; border-radius: 50%; transform: translateY(-5px) scale(1.07); }
.landing-services .service-card > a span { transition: transform .2s ease; }
.landing-services .service-card:hover > a span { transform: translate(4px, -4px); }

.motion-ready .landing-services .service-card[data-card-reveal],
.motion-ready .process-grid li[data-card-reveal] { opacity: 0; transform: translateY(32px); }
.motion-ready .landing-services .service-card[data-card-reveal].is-card-visible,
.motion-ready .process-grid li[data-card-reveal].is-card-visible { opacity: 1; transform: none; }
.motion-ready .landing-services .service-card[data-card-reveal]:nth-child(3n + 2) { transition-delay: .07s; }
.motion-ready .landing-services .service-card[data-card-reveal]:nth-child(3n + 3) { transition-delay: .14s; }
.motion-ready .process-grid li[data-card-reveal]:nth-child(2) { transition-delay: .07s; }
.motion-ready .process-grid li[data-card-reveal]:nth-child(3) { transition-delay: .14s; }
.motion-ready .process-grid li[data-card-reveal]:nth-child(4) { transition-delay: .21s; }
.motion-ready .landing-services .service-card[data-card-reveal].is-card-visible:hover { transform: translateY(-7px); }

@media (max-width: 900px) {
    .landing-services .service-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .landing-services .service-card,
    .landing-services .service-card:nth-last-child(-n + 2) { grid-column: span 1; }
}

@media (max-width: 560px) {
    .landing-services .service-card-grid { grid-template-columns: 1fr; }
    .landing-services .service-card { min-height: 350px; }
}

@media (prefers-reduced-motion: reduce) {
    .motion-ready .landing-services .service-card[data-card-reveal],
    .motion-ready .process-grid li[data-card-reveal] { opacity: 1; transform: none; transition-delay: 0s; }
}

/* Complete get-a-quote page */
.quote-benefits { background: #f4f4f4; }
.quote-benefit-grid, .quote-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.quote-benefit-grid article { min-height: 275px; padding: 30px; background: #fff; border: 1px solid #d9d9d9; border-radius: 16px; box-shadow: 0 14px 36px rgba(0,0,0,.055); transition: transform .25s ease, box-shadow .25s ease; }
.quote-benefit-grid article:hover { transform: translateY(-6px); box-shadow: 0 22px 45px rgba(0,0,0,.1); }
.quote-benefit-grid img { width: 58px; height: 58px; object-fit: contain; margin-bottom: 40px; padding: 10px; background: #080808; border-radius: 15px; }
.quote-benefit-grid h3, .quote-service-grid h3 { margin-bottom: 12px; }
.quote-benefit-grid p, .quote-service-grid p { margin: 0; font-size: .94rem; }
.quote-service-grid { border-top: 1px solid #343434; border-left: 1px solid #343434; gap: 0; }
.quote-service-grid article { min-height: 330px; display: flex; flex-direction: column; padding: 32px; border-right: 1px solid #343434; border-bottom: 1px solid #343434; transition: background-color .22s ease, transform .25s ease; }
.quote-service-grid article:hover { background: #111; }
.quote-service-grid img { width: 58px; height: 58px; object-fit: contain; margin-bottom: 35px; }
.quote-service-grid p { color: #aaa; }
.quote-service-grid a { display: flex; justify-content: space-between; margin-top: auto; padding-top: 18px; color: #fff; border-top: 1px solid #343434; font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.quote-service-grid a span { transition: transform .18s ease; }
.quote-service-grid article:hover a span { transform: translate(4px, -4px); }
.quote-services__footer { display: flex; align-items: center; justify-content: space-between; gap: 35px; margin-top: 32px; }
.quote-services__footer p { margin: 0; color: #aaa; }
.quote-process__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; border-top: 1px solid #c9c9c9; border-left: 1px solid #c9c9c9; }
.quote-process__grid li { min-height: 285px; display: flex; flex-direction: column; padding: 30px; border-right: 1px solid #c9c9c9; border-bottom: 1px solid #c9c9c9; transition: color .22s ease, background-color .22s ease, transform .25s ease; }
.quote-process__grid li:hover { color: #fff; background: #080808; }
.quote-process__grid li > span { margin-bottom: 65px; color: #888; font-size: .8rem; font-weight: 800; }
.quote-process__grid p { margin: auto 0 0; font-size: .92rem; }
.quote-process__grid li:hover p { color: #bbb; }
.quote-final-cta { background: #0b0b0b; }

.motion-ready :is(.quote-benefit-grid article, .quote-service-grid article, .quote-process__grid li)[data-card-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.75,.2,1), background-color .22s ease, box-shadow .22s ease; }
.motion-ready :is(.quote-benefit-grid article, .quote-service-grid article, .quote-process__grid li)[data-card-reveal].is-card-visible { opacity: 1; transform: none; }
.motion-ready :is(.quote-benefit-grid article, .quote-service-grid article, .quote-process__grid li)[data-card-reveal]:nth-child(2) { transition-delay: .06s; }
.motion-ready :is(.quote-benefit-grid article, .quote-service-grid article, .quote-process__grid li)[data-card-reveal]:nth-child(3) { transition-delay: .12s; }
.motion-ready :is(.quote-benefit-grid article, .quote-service-grid article, .quote-process__grid li)[data-card-reveal]:nth-child(4) { transition-delay: .18s; }
.motion-ready :is(.quote-benefit-grid article, .quote-service-grid article)[data-card-reveal]:nth-child(5) { transition-delay: .24s; }
.motion-ready :is(.quote-benefit-grid article, .quote-service-grid article)[data-card-reveal]:nth-child(6) { transition-delay: .3s; }

@media (max-width: 900px) {
    .quote-benefit-grid, .quote-service-grid, .quote-process__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
    .quote-benefit-grid, .quote-service-grid, .quote-process__grid { grid-template-columns: 1fr; }
    .quote-services__footer { align-items: stretch; flex-direction: column; }
    .quote-services__footer .button { width: 100%; }
    .quote-process__grid li { min-height: 240px; }
}

@media (prefers-reduced-motion: reduce) {
    .motion-ready :is(.quote-benefit-grid article, .quote-service-grid article, .quote-process__grid li)[data-card-reveal] { opacity: 1; transform: none; transition-delay: 0s; }
}

/* Pixel-matched original desktop header and cascading services menu. */
@media (min-width: 1101px) {
    .site-header { height: 99px; background: #000; border-bottom: 0; backdrop-filter: none; }
    .header-inner { width: min(calc(100% - 30px), 1180px); gap: 30px; }
    .brand img { width: 200px; }
    .primary-nav { gap: 8px; }
    .primary-nav > a, .nav-dropdown > button {
        min-height: 99px;
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 0 16px;
        font-size: 16px;
        line-height: 1;
        white-space: nowrap;
    }
    .primary-nav > a::after, .nav-dropdown > button::after {
        right: 16px;
        bottom: 26px;
        left: 16px;
        height: 1px;
    }
    .header-quote {
        width: 190px;
        min-width: 190px;
        height: 56px;
        padding: 0 28px;
        font-size: 13px;
        line-height: 1;
    }
    .nav-mega {
        top: 100%;
        left: 0;
        width: 520px;
        grid-template-columns: 260px 260px;
        align-items: start;
        gap: 0;
        overflow: visible;
        background: transparent;
        box-shadow: none;
    }
    .nav-mega > .nav-mega__modes,
    .nav-mega > .nav-mega__service-list {
        width: 260px;
        grid-template-columns: 1fr;
        align-self: start;
        align-content: start;
        gap: 0;
        padding: 8px 0;
        background: #000;
        box-shadow: 0 10px 30px rgba(0,0,0,.3);
    }
    .nav-mega__modes a,
    .nav-mega__service-list a {
        width: 100%;
        min-height: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        padding: 12px 20px 12px 26px;
        color: #8d8d8d;
        border: 0;
        background: #000;
        font-size: 14px;
        line-height: 1.45;
        transition: color .2s ease, background-color .2s ease;
    }
    .nav-mega__modes a.is-active,
    .nav-mega__modes a:hover,
    .nav-mega__modes a:focus-visible,
    .nav-mega__service-list a:hover,
    .nav-mega__service-list a:focus-visible {
        padding-left: 26px;
        color: #fff;
        background: #111;
        text-decoration: none;
    }
    .nav-mega__modes a span { font-size: 14px; line-height: 1.45; }
}
