:root {
    --navy-950: #07182a;
    --navy-900: #0b1f33;
    --navy-800: #12314f;
    --navy-700: #194466;
    --blue-600: #1677ff;
    --blue-100: #e9f2ff;
    --green-700: #087a52;
    --green-600: #0b9b65;
    --green-500: #18a76f;
    --green-100: #e6f7ef;
    --green-50: #f3fbf7;
    --orange-500: #f59e0b;
    --slate-900: #172132;
    --slate-700: #445266;
    --slate-600: #5f6d80;
    --slate-500: #768397;
    --slate-300: #cad3dd;
    --slate-200: #e2e8ee;
    --slate-100: #eff3f6;
    --slate-50: #f7f9fb;
    --white: #fff;
    --shadow-sm: 0 8px 24px rgba(11, 31, 51, 0.08);
    --shadow-md: 0 18px 50px rgba(11, 31, 51, 0.11);
    --shadow-lg: 0 28px 80px rgba(11, 31, 51, 0.15);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --container: 1180px;
    --header-height: 78px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    overflow-x: clip;
    color: var(--slate-900);
    background: var(--white);
    font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

button {
    cursor: pointer;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy-900);
    line-height: 1.24;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.65rem, 5vw, 4.9rem);
}

h2 {
    font-size: clamp(2rem, 3.2vw, 3rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--slate-600);
}

::selection {
    color: var(--white);
    background: var(--green-600);
}

:focus-visible {
    outline: 3px solid rgba(22, 119, 255, 0.45);
    outline-offset: 3px;
}

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

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 999;
    padding: 10px 16px;
    color: var(--white);
    background: var(--navy-900);
    border-radius: 8px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.demo-bar {
    position: relative;
    z-index: 102;
    color: #684309;
    background: #fff7df;
    border-bottom: 1px solid #f2dfaa;
    font-size: 0.79rem;
}

.demo-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 32px;
    gap: 20px;
}

.demo-bar a {
    color: #8c5b08;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(226, 232, 238, 0.92);
    backdrop-filter: blur(16px);
    transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 8px 30px rgba(11, 31, 51, 0.08);
}

.nav-shell {
    display: flex;
    align-items: center;
    min-height: var(--header-height);
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 11px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    background: linear-gradient(145deg, var(--green-100), var(--blue-100));
    border: 1px solid rgba(11, 155, 101, 0.15);
    border-radius: 14px;
}

.brand-mark img {
    width: 27px;
    height: 27px;
    filter: brightness(0) saturate(100%) invert(43%) sepia(40%) saturate(1193%) hue-rotate(107deg) brightness(91%) contrast(96%);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.brand-copy strong {
    color: var(--navy-900);
    font-size: 1.08rem;
    letter-spacing: -0.03em;
}

.brand-copy small {
    margin-top: 3px;
    color: var(--slate-500);
    font-size: 0.67rem;
    letter-spacing: 0.03em;
}

.primary-nav {
    display: flex;
    align-self: stretch;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 3px;
}

.primary-nav a {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 11px;
    color: var(--slate-700);
    font-size: 0.89rem;
    font-weight: 600;
    white-space: nowrap;
}

.primary-nav a::after {
    position: absolute;
    right: 12px;
    bottom: 15px;
    left: 12px;
    height: 2px;
    background: var(--green-500);
    border-radius: 2px;
    content: "";
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
    color: var(--green-700);
}

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

.nav-phone {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
    padding: 9px 13px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
}

.nav-phone > img {
    width: 19px;
    filter: brightness(0) saturate(100%) invert(42%) sepia(90%) saturate(608%) hue-rotate(107deg) brightness(87%) contrast(96%);
}

.nav-phone span {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.nav-phone small {
    color: var(--slate-500);
    font-size: 0.67rem;
}

.nav-phone strong {
    margin-top: 3px;
    color: var(--navy-900);
    font-size: 0.84rem;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 10px;
}

.nav-toggle img {
    width: 100%;
}

.nav-toggle .menu-close {
    display: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    color: var(--green-700);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 2px;
    background: var(--green-500);
    content: "";
}

.eyebrow-light {
    color: #98e6c4;
}

.eyebrow-light::before {
    background: #54d39e;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 0.94rem;
    font-weight: 750;
    line-height: 1.2;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button img {
    width: 19px;
    height: 19px;
}

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

.button-green {
    color: var(--white);
    background: linear-gradient(135deg, var(--green-500), var(--green-700));
    box-shadow: 0 12px 28px rgba(11, 155, 101, 0.25);
}

.button-green img {
    filter: brightness(0) invert(1);
}

.button-green:hover {
    box-shadow: 0 16px 32px rgba(11, 155, 101, 0.32);
}

.button-outline {
    color: var(--navy-900);
    background: rgba(255, 255, 255, 0.86);
    border-color: var(--navy-900);
}

.button-outline img {
    filter: brightness(0) saturate(100%) invert(12%) sepia(22%) saturate(1459%) hue-rotate(168deg) brightness(93%) contrast(94%);
}

.button-outline:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.button-dark {
    color: var(--white);
    background: var(--navy-900);
}

.button-dark img,
.button-light img,
.button-light-outline img {
    filter: brightness(0) invert(1);
}

.button-light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.32);
}

.button-light-outline {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.6);
}

.button-large {
    min-height: 54px;
    padding-inline: 25px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 7px;
    color: var(--green-700);
    font-size: 0.9rem;
    font-weight: 750;
}

.text-link img {
    width: 18px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(29%) saturate(1287%) hue-rotate(108deg) brightness(91%) contrast(94%);
    transition: transform 160ms ease;
}

.text-link:hover img {
    transform: translateX(4px);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 655px;
    background:
        radial-gradient(circle at 8% 15%, rgba(24, 167, 111, 0.12), transparent 31%),
        radial-gradient(circle at 90% 20%, rgba(22, 119, 255, 0.1), transparent 30%),
        linear-gradient(180deg, #fbfefd 0%, #f6faf9 100%);
}

.hero::after {
    position: absolute;
    right: -100px;
    bottom: -230px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(24, 167, 111, 0.16);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(24, 167, 111, 0.025), 0 0 0 140px rgba(22, 119, 255, 0.02);
    content: "";
}

.hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    min-height: 655px;
    gap: 44px;
    padding-block: 54px 60px;
}

.hero-copy {
    position: relative;
    z-index: 3;
}

.hero-copy h1 {
    margin-bottom: 23px;
    font-weight: 900;
}

.hero-copy h1 em {
    color: var(--green-600);
    font-style: normal;
}

.hero-lead {
    max-width: 600px;
    margin-bottom: 18px;
    font-size: 1.13rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.hero-tags span {
    display: inline-flex;
    align-items: center;
    color: var(--navy-800);
    font-size: 0.87rem;
    font-weight: 650;
}

.hero-tags span:not(:last-child)::after {
    width: 1px;
    height: 14px;
    margin-left: 8px;
    background: var(--slate-300);
    content: "";
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 36px;
    border: 1px solid rgba(202, 211, 221, 0.75);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.trust-row > div {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 14px 12px;
    gap: 10px;
}

.trust-row > div:not(:last-child) {
    border-right: 1px solid var(--slate-200);
}

.trust-row img {
    flex: 0 0 auto;
    width: 24px;
    filter: brightness(0) saturate(100%) invert(43%) sepia(40%) saturate(1193%) hue-rotate(107deg) brightness(91%) contrast(96%);
}

.trust-row span {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.trust-row strong {
    color: var(--navy-900);
    font-size: 0.82rem;
    white-space: nowrap;
}

.trust-row small {
    overflow: hidden;
    color: var(--slate-500);
    font-size: 0.66rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-media {
    position: relative;
    min-height: 515px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.hero-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.26), transparent 34%);
    content: "";
    pointer-events: none;
}

.hero-media > img {
    width: 100%;
    height: 515px;
    object-fit: cover;
    object-position: 61% center;
}

.hero-note {
    position: absolute;
    z-index: 2;
    bottom: 22px;
    left: 22px;
    display: flex;
    align-items: center;
    padding: 13px 16px;
    gap: 11px;
    color: var(--white);
    background: rgba(7, 24, 42, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(12px);
}

.hero-note img {
    width: 24px;
    filter: brightness(0) invert(1);
}

.hero-note span {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.hero-note strong {
    font-size: 0.82rem;
}

.hero-note small {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.69rem;
}

.section {
    position: relative;
    padding-block: 96px;
}

.soft-section {
    background: var(--slate-50);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 44px;
}

.section-heading h2 {
    margin-bottom: 12px;
}

.section-heading p {
    margin-bottom: 0;
    font-size: 1rem;
}

.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    max-width: none;
    gap: 36px;
}

.section-heading-row > div {
    max-width: 680px;
}

.section-heading-row > div h2,
.section-heading-row > div p {
    margin-bottom: 0;
}

.section-heading-row > p {
    max-width: 470px;
    margin-bottom: 0;
}

.text-center {
    margin-inline: auto;
    text-align: center;
}

.text-center .eyebrow {
    justify-content: center;
}

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

.service-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    box-shadow: 0 6px 22px rgba(11, 31, 51, 0.05);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
    border-color: rgba(24, 167, 111, 0.45);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.service-card-copy {
    display: flex;
    min-height: 132px;
    padding: 23px 20px 18px;
    gap: 13px;
}

.service-card h3 {
    margin: 2px 0 7px;
}

.service-card p {
    margin-bottom: 0;
    font-size: 0.82rem;
    line-height: 1.65;
}

.service-icon,
.feature-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    background: var(--green-100);
    border-radius: 11px;
}

.service-icon img,
.feature-icon img {
    width: 23px;
    filter: brightness(0) saturate(100%) invert(43%) sepia(40%) saturate(1193%) hue-rotate(107deg) brightness(91%) contrast(96%);
}

.service-art,
.case-image,
.service-detail-art,
.inner-hero-art {
    background-image: url("../images/service-collage.jpg");
    background-repeat: no-repeat;
    background-size: 200% 200%;
}

.service-art {
    width: 100%;
    aspect-ratio: 1.75 / 1;
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}

.art-computers {
    background-position: 0 0;
}

.art-printers {
    background-position: 100% 0;
}

.art-office {
    background-position: 0 100%;
}

.art-network {
    background-position: 100% 100%;
}

.service-card > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    color: var(--navy-800);
    font-size: 0.79rem;
    font-weight: 700;
}

.service-card > a img {
    width: 17px;
}

.enterprise-section {
    padding-top: 28px;
}

.enterprise-card {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    min-height: 470px;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 15% 20%, rgba(24, 167, 111, 0.18), transparent 36%),
        linear-gradient(135deg, var(--navy-950), var(--navy-800));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.enterprise-copy {
    position: relative;
    z-index: 2;
    padding: 54px;
}

.enterprise-copy h2 {
    margin-bottom: 12px;
    color: var(--white);
}

.enterprise-copy > p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.7);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-block: 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
}

.benefit-grid div {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 18px 8px;
    text-align: center;
}

.benefit-grid div:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-grid img {
    width: 29px;
    margin-bottom: 8px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(22%) saturate(1083%) hue-rotate(100deg) brightness(92%) contrast(88%);
}

.benefit-grid strong {
    font-size: 0.82rem;
}

.benefit-grid span {
    color: rgba(255, 255, 255, 0.57);
    font-size: 0.68rem;
}

.enterprise-photo {
    position: relative;
    overflow: hidden;
    min-height: 470px;
}

.enterprise-photo::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, var(--navy-800) 0%, transparent 35%);
    content: "";
}

.enterprise-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
}

.process-section {
    overflow: hidden;
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.process-grid::before {
    position: absolute;
    top: 59px;
    right: 8%;
    left: 8%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--slate-300) 0 7px, transparent 7px 13px);
    content: "";
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    color: var(--white);
    background: var(--green-600);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--green-600);
    font-size: 0.69rem;
    font-weight: 800;
}

.process-step:nth-child(n + 4) .step-number {
    background: var(--blue-600);
    box-shadow: 0 0 0 1px var(--blue-600);
}

.step-icon {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    margin: 0 auto 19px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.step-icon img {
    width: 30px;
    filter: brightness(0) saturate(100%) invert(43%) sepia(40%) saturate(1193%) hue-rotate(107deg) brightness(91%) contrast(96%);
}

.process-step:nth-child(n + 4) .step-icon img {
    filter: brightness(0) saturate(100%) invert(41%) sepia(79%) saturate(3969%) hue-rotate(208deg) brightness(103%) contrast(101%);
}

.process-step h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.process-step p {
    margin-bottom: 0;
    font-size: 0.76rem;
    line-height: 1.65;
}

.cases-section {
    background: var(--slate-50);
}

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

.case-card,
.case-page-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(11, 31, 51, 0.05);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.case-card:hover,
.case-page-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.case-image {
    position: relative;
    aspect-ratio: 1.88 / 1;
}

.case-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(7, 24, 42, 0.38));
    content: "";
}

.case-image span {
    position: absolute;
    z-index: 1;
    top: 16px;
    left: 16px;
    padding: 5px 10px;
    color: var(--white);
    background: rgba(8, 122, 82, 0.91);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 750;
}

.case-copy {
    padding: 24px;
}

.case-copy h3,
.case-copy h2 {
    margin-bottom: 10px;
    font-size: 1.14rem;
}

.case-copy p {
    margin-bottom: 18px;
    font-size: 0.85rem;
}

.case-copy ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    gap: 7px;
    list-style: none;
}

.case-copy li {
    padding: 4px 9px;
    color: var(--slate-600);
    background: var(--slate-100);
    border-radius: 5px;
    font-size: 0.67rem;
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.76fr 1.24fr;
    align-items: start;
    gap: 70px;
}

.faq-copy {
    position: sticky;
    top: 125px;
}

.faq-copy h2 {
    margin-bottom: 18px;
}

.security-note {
    display: flex;
    align-items: center;
    padding: 18px;
    margin-top: 30px;
    gap: 14px;
    background: var(--green-50);
    border: 1px solid #d8efe4;
    border-radius: 14px;
}

.security-note > img {
    width: 31px;
    filter: brightness(0) saturate(100%) invert(43%) sepia(40%) saturate(1193%) hue-rotate(107deg) brightness(91%) contrast(96%);
}

.security-note div {
    display: flex;
    flex-direction: column;
}

.security-note strong {
    color: var(--navy-900);
    font-size: 0.89rem;
}

.security-note span {
    color: var(--slate-600);
    font-size: 0.76rem;
}

.faq-list {
    border-top: 1px solid var(--slate-200);
}

.faq-list details {
    border-bottom: 1px solid var(--slate-200);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 8px;
    gap: 20px;
    color: var(--navy-900);
    cursor: pointer;
    font-weight: 750;
    list-style: none;
}

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

.faq-list summary img {
    width: 19px;
    transition: transform 180ms ease;
}

.faq-list details[open] summary img {
    transform: rotate(180deg);
}

.faq-list details p {
    padding: 0 38px 22px 8px;
    margin-bottom: 0;
    font-size: 0.91rem;
}

.quote-section {
    position: relative;
    overflow: hidden;
    padding-block: 84px;
    color: var(--white);
    background:
        radial-gradient(circle at 10% 20%, rgba(24, 167, 111, 0.2), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(22, 119, 255, 0.2), transparent 31%),
        linear-gradient(135deg, var(--navy-950), #0d2e50);
}

.quote-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    align-items: start;
    gap: 70px;
}

.quote-copy {
    padding-top: 18px;
}

.quote-copy h2 {
    margin-bottom: 18px;
    color: var(--white);
}

.quote-copy > p {
    color: rgba(255, 255, 255, 0.67);
}

.quote-features {
    display: grid;
    gap: 16px;
    margin-top: 34px;
}

.quote-features > div {
    display: flex;
    align-items: center;
    gap: 13px;
}

.quote-features img {
    width: 26px;
    filter: brightness(0) invert(1);
    opacity: 0.78;
}

.quote-features span {
    display: flex;
    flex-direction: column;
}

.quote-features strong {
    font-size: 0.87rem;
}

.quote-features small {
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.72rem;
}

.quote-form-shell,
.contact-form-card {
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.quote-form {
    color: var(--slate-900);
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.field > span:first-child {
    color: var(--navy-900);
    font-size: 0.76rem;
    font-weight: 750;
}

.field b,
.form-card-heading b {
    color: #d53f3f;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    color: var(--slate-900);
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 9px;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.field input,
.field select {
    height: 46px;
    padding: 0 13px;
}

.field textarea {
    min-height: 100px;
    padding: 11px 13px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(24, 167, 111, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
    color: #9ca8b7;
}

.field-full {
    grid-column: 1 / -1;
}

.upload-field > input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.upload-ui {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 14px;
    gap: 10px;
    color: var(--slate-600);
    background: var(--slate-50);
    border: 1px dashed var(--slate-300);
    border-radius: 9px;
    cursor: pointer;
    font-size: 0.79rem;
}

.upload-ui:hover {
    color: var(--green-700);
    border-color: var(--green-500);
}

.upload-ui img {
    width: 21px;
}

.consent {
    display: flex;
    align-items: flex-start;
    margin: 16px 0;
    gap: 8px;
    color: var(--slate-600);
    font-size: 0.74rem;
}

.consent input {
    flex: 0 0 auto;
    margin-top: 4px;
    accent-color: var(--green-600);
}

.consent a {
    color: var(--green-700);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.button-submit {
    width: 100%;
    border: 0;
}

.button-submit:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.form-status {
    min-height: 22px;
    margin: 11px 0 0;
    font-size: 0.8rem;
    text-align: center;
}

.form-status.is-success {
    color: var(--green-700);
}

.form-status.is-error {
    color: #c33535;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
}

.prefooter-cta {
    color: var(--white);
    background: linear-gradient(135deg, var(--green-700), var(--green-600));
}

.prefooter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 190px;
    padding-block: 32px;
    gap: 40px;
}

.prefooter-inner h2 {
    max-width: 700px;
    margin-bottom: 0;
    color: var(--white);
    font-size: clamp(1.7rem, 2.6vw, 2.55rem);
}

.prefooter-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.site-footer {
    padding-top: 70px;
    color: rgba(255, 255, 255, 0.7);
    background: var(--navy-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.55fr 0.75fr 0.8fr 1.1fr;
    gap: 54px;
    padding-bottom: 55px;
}

.brand-inverse .brand-copy strong {
    color: var(--white);
}

.brand-inverse .brand-copy small {
    color: rgba(255, 255, 255, 0.52);
}

.footer-brand > p {
    max-width: 380px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.83rem;
}

.footer-grid h3 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 0.92rem;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-grid > div:not(:first-child) a,
.footer-grid > div:not(:first-child) > span {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.79rem;
}

.footer-grid > div:not(:first-child) a:hover {
    color: #91e0bd;
}

.footer-contact a,
.footer-contact > span {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-contact img {
    width: 17px;
    filter: brightness(0) invert(1);
    opacity: 0.62;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p,
.footer-bottom a {
    margin: 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.71rem;
}

.floating-contact {
    position: fixed;
    z-index: 90;
    right: 18px;
    bottom: 84px;
    overflow: visible;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 13px;
    box-shadow: var(--shadow-md);
}

.floating-contact > a,
.floating-contact > button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 62px;
    min-height: 58px;
    padding: 8px 4px;
    gap: 4px;
    color: var(--slate-600);
    background: var(--white);
    border: 0;
    border-bottom: 1px solid var(--slate-200);
    font-size: 0.62rem;
}

.floating-contact > a img,
.floating-contact > button img {
    width: 22px;
    filter: brightness(0) saturate(100%) invert(43%) sepia(40%) saturate(1193%) hue-rotate(107deg) brightness(91%) contrast(96%);
}

.floating-contact > .back-to-top {
    min-height: 40px;
    color: var(--navy-900);
    font-size: 1.05rem;
    border-bottom: 0;
}

.mobile-action-bar {
    display: none;
}

/* Inner pages */
.inner-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(24, 167, 111, 0.12), transparent 33%),
        linear-gradient(180deg, #f8fcfa, #f4f8fa);
}

.inner-hero-layout {
    display: grid;
    grid-template-columns: 1fr 0.86fr;
    align-items: center;
    min-height: 510px;
    gap: 70px;
    padding-block: 65px;
}

.inner-hero-copy h1 {
    margin-bottom: 22px;
    font-size: clamp(2.65rem, 4.7vw, 4.4rem);
}

.inner-hero-copy p {
    max-width: 650px;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.inner-hero-art {
    width: 100%;
    aspect-ratio: 1.08 / 1;
    border: 10px solid var(--white);
    border-radius: 26px;
    box-shadow: var(--shadow-lg);
}

.services-hero-art {
    background-image: url("../images/services-hero-v2.jpg");
    background-position: 52% center;
    background-repeat: no-repeat;
    background-size: cover;
}

.inner-hero-dark {
    color: var(--white);
    background:
        radial-gradient(circle at 13% 25%, rgba(24, 167, 111, 0.25), transparent 32%),
        radial-gradient(circle at 88% 10%, rgba(22, 119, 255, 0.24), transparent 30%),
        var(--navy-950);
}

.inner-hero-dark h1 {
    color: var(--white);
}

.inner-hero-dark p {
    color: rgba(255, 255, 255, 0.67);
}

.compact-hero .inner-hero-layout {
    min-height: 390px;
    grid-template-columns: 1fr;
}

.service-detail-list {
    display: grid;
    gap: 36px;
}

.service-detail {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    scroll-margin-top: 110px;
}

.service-detail:nth-child(even) .service-detail-art {
    order: 2;
}

.service-detail-art {
    min-height: 470px;
}

.service-detail-copy {
    position: relative;
    padding: 48px 52px;
}

.service-detail-copy .service-icon {
    margin-bottom: 22px;
}

.mini-label {
    position: absolute;
    top: 35px;
    right: 42px;
    color: var(--slate-200);
    font-size: 3rem;
    font-weight: 900;
}

.service-detail-copy h2 {
    margin-bottom: 10px;
}

.service-detail-copy > p {
    margin-bottom: 22px;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
    margin: 0;
    gap: 10px 18px;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--slate-700);
    font-size: 0.86rem;
}

.check-list img {
    flex: 0 0 auto;
    width: 17px;
    filter: brightness(0) saturate(100%) invert(43%) sepia(40%) saturate(1193%) hue-rotate(107deg) brightness(91%) contrast(96%);
}

.price-factor {
    display: flex;
    flex-direction: column;
    padding: 16px 18px;
    margin-top: 26px;
    gap: 4px;
    background: var(--slate-50);
    border-left: 3px solid var(--green-500);
    border-radius: 0 10px 10px 0;
}

.price-factor strong {
    color: var(--navy-900);
    font-size: 0.78rem;
}

.price-factor span {
    color: var(--slate-600);
    font-size: 0.8rem;
}

.split-callout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: center;
    gap: 70px;
}

.split-callout h2 {
    margin-bottom: 0;
}

.prep-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
}

.prep-grid > div {
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.prep-grid > div:not(:last-child) {
    border-right: 1px solid var(--slate-200);
}

.prep-grid strong {
    margin-bottom: 6px;
    color: var(--green-600);
    font-size: 0.78rem;
}

.prep-grid span {
    color: var(--navy-900);
    font-size: 0.85rem;
    font-weight: 700;
}

.solution-hero-card {
    padding: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.solution-hero-card > span {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.76rem;
}

.solution-hero-card ul {
    display: grid;
    padding: 0;
    margin: 22px 0 0;
    gap: 16px;
    list-style: none;
}

.solution-hero-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
}

.solution-hero-card li img {
    width: 22px;
    filter: brightness(0) invert(1);
}

.feature-grid {
    display: grid;
    gap: 20px;
}

.four-columns {
    grid-template-columns: repeat(4, 1fr);
}

.feature-card {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.feature-card .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.feature-card p {
    margin-bottom: 0;
    font-size: 0.84rem;
}

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

.assurance-card {
    display: flex;
    align-items: flex-start;
    padding: 26px;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
}

.assurance-card > img {
    width: 32px;
    filter: brightness(0) saturate(100%) invert(43%) sepia(40%) saturate(1193%) hue-rotate(107deg) brightness(91%) contrast(96%);
}

.assurance-card h3 {
    margin-bottom: 7px;
    font-size: 1rem;
}

.assurance-card p {
    margin-bottom: 0;
    font-size: 0.82rem;
}

.enterprise-checklist {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 70px;
}

.checklist-copy p {
    margin-bottom: 26px;
}

.checklist-table {
    overflow: hidden;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.table-row {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 0.8fr 0.9fr;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
}

.table-row:last-child {
    border-bottom: 0;
}

.table-row span {
    padding: 15px 17px;
    color: var(--slate-700);
    font-size: 0.78rem;
}

.table-head {
    background: var(--navy-900);
}

.table-head span {
    color: var(--white);
    font-weight: 750;
}

.process-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    padding: 35px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.process-hero-visual div {
    display: flex;
    align-items: center;
    flex-direction: column;
    color: var(--navy-900);
    font-size: 0.75rem;
    font-weight: 750;
    text-align: center;
}

.process-hero-visual span {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 10px;
    color: var(--white);
    background: var(--green-600);
    border-radius: 50%;
}

.process-hero-visual div:last-child span {
    background: var(--blue-600);
}

.process-hero-visual i {
    flex: 1;
    height: 1px;
    margin: 0 12px 30px;
    background: repeating-linear-gradient(90deg, var(--slate-300) 0 6px, transparent 6px 11px);
}

.timeline {
    position: relative;
    display: grid;
    max-width: 920px;
    gap: 28px;
}

.timeline::before {
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 37px;
    width: 1px;
    background: var(--slate-200);
    content: "";
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 74px 76px 1fr;
    align-items: center;
    min-height: 148px;
    padding: 24px 32px 24px 0;
    gap: 24px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.timeline-number {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-left: 16px;
    color: var(--white);
    background: var(--green-600);
    border: 5px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--green-600);
    font-size: 0.72rem;
    font-weight: 800;
}

.timeline-icon {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    background: var(--green-50);
    border-radius: 16px;
}

.timeline-icon img {
    width: 30px;
    filter: brightness(0) saturate(100%) invert(43%) sepia(40%) saturate(1193%) hue-rotate(107deg) brightness(91%) contrast(96%);
}

.timeline-copy > span {
    color: var(--green-700);
    font-size: 0.72rem;
    font-weight: 800;
}

.timeline-copy h2 {
    margin: 4px 0 7px;
    font-size: 1.35rem;
}

.timeline-copy p {
    margin-bottom: 0;
    font-size: 0.87rem;
}

.notes-layout {
    display: grid;
    grid-template-columns: 0.55fr 1.45fr;
    align-items: start;
    gap: 50px;
}

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

.notes-grid article {
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
}

.notes-grid strong {
    color: var(--green-600);
    font-size: 0.78rem;
}

.notes-grid h3 {
    margin: 12px 0 9px;
    font-size: 1rem;
}

.notes-grid p {
    margin-bottom: 0;
    font-size: 0.8rem;
}

.case-disclaimer {
    display: flex;
    align-items: flex-start;
    padding: 18px 22px;
    margin-bottom: 32px;
    gap: 13px;
    background: #fff9e9;
    border: 1px solid #f2dfaa;
    border-radius: 12px;
}

.case-disclaimer img {
    width: 23px;
    filter: brightness(0) saturate(100%) invert(55%) sepia(85%) saturate(723%) hue-rotate(358deg) brightness(96%) contrast(95%);
}

.case-disclaimer p {
    margin-bottom: 0;
    color: #755418;
    font-size: 0.82rem;
}

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

.case-page-card .case-copy {
    padding: 25px;
}

.case-page-card dl {
    margin: 18px 0 22px;
}

.case-page-card dl > div {
    display: grid;
    grid-template-columns: 66px 1fr;
    padding: 9px 0;
    gap: 10px;
    border-bottom: 1px solid var(--slate-100);
}

.case-page-card dt {
    color: var(--slate-500);
    font-size: 0.72rem;
}

.case-page-card dd {
    margin: 0;
    color: var(--slate-700);
    font-size: 0.77rem;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
}

.about-values > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 170px;
    padding: 20px;
    text-align: center;
}

.about-values > div:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.about-values strong {
    color: #91e0bd;
    font-size: 1.45rem;
}

.about-values span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.74rem;
}

.about-layout {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
    gap: 70px;
}

.about-story h2 {
    margin-bottom: 22px;
}

.about-photo {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-photo img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
    object-position: 65% center;
}

.compliance-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    padding: 48px;
    gap: 60px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
}

.compliance-card h2 {
    margin-bottom: 0;
}

.compliance-card .check-list {
    grid-template-columns: 1fr;
}

.contact-hero .inner-hero-layout {
    min-height: 460px;
}

.contact-cards {
    display: grid;
    gap: 12px;
}

.contact-cards > a,
.contact-cards > div {
    display: flex;
    align-items: center;
    padding: 20px 22px;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.contact-cards img {
    width: 27px;
    filter: brightness(0) saturate(100%) invert(43%) sepia(40%) saturate(1193%) hue-rotate(107deg) brightness(91%) contrast(96%);
}

.contact-cards span {
    display: flex;
    flex-direction: column;
}

.contact-cards small {
    color: var(--slate-500);
    font-size: 0.7rem;
}

.contact-cards strong {
    color: var(--navy-900);
    font-size: 0.96rem;
}

.contact-section {
    background: var(--slate-50);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    align-items: start;
    gap: 70px;
}

.contact-info {
    position: sticky;
    top: 122px;
}

.contact-info dl {
    margin: 30px 0;
    border-top: 1px solid var(--slate-200);
}

.contact-info dl > div {
    display: grid;
    grid-template-columns: 92px 1fr;
    padding: 13px 0;
    border-bottom: 1px solid var(--slate-200);
}

.contact-info dt {
    color: var(--slate-500);
    font-size: 0.78rem;
}

.contact-info dd {
    margin: 0;
    color: var(--navy-900);
    font-size: 0.82rem;
    font-weight: 650;
}

.demo-storage-note {
    display: flex;
    align-items: flex-start;
    padding: 18px;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
}

.demo-storage-note img {
    width: 22px;
    filter: brightness(0) saturate(100%) invert(43%) sepia(40%) saturate(1193%) hue-rotate(107deg) brightness(91%) contrast(96%);
}

.demo-storage-note p {
    margin-bottom: 0;
    font-size: 0.76rem;
}

.demo-storage-note strong {
    display: block;
    color: var(--navy-900);
}

.contact-form-card {
    padding: 36px;
}

.form-card-heading {
    margin-bottom: 25px;
}

.form-card-heading > span {
    color: var(--green-700);
    font-size: 0.75rem;
    font-weight: 800;
}

.form-card-heading h2 {
    margin: 5px 0 7px;
    font-size: 1.65rem;
}

.form-card-heading p {
    margin-bottom: 0;
    font-size: 0.78rem;
}

.large-prep {
    grid-template-columns: repeat(3, 1fr);
}

.large-prep > div:nth-child(3) {
    border-right: 0;
}

.large-prep > div:nth-child(-n + 3) {
    border-bottom: 1px solid var(--slate-200);
}

.legal-copy {
    max-width: 860px;
}

.legal-copy h2 {
    margin: 34px 0 10px;
    font-size: 1.28rem;
}

.legal-copy h2:first-child {
    margin-top: 0;
}

.legal-copy p {
    margin-bottom: 0;
}

.reveal {
    opacity: 1;
    transform: none;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

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

.reveal-delay {
    --delay: 100ms;
}

.reveal-delay-2 {
    --delay: 180ms;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 1120px) {
    .primary-nav a {
        padding-inline: 8px;
        font-size: 0.82rem;
    }

    .nav-phone {
        display: none;
    }

    .hero-shell {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 28px;
    }

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

    .trust-row > div {
        padding-block: 9px;
    }

    .trust-row > div:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid var(--slate-200);
    }

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

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 45px;
    }

    .process-grid::before {
        display: none;
    }

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

    .notes-layout {
        grid-template-columns: 1fr;
    }
}

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

    .nav-shell {
        justify-content: space-between;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-open .nav-toggle .menu-open {
        display: none;
    }

    .nav-open .nav-toggle .menu-close {
        display: block;
    }

    .primary-nav {
        position: absolute;
        z-index: 10;
        top: 100%;
        right: 0;
        bottom: auto;
        left: 0;
        align-self: auto;
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        height: calc(100vh - var(--header-height));
        padding: 18px 24px 110px;
        gap: 0;
        background: var(--white);
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 220ms ease, visibility 0s linear 220ms;
        overflow-y: auto;
    }

    .nav-open .primary-nav {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s;
    }

    .primary-nav a {
        height: auto;
        padding: 16px 4px;
        border-bottom: 1px solid var(--slate-100);
        font-size: 1rem;
    }

    .primary-nav a::after {
        display: none;
    }

    .hero {
        min-height: 0;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-block: 60px;
    }

    .hero-copy {
        max-width: 720px;
    }

    .hero-media {
        min-height: 450px;
    }

    .hero-media > img {
        height: 450px;
    }

    .trust-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-row > div {
        padding-block: 13px;
    }

    .trust-row > div:not(:last-child) {
        border-right: 1px solid var(--slate-200);
        border-bottom: 0;
    }

    .enterprise-card,
    .quote-layout,
    .faq-layout,
    .inner-hero-layout,
    .split-callout,
    .enterprise-checklist,
    .about-layout,
    .compliance-card,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .enterprise-photo {
        min-height: 360px;
    }

    .faq-copy,
    .contact-info {
        position: static;
    }

    .quote-layout,
    .faq-layout,
    .contact-layout {
        gap: 42px;
    }

    .prefooter-inner {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 44px;
    }

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

    .inner-hero-layout {
        gap: 45px;
    }

    .inner-hero-art {
        max-width: 680px;
    }

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

    .service-detail:nth-child(even) .service-detail-art {
        order: initial;
    }

    .service-detail-art {
        min-height: 400px;
    }

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

    .prep-grid > div:nth-child(2) {
        border-right: 0;
    }

    .prep-grid > div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--slate-200);
    }

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

    .about-photo img {
        min-height: 380px;
    }

    .large-prep {
        grid-template-columns: repeat(2, 1fr);
    }

    .large-prep > div:nth-child(3) {
        border-right: 1px solid var(--slate-200);
    }

    .large-prep > div:nth-child(-n + 4) {
        border-bottom: 1px solid var(--slate-200);
    }
}

/* Homepage visual baseline: homepage-mockup-v1.png at 864px. */
.brand-mark {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 0;
    border-radius: 50%;
}

.brand-mark::before {
    position: absolute;
    inset: 7px;
    background: conic-gradient(from -24deg, var(--blue-600) 0 49%, var(--green-600) 49% 100%);
    content: "";
    -webkit-mask: url("../icons/recycle.svg") center / contain no-repeat;
    mask: url("../icons/recycle.svg") center / contain no-repeat;
}

.brand-mark img {
    opacity: 0;
}

.home-page .demo-bar,
.home-page .hero .eyebrow,
.home-page .services-section .section-heading,
.home-page .hero-tags,
.home-page .hero-note,
.home-page .enterprise-copy > p,
.home-page .enterprise-copy > .button,
.home-page .process-section .section-heading > .eyebrow,
.home-page .process-section .section-heading > p,
.home-page .cases-section .section-heading > p,
.home-page .prefooter-cta {
    display: none;
}

.home-page .container {
    width: min(var(--container), calc(100% - 92px));
}

.home-page .site-header,
.home-page .nav-shell {
    min-height: 58px;
}

.home-page .site-header {
    height: 58px;
}

.home-page .nav-shell {
    gap: 14px;
}

.home-page .brand {
    gap: 8px;
}

.home-page .brand-mark {
    width: 36px;
    height: 36px;
}

.home-page .brand-copy strong {
    font-size: 0.98rem;
}

.home-page .brand-copy small {
    margin-top: 1px;
    font-size: 0.58rem;
}

.home-page .primary-nav {
    gap: 0;
}

.home-page .primary-nav a {
    padding-inline: 8px;
    font-size: 0.69rem;
}

.home-page .primary-nav a::after {
    right: 8px;
    bottom: 9px;
    left: 8px;
}

.home-page .nav-phone {
    padding: 7px 10px;
}

.home-page .hero {
    min-height: 356px;
    background: var(--white);
}

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

.home-page .hero-shell {
    display: block;
    min-height: 356px;
    padding-block: 0;
}

.home-page .hero-copy {
    z-index: 3;
    width: 48%;
    padding-top: 88px;
}

.home-page .hero-copy h1 {
    margin-bottom: 10px;
    font-size: clamp(1.95rem, 3.65vw, 3.05rem);
    line-height: 1.16;
    letter-spacing: -0.045em;
    white-space: nowrap;
}

.home-page .hero-lead {
    margin-bottom: 20px;
    color: var(--navy-900);
    font-size: 0.78rem;
    font-weight: 650;
    white-space: nowrap;
}

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

.home-page .hero-actions .button {
    min-height: 36px;
    padding-inline: 17px;
    gap: 7px;
    border-radius: 9px;
    font-size: 0.76rem;
}

.home-page .hero-actions .button img {
    width: 16px;
    height: 16px;
}

.home-page .trust-row {
    width: 100%;
    margin-top: 25px;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 8px;
    box-shadow: none;
}

.home-page .trust-row > div {
    padding: 8px 7px;
    gap: 7px;
}

.home-page .trust-row img {
    width: 19px;
}

.home-page .trust-row strong {
    font-size: 0.67rem;
}

.home-page .trust-row small {
    font-size: 0.56rem;
}

.home-page .hero-media {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 62%;
    height: 356px;
    min-height: 356px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.home-page .hero-media::after {
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.95) 10%, rgba(255, 255, 255, 0.34) 31%, transparent 49%);
}

.home-page .hero-media > img {
    width: 100%;
    height: 356px;
    object-fit: cover;
    object-position: right center;
}

.home-page .services-section {
    min-height: 265px;
    padding-block: 34px 32px;
}

.home-page .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
}

.home-page .service-card {
    border-radius: 10px;
    box-shadow: none;
}

.home-page .service-card-copy {
    min-height: 86px;
    padding: 15px 12px 10px;
    gap: 9px;
}

.home-page .service-icon {
    width: 31px;
    height: 31px;
    border-radius: 7px;
}

.home-page .service-icon img {
    width: 19px;
}

.home-page .service-card h3 {
    margin: 1px 0 5px;
    font-size: 0.93rem;
}

.home-page .service-card p {
    font-size: 0.64rem;
    line-height: 1.55;
}

.home-page .service-art {
    aspect-ratio: 1.72 / 1;
    border-bottom: 0;
}

.home-page .service-card > a {
    display: none;
}

.home-page .enterprise-section {
    min-height: 203px;
    padding-block: 0;
}

.home-page .enterprise-card {
    grid-template-columns: 1.03fr 0.97fr;
    height: 203px;
    min-height: 203px;
    color: var(--navy-900);
    background:
        radial-gradient(circle at 14% 18%, rgba(24, 167, 111, 0.13), transparent 39%),
        linear-gradient(105deg, #eef8f5 0%, #f8fbfa 54%, #eaf3f1 100%);
    border-radius: 11px;
    box-shadow: none;
}

.home-page .enterprise-copy {
    padding: 20px 22px;
}

.home-page .enterprise-copy > .eyebrow {
    margin-bottom: 4px;
    color: var(--navy-900);
    font-size: 0.93rem;
    letter-spacing: 0;
}

.home-page .enterprise-copy > .eyebrow::before {
    display: none;
}

.home-page .enterprise-copy h2 {
    margin-bottom: 11px;
    color: var(--navy-900);
    font-size: 1.23rem;
}

.home-page .benefit-grid {
    margin: 0;
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(202, 211, 221, 0.56);
    border-radius: 8px;
}

.home-page .benefit-grid div {
    min-height: 82px;
    padding: 10px 5px 8px;
}

.home-page .benefit-grid div:not(:last-child) {
    border-right-color: var(--slate-200);
}

.home-page .benefit-grid img {
    width: 23px;
    margin-bottom: 4px;
}

.home-page .benefit-grid strong {
    color: var(--navy-900);
    font-size: 0.67rem;
}

.home-page .benefit-grid span {
    color: var(--slate-600);
    font-size: 0.57rem;
}

.home-page .enterprise-photo {
    min-height: 203px;
}

.home-page .enterprise-photo::before {
    background: linear-gradient(90deg, #f8fbfa 0%, rgba(248, 251, 250, 0.86) 15%, transparent 42%);
}

.home-page .enterprise-photo img {
    object-position: 70% center;
}

.home-page .process-section {
    min-height: 253px;
    padding-block: 23px 24px;
}

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

.home-page .process-section .section-heading h2 {
    margin-bottom: 0;
    font-size: 1.34rem;
}

.home-page .process-section .section-heading h2 span {
    color: var(--green-600);
}

.home-page .process-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.home-page .process-grid::before {
    top: 24px;
}

.home-page .step-number {
    width: 25px;
    height: 25px;
    margin-bottom: 8px;
    border-width: 3px;
    font-size: 0.56rem;
}

.home-page .step-icon {
    width: 53px;
    height: 53px;
    margin-bottom: 9px;
}

.home-page .step-icon img {
    width: 24px;
}

.home-page .process-step h3 {
    margin-bottom: 3px;
    font-size: 0.75rem;
}

.home-page .process-step p {
    font-size: 0.6rem;
    line-height: 1.45;
}

.home-page .cases-section {
    min-height: 266px;
    padding-block: 10px 24px;
    background: var(--white);
}

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

.home-page .cases-section .section-heading h2 {
    margin-bottom: 0;
    font-size: 1.34rem;
}

.home-page .case-grid {
    gap: 17px;
}

.home-page .case-card {
    border-radius: 7px;
    box-shadow: none;
}

.home-page .case-image {
    aspect-ratio: 1.98 / 1;
}

.home-page .case-image span {
    top: 8px;
    left: 8px;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.51rem;
}

.home-page .case-copy {
    padding: 10px 11px 9px;
}

.home-page .case-copy h3 {
    margin-bottom: 3px;
    font-size: 0.76rem;
}

.home-page .case-copy p {
    margin-bottom: 5px;
    font-size: 0.59rem;
    line-height: 1.5;
}

.home-page .case-copy ul {
    gap: 4px;
}

.home-page .case-copy li {
    padding: 2px 5px;
    font-size: 0.51rem;
}

.home-page .faq-section {
    min-height: 171px;
    padding-block: 9px 11px;
}

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

.home-page .faq-section .section-heading h2 {
    margin-bottom: 0;
    font-size: 1.34rem;
}

.home-page .faq-home-grid {
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    gap: 14px;
}

.home-page .faq-list {
    overflow: hidden;
    border: 1px solid var(--slate-200);
    border-radius: 7px;
    counter-reset: home-faq;
}

.home-page .faq-list details:last-child {
    border-bottom: 0;
}

.home-page .faq-list details {
    counter-increment: home-faq;
}

.home-page .faq-list summary {
    min-height: 24px;
    padding: 3px 11px;
    gap: 10px;
    font-size: 0.61rem;
}

.home-page .faq-list summary span {
    display: flex;
    align-items: center;
}

.home-page .faq-list summary span::before {
    display: inline-flex;
    justify-content: center;
    width: 18px;
    margin-right: 5px;
    color: var(--green-700);
    content: counter(home-faq) ".";
    font-weight: 850;
}

.home-page .faq-list summary img {
    width: 12px;
}

.home-page .faq-list details p {
    padding: 0 24px 7px 11px;
    font-size: 0.57rem;
    line-height: 1.45;
}

.home-page .security-note {
    position: relative;
    min-height: 126px;
    padding: 16px 25px;
    margin-top: 0;
    gap: 17px;
    background: var(--white);
    border-color: var(--slate-200);
    border-radius: 7px;
}

.home-page .security-note > img {
    display: none;
}

.home-page .security-note::before {
    flex: 0 0 auto;
    width: 51px;
    height: 51px;
    background: var(--slate-100);
    border-radius: 50%;
    content: "";
}

.home-page .security-note::after {
    position: absolute;
    top: 50%;
    left: 39px;
    width: 23px;
    height: 23px;
    background: var(--green-600);
    content: "";
    transform: translateY(-50%);
    -webkit-mask: url("../icons/shield-check.svg") center / contain no-repeat;
    mask: url("../icons/shield-check.svg") center / contain no-repeat;
}

.home-page .security-note strong {
    font-size: 0.68rem;
}

.home-page .security-note span {
    margin-top: 4px;
    font-size: 0.59rem;
    line-height: 1.55;
}

.home-page .quote-section {
    min-height: 218px;
    padding-block: 20px 16px;
}

.home-page .quote-layout {
    grid-template-columns: 0.72fr 1.28fr;
    align-items: start;
    gap: 36px;
}

.home-page .quote-copy {
    position: relative;
    overflow: hidden;
    padding: 14px 16px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.home-page .quote-copy::after {
    position: absolute;
    top: -58px;
    right: -52px;
    width: 145px;
    height: 145px;
    background: radial-gradient(circle, rgba(24, 167, 111, 0.22), transparent 67%);
    content: "";
    pointer-events: none;
}

.home-page .quote-copy > * {
    position: relative;
    z-index: 1;
}

.home-page .quote-copy > .eyebrow {
    margin-bottom: 5px;
    color: #85e2bb;
    font-size: 0.5rem;
}

.home-page .quote-copy h2 {
    margin-bottom: 6px;
    font-size: 1.17rem;
    line-height: 1.25;
}

.home-page .quote-copy > p {
    margin-bottom: 8px;
    font-size: 0.62rem;
    line-height: 1.55;
}

.home-page .quote-direct-contact {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    align-items: center;
    min-height: 41px;
    padding: 6px 9px;
    gap: 8px;
    color: var(--white);
    background: rgba(5, 22, 39, 0.34);
    border: 1px solid rgba(133, 226, 187, 0.2);
    border-radius: 6px;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.home-page .quote-direct-contact:hover {
    background: rgba(24, 167, 111, 0.16);
    border-color: rgba(133, 226, 187, 0.5);
    transform: translateY(-1px);
}

.home-page .quote-direct-contact > img {
    width: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.88;
}

.home-page .quote-direct-contact > span {
    display: flex;
    flex-direction: column;
}

.home-page .quote-direct-contact small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.49rem;
}

.home-page .quote-direct-contact strong {
    font-size: 0.69rem;
    letter-spacing: 0.02em;
}

.home-page .quote-direct-contact em {
    color: #8ee2ba;
    font-size: 0.5rem;
    font-style: normal;
}

.home-page .quote-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 8px;
    gap: 6px;
}

.home-page .quote-features > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    min-width: 0;
    padding: 6px;
    gap: 4px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    text-align: center;
}

.home-page .quote-features img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.home-page .quote-features span {
    align-items: center;
    justify-content: center;
    min-width: 0;
    gap: 1px;
}

.home-page .quote-features strong {
    font-size: 0.58rem;
    line-height: 1.25;
    white-space: nowrap;
}

.home-page .quote-features small {
    font-size: 0.48rem;
    line-height: 1.25;
    white-space: nowrap;
}

.home-page .quote-form-shell {
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.home-page .quote-form--compact .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
}

.home-page .quote-form--compact .field {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 6px;
}

.home-page .quote-form--compact .field-name {
    order: 1;
}

.home-page .quote-form--compact .field-contact {
    order: 2;
}

.home-page .quote-form--compact .field-company {
    order: 3;
}

.home-page .quote-form--compact .field-quantity {
    order: 4;
}

.home-page .quote-form--compact .field-category {
    order: 5;
}

.home-page .quote-form--compact .field-details {
    order: 6;
}

.home-page .quote-form--compact .field > span:first-child {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.57rem;
    white-space: nowrap;
}

.home-page .quote-form--compact .field input,
.home-page .quote-form--compact .field select,
.home-page .quote-form--compact .field textarea {
    height: 31px;
    min-height: 31px;
    padding: 0 9px;
    background: var(--white);
    border: 0;
    border-radius: 3px;
    font-size: 0.58rem;
}

.home-page .quote-form--compact .field textarea {
    padding-top: 7px;
    resize: none;
}

.home-page .quote-form--compact .consent {
    margin: 7px 0 6px 60px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.51rem;
    line-height: 1.35;
}

.home-page .quote-form--compact .consent input {
    margin-top: 1px;
}

.home-page .quote-form--compact .consent a {
    color: #8ee2ba;
}

.home-page .quote-form--compact .button-submit {
    min-height: 35px;
    margin-left: 60px;
    width: calc(100% - 60px);
    border-radius: 4px;
    font-size: 0.68rem;
}

.home-page .quote-form--compact .form-status {
    min-height: 10px;
    margin: 2px 0 0 60px;
    font-size: 0.55rem;
    text-align: left;
}

@media (max-width: 820px) {
    .home-page .container {
        width: min(100% - 32px, var(--container));
    }

    .home-page .site-header,
    .home-page .nav-shell {
        min-height: 64px;
    }

    .home-page .site-header {
        height: 64px;
    }

    .home-page .hero,
    .home-page .hero-shell {
        min-height: 0;
    }

    .home-page .hero-shell {
        display: grid;
        padding-block: 42px;
    }

    .home-page .hero-copy {
        width: 100%;
        max-width: none;
        padding-top: 0;
    }

    .home-page .hero-copy h1 {
        font-size: clamp(2.45rem, 11vw, 3.7rem);
        white-space: normal;
    }

    .home-page .hero-lead {
        white-space: normal;
    }

    .home-page .trust-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-page .hero-media {
        position: relative;
        right: auto;
        width: 100%;
        height: 330px;
        min-height: 330px;
        margin-top: 8px;
        border-radius: 18px;
    }

    .home-page .hero-media::after {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 34%);
    }

    .home-page .hero-media > img {
        height: 330px;
    }

    .home-page .services-section,
    .home-page .enterprise-section,
    .home-page .process-section,
    .home-page .cases-section,
    .home-page .faq-section,
    .home-page .quote-section {
        min-height: 0;
        padding-block: 50px;
    }

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

    .home-page .enterprise-card {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
    }

    .home-page .enterprise-copy {
        padding: 32px 25px;
    }

    .home-page .enterprise-photo {
        min-height: 280px;
    }

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

@media (max-width: 540px) {
    .home-page .service-grid,
    .home-page .case-grid {
        grid-template-columns: 1fr;
    }

    .home-page .quote-form--compact .form-grid {
        grid-template-columns: 1fr;
    }

    .home-page .quote-form--compact .field {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .home-page .quote-form--compact .consent,
    .home-page .quote-form--compact .button-submit,
    .home-page .quote-form--compact .form-status {
        margin-left: 78px;
    }

    .home-page .quote-form--compact .button-submit {
        width: calc(100% - 78px);
    }
}

@media (max-width: 680px) {
    body {
        padding-bottom: 65px;
        font-size: 15px;
    }

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

    .demo-bar .container {
        min-height: 37px;
    }

    .demo-bar span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .brand-copy small {
        display: none;
    }

    .brand-copy strong {
        font-size: 0.98rem;
    }

    .hero-shell {
        padding-block: 48px 44px;
    }

    .hero-copy h1 {
        font-size: clamp(2.55rem, 13vw, 3.7rem);
    }

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

    .hero-tags span {
        font-size: 0.78rem;
    }

    .hero-actions,
    .prefooter-actions {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
    }

    .hero-actions .button,
    .prefooter-actions .button {
        width: 100%;
    }

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

    .trust-row > div:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid var(--slate-200);
    }

    .hero-media {
        min-height: 390px;
        border-radius: 21px;
    }

    .hero-media > img {
        height: 390px;
        object-position: 62% center;
    }

    .section {
        padding-block: 70px;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

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

    .service-grid,
    .case-grid,
    .process-grid,
    .four-columns,
    .assurance-grid,
    .case-page-grid,
    .notes-grid {
        grid-template-columns: 1fr;
    }

    .service-card-copy {
        min-height: auto;
    }

    .enterprise-copy {
        padding: 34px 24px;
    }

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

    .benefit-grid div:nth-child(2) {
        border-right: 0;
    }

    .benefit-grid div:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .enterprise-photo {
        min-height: 300px;
    }

    .process-grid {
        gap: 32px;
    }

    .process-step {
        display: grid;
        grid-template-columns: 42px 60px 1fr;
        align-items: center;
        text-align: left;
        gap: 12px;
    }

    .step-number {
        margin: 0;
    }

    .step-icon {
        width: 58px;
        height: 58px;
        margin: 0;
    }

    .step-icon img {
        width: 25px;
    }

    .process-step h3 {
        grid-column: 3;
        grid-row: 1;
        margin: 0 0 20px;
    }

    .process-step p {
        grid-column: 3;
        grid-row: 1;
        margin-top: 38px;
    }

    .quote-section {
        padding-block: 68px;
    }

    .quote-form-shell,
    .contact-form-card {
        padding: 20px;
    }

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

    .field-full {
        grid-column: auto;
    }

    .prefooter-inner {
        min-height: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 20px;
        gap: 6px;
    }

    .floating-contact {
        display: none;
    }

    .mobile-action-bar {
        position: fixed;
        z-index: 110;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: 0.8fr 0.8fr 1.2fr;
        min-height: 65px;
        padding-bottom: env(safe-area-inset-bottom);
        background: var(--white);
        border-top: 1px solid var(--slate-200);
        box-shadow: 0 -8px 25px rgba(11, 31, 51, 0.09);
    }

    .mobile-action-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 3px;
        color: var(--slate-700);
        font-size: 0.67rem;
        font-weight: 650;
    }

    .mobile-action-bar a:not(:last-child) {
        border-right: 1px solid var(--slate-200);
    }

    .mobile-action-bar img {
        width: 20px;
    }

    .mobile-action-bar .is-primary {
        color: var(--white);
        background: var(--green-600);
    }

    .mobile-action-bar .is-primary img {
        filter: brightness(0) invert(1);
    }

    .inner-hero-layout {
        min-height: 0;
        padding-block: 55px;
    }

    .inner-hero-copy h1 {
        font-size: clamp(2.4rem, 12vw, 3.35rem);
    }

    .inner-hero-art {
        border-width: 6px;
        border-radius: 20px;
    }

    .service-detail-art {
        min-height: 290px;
    }

    .service-detail-copy {
        padding: 32px 24px;
    }

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

    .mini-label {
        top: 22px;
        right: 22px;
        font-size: 2.2rem;
    }

    .split-callout {
        gap: 30px;
    }

    .prep-grid,
    .large-prep {
        grid-template-columns: 1fr;
    }

    .prep-grid > div,
    .large-prep > div {
        border-right: 0 !important;
        border-bottom: 1px solid var(--slate-200) !important;
    }

    .prep-grid > div:last-child,
    .large-prep > div:last-child {
        border-bottom: 0 !important;
    }

    .solution-hero-card {
        padding: 26px;
    }

    .table-row {
        grid-template-columns: 1fr 1fr;
    }

    .table-row span:nth-child(3),
    .table-row span:nth-child(4) {
        border-top: 1px solid var(--slate-100);
    }

    .process-hero-visual {
        min-height: 190px;
        padding: 22px 15px;
    }

    .process-hero-visual span {
        width: 48px;
        height: 48px;
    }

    .timeline::before {
        left: 28px;
    }

    .timeline-item {
        grid-template-columns: 56px 1fr;
        padding: 22px 20px 22px 0;
        gap: 14px;
    }

    .timeline-number {
        width: 38px;
        height: 38px;
        margin-left: 10px;
    }

    .timeline-icon {
        display: none;
    }

    .timeline-copy {
        grid-column: 2;
    }

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

    .about-values > div {
        min-height: 110px;
    }

    .about-values > div:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .about-photo img {
        min-height: 320px;
    }

    .compliance-card {
        padding: 30px 24px;
        gap: 32px;
    }

    .contact-info dl > div {
        grid-template-columns: 80px 1fr;
    }
}

/*
 * Desktop homepage is proportionally locked to the 864px visual proof.
 * This keeps the complete composition identical instead of stretching the
 * cards horizontally on wider browser windows.
 */
@media (min-width: 821px) {
    .home-page .container {
        width: min(89.35vw, 1287px);
        max-width: none;
    }

    .home-page .nav-phone {
        display: none;
    }

    .home-page .site-header,
    .home-page .nav-shell {
        min-height: clamp(58px, 6.713vw, 96px);
    }

    .home-page .site-header {
        height: clamp(58px, 6.713vw, 96px);
    }

    .home-page .nav-shell {
        gap: clamp(14px, 1.62vw, 23px);
    }

    .home-page .brand {
        gap: clamp(8px, 0.926vw, 13px);
    }

    .home-page .brand-mark {
        width: clamp(36px, 4.167vw, 60px);
        height: clamp(36px, 4.167vw, 60px);
    }

    .home-page .brand-copy strong {
        font-size: clamp(0.98rem, 1.852vw, 1.66rem);
    }

    .home-page .brand-copy small {
        font-size: clamp(0.58rem, 1.076vw, 0.97rem);
    }

    .home-page .primary-nav a {
        padding-inline: clamp(8px, 0.926vw, 13px);
        font-size: clamp(0.69rem, 1.273vw, 1.14rem);
    }

    .home-page .primary-nav a::after {
        right: clamp(8px, 0.926vw, 13px);
        bottom: clamp(9px, 1.042vw, 15px);
        left: clamp(8px, 0.926vw, 13px);
        height: clamp(2px, 0.231vw, 3px);
    }

    .home-page .hero,
    .home-page .hero-shell {
        min-height: clamp(356px, 41.204vw, 593px);
    }

    .home-page .hero-copy {
        padding-top: clamp(88px, 10.185vw, 147px);
    }

    .home-page .hero-copy h1 {
        margin-bottom: clamp(10px, 1.157vw, 17px);
        font-size: clamp(1.95rem, 3.65vw, 3.3rem);
    }

    .home-page .hero-lead {
        margin-bottom: clamp(20px, 2.315vw, 33px);
        font-size: clamp(0.78rem, 1.447vw, 1.3rem);
    }

    .home-page .hero-actions {
        gap: clamp(12px, 1.389vw, 20px);
    }

    .home-page .hero-actions .button {
        min-height: clamp(36px, 4.167vw, 60px);
        padding-inline: clamp(17px, 1.968vw, 28px);
        gap: clamp(7px, 0.81vw, 12px);
        border-radius: clamp(9px, 1.042vw, 15px);
        font-size: clamp(0.76rem, 1.412vw, 1.27rem);
    }

    .home-page .hero-actions .button img {
        width: clamp(16px, 1.852vw, 27px);
        height: clamp(16px, 1.852vw, 27px);
    }

    .home-page .trust-row {
        margin-top: clamp(25px, 2.894vw, 42px);
        border-radius: clamp(8px, 0.926vw, 13px);
    }

    .home-page .trust-row > div {
        padding: clamp(8px, 0.926vw, 13px) clamp(7px, 0.81vw, 12px);
        gap: clamp(7px, 0.81vw, 12px);
    }

    .home-page .trust-row img {
        width: clamp(19px, 2.199vw, 32px);
    }

    .home-page .trust-row strong {
        font-size: clamp(0.67rem, 1.241vw, 1.12rem);
    }

    .home-page .trust-row small {
        font-size: clamp(0.56rem, 1.037vw, 0.93rem);
    }

    .home-page .hero-media {
        width: 62%;
        height: clamp(356px, 41.204vw, 593px);
        min-height: clamp(356px, 41.204vw, 593px);
    }

    .home-page .hero-media > img {
        height: clamp(356px, 41.204vw, 593px);
    }

    .home-page .services-section {
        min-height: clamp(265px, 30.671vw, 442px);
        padding-block: clamp(34px, 3.935vw, 57px) clamp(32px, 3.704vw, 53px);
    }

    .home-page .service-grid {
        gap: clamp(17px, 1.968vw, 28px);
    }

    .home-page .service-card {
        border-radius: clamp(10px, 1.157vw, 17px);
    }

    .home-page .service-card-copy {
        min-height: clamp(86px, 9.954vw, 143px);
        padding: clamp(15px, 1.736vw, 25px) clamp(12px, 1.389vw, 20px) clamp(10px, 1.157vw, 17px);
        gap: clamp(9px, 1.042vw, 15px);
    }

    .home-page .service-icon {
        width: clamp(31px, 3.588vw, 52px);
        height: clamp(31px, 3.588vw, 52px);
        border-radius: clamp(7px, 0.81vw, 12px);
    }

    .home-page .service-icon img {
        width: clamp(19px, 2.199vw, 32px);
    }

    .home-page .service-card h3 {
        margin-bottom: clamp(5px, 0.579vw, 8px);
        font-size: clamp(0.93rem, 1.722vw, 1.55rem);
    }

    .home-page .service-card p {
        font-size: clamp(0.64rem, 1.185vw, 1.07rem);
    }

    .home-page .enterprise-section,
    .home-page .enterprise-card {
        min-height: clamp(203px, 23.495vw, 338px);
    }

    .home-page .enterprise-card {
        height: clamp(203px, 23.495vw, 338px);
        border-radius: clamp(11px, 1.273vw, 18px);
    }

    .home-page .enterprise-copy {
        padding: clamp(20px, 2.315vw, 33px) clamp(22px, 2.546vw, 37px);
    }

    .home-page .enterprise-copy > .eyebrow {
        margin-bottom: clamp(4px, 0.463vw, 7px);
        font-size: clamp(0.93rem, 1.722vw, 1.55rem);
    }

    .home-page .enterprise-copy h2 {
        margin-bottom: clamp(11px, 1.273vw, 18px);
        font-size: clamp(1.23rem, 2.278vw, 2.05rem);
    }

    .home-page .benefit-grid {
        border-radius: clamp(8px, 0.926vw, 13px);
    }

    .home-page .benefit-grid div {
        min-height: clamp(82px, 9.491vw, 137px);
        padding: clamp(10px, 1.157vw, 17px) clamp(5px, 0.579vw, 8px) clamp(8px, 0.926vw, 13px);
    }

    .home-page .benefit-grid img {
        width: clamp(23px, 2.662vw, 38px);
        margin-bottom: clamp(4px, 0.463vw, 7px);
    }

    .home-page .benefit-grid strong {
        font-size: clamp(0.67rem, 1.241vw, 1.12rem);
    }

    .home-page .benefit-grid span {
        font-size: clamp(0.57rem, 1.056vw, 0.95rem);
    }

    .home-page .enterprise-photo {
        min-height: clamp(203px, 23.495vw, 338px);
    }

    .home-page .process-section {
        min-height: clamp(253px, 29.282vw, 422px);
        padding-block: clamp(23px, 2.662vw, 38px) clamp(24px, 2.778vw, 40px);
    }

    .home-page .process-section .section-heading {
        margin-bottom: clamp(13px, 1.505vw, 22px);
    }

    .home-page .process-section .section-heading h2,
    .home-page .cases-section .section-heading h2,
    .home-page .faq-section .section-heading h2 {
        font-size: clamp(1.34rem, 2.481vw, 2.23rem);
    }

    .home-page .process-grid {
        gap: clamp(12px, 1.389vw, 20px);
    }

    .home-page .process-grid::before {
        top: clamp(24px, 2.778vw, 40px);
    }

    .home-page .step-number {
        width: clamp(25px, 2.894vw, 42px);
        height: clamp(25px, 2.894vw, 42px);
        margin-bottom: clamp(8px, 0.926vw, 13px);
        border-width: clamp(3px, 0.347vw, 5px);
        font-size: clamp(0.56rem, 1.037vw, 0.93rem);
    }

    .home-page .step-icon {
        width: clamp(53px, 6.134vw, 88px);
        height: clamp(53px, 6.134vw, 88px);
        margin-bottom: clamp(9px, 1.042vw, 15px);
    }

    .home-page .step-icon img {
        width: clamp(24px, 2.778vw, 40px);
    }

    .home-page .process-step h3 {
        margin-bottom: clamp(3px, 0.347vw, 5px);
        font-size: clamp(0.75rem, 1.389vw, 1.25rem);
    }

    .home-page .process-step p {
        font-size: clamp(0.6rem, 1.111vw, 1rem);
    }

    .home-page .cases-section {
        min-height: clamp(266px, 30.787vw, 443px);
        padding-block: clamp(10px, 1.157vw, 17px) clamp(24px, 2.778vw, 40px);
    }

    .home-page .cases-section .section-heading {
        margin-bottom: clamp(10px, 1.157vw, 17px);
    }

    .home-page .case-grid {
        gap: clamp(17px, 1.968vw, 28px);
    }

    .home-page .case-card {
        border-radius: clamp(7px, 0.81vw, 12px);
    }

    .home-page .case-image span {
        top: clamp(8px, 0.926vw, 13px);
        left: clamp(8px, 0.926vw, 13px);
        padding: clamp(2px, 0.231vw, 3px) clamp(6px, 0.694vw, 10px);
        border-radius: clamp(4px, 0.463vw, 7px);
        font-size: clamp(0.51rem, 0.944vw, 0.85rem);
    }

    .home-page .case-copy {
        padding: clamp(10px, 1.157vw, 17px) clamp(11px, 1.273vw, 18px) clamp(9px, 1.042vw, 15px);
    }

    .home-page .case-copy h3 {
        margin-bottom: clamp(3px, 0.347vw, 5px);
        font-size: clamp(0.76rem, 1.407vw, 1.27rem);
    }

    .home-page .case-copy p {
        margin-bottom: clamp(5px, 0.579vw, 8px);
        font-size: clamp(0.59rem, 1.093vw, 0.98rem);
    }

    .home-page .case-copy ul {
        gap: clamp(4px, 0.463vw, 7px);
    }

    .home-page .case-copy li {
        padding: clamp(2px, 0.231vw, 3px) clamp(5px, 0.579vw, 8px);
        font-size: clamp(0.51rem, 0.944vw, 0.85rem);
    }

    .home-page .faq-section {
        min-height: clamp(171px, 19.792vw, 285px);
        padding-block: clamp(9px, 1.042vw, 15px) clamp(11px, 1.273vw, 18px);
    }

    .home-page .faq-section .section-heading {
        margin-bottom: clamp(8px, 0.926vw, 13px);
    }

    .home-page .faq-home-grid {
        gap: clamp(14px, 1.62vw, 23px);
    }

    .home-page .faq-list {
        border-radius: clamp(7px, 0.81vw, 12px);
    }

    .home-page .faq-list summary {
        min-height: clamp(24px, 2.778vw, 40px);
        padding: clamp(3px, 0.347vw, 5px) clamp(11px, 1.273vw, 18px);
        font-size: clamp(0.61rem, 1.13vw, 1.02rem);
    }

    .home-page .faq-list summary img {
        width: clamp(12px, 1.389vw, 20px);
    }

    .home-page .faq-list details p {
        padding: 0 clamp(24px, 2.778vw, 40px) clamp(7px, 0.81vw, 12px) clamp(11px, 1.273vw, 18px);
        font-size: clamp(0.57rem, 1.056vw, 0.95rem);
    }

    .home-page .security-note {
        min-height: clamp(126px, 14.583vw, 210px);
        padding: clamp(16px, 1.852vw, 27px) clamp(25px, 2.894vw, 42px);
        gap: clamp(17px, 1.968vw, 28px);
        border-radius: clamp(7px, 0.81vw, 12px);
    }

    .home-page .security-note > img {
        display: none;
    }

    .home-page .security-note::before {
        width: clamp(51px, 5.903vw, 85px);
        height: clamp(51px, 5.903vw, 85px);
    }

    .home-page .security-note::after {
        left: clamp(39px, 4.514vw, 65px);
        width: clamp(23px, 2.662vw, 38px);
        height: clamp(23px, 2.662vw, 38px);
    }

    .home-page .security-note strong {
        font-size: clamp(0.68rem, 1.259vw, 1.13rem);
    }

    .home-page .security-note span {
        margin-top: clamp(4px, 0.463vw, 7px);
        font-size: clamp(0.59rem, 1.093vw, 0.98rem);
    }

    .home-page .quote-section {
        min-height: clamp(218px, 25.231vw, 363px);
        padding-block: clamp(20px, 2.315vw, 33px) clamp(16px, 1.852vw, 27px);
    }

    .home-page .quote-layout {
        gap: clamp(36px, 4.167vw, 60px);
    }

    .home-page .quote-copy {
        padding: clamp(14px, 1.62vw, 23px) clamp(16px, 1.852vw, 27px);
        border-radius: clamp(8px, 0.926vw, 13px);
    }

    .home-page .quote-copy > .eyebrow {
        margin-bottom: clamp(5px, 0.579vw, 8px);
        font-size: clamp(0.5rem, 0.926vw, 0.83rem);
    }

    .home-page .quote-copy h2 {
        margin-bottom: clamp(6px, 0.694vw, 10px);
        font-size: clamp(1.17rem, 2.167vw, 1.95rem);
    }

    .home-page .quote-copy > p {
        margin-bottom: clamp(8px, 0.926vw, 13px);
        font-size: clamp(0.62rem, 1.148vw, 1.03rem);
    }

    .home-page .quote-direct-contact {
        grid-template-columns: clamp(22px, 2.546vw, 37px) minmax(0, 1fr) auto;
        min-height: clamp(41px, 4.745vw, 68px);
        padding: clamp(6px, 0.694vw, 10px) clamp(9px, 1.042vw, 15px);
        gap: clamp(8px, 0.926vw, 13px);
        border-radius: clamp(6px, 0.694vw, 10px);
    }

    .home-page .quote-direct-contact > img {
        width: clamp(20px, 2.315vw, 33px);
    }

    .home-page .quote-direct-contact small {
        font-size: clamp(0.49rem, 0.907vw, 0.82rem);
    }

    .home-page .quote-direct-contact strong {
        font-size: clamp(0.69rem, 1.278vw, 1.15rem);
    }

    .home-page .quote-direct-contact em {
        font-size: clamp(0.5rem, 0.926vw, 0.83rem);
    }

    .home-page .quote-features {
        margin-top: clamp(8px, 0.926vw, 13px);
        gap: clamp(8px, 0.926vw, 13px) clamp(13px, 1.505vw, 22px);
    }

    .home-page .quote-features > div {
        min-height: clamp(60px, 5.208vw, 80px);
        padding: clamp(6px, 0.694vw, 10px);
        gap: clamp(4px, 0.463vw, 7px);
        border-radius: clamp(6px, 0.694vw, 10px);
    }

    .home-page .quote-features img {
        width: clamp(18px, 1.806vw, 26px);
        height: clamp(18px, 1.806vw, 26px);
    }

    .home-page .quote-features strong {
        font-size: clamp(0.58rem, 1.074vw, 0.97rem);
    }

    .home-page .quote-features small {
        font-size: clamp(0.48rem, 0.889vw, 0.8rem);
    }

    .home-page .quote-form--compact .form-grid {
        gap: clamp(8px, 0.926vw, 13px) clamp(12px, 1.389vw, 20px);
    }

    .home-page .quote-form--compact .field {
        grid-template-columns: clamp(54px, 6.25vw, 90px) minmax(0, 1fr);
        gap: clamp(6px, 0.694vw, 10px);
    }

    .home-page .quote-form--compact .field > span:first-child {
        font-size: clamp(0.57rem, 1.056vw, 0.95rem);
    }

    .home-page .quote-form--compact .field input,
    .home-page .quote-form--compact .field select,
    .home-page .quote-form--compact .field textarea {
        height: clamp(31px, 3.588vw, 52px);
        min-height: clamp(31px, 3.588vw, 52px);
        padding-inline: clamp(9px, 1.042vw, 15px);
        border-radius: clamp(3px, 0.347vw, 5px);
        font-size: clamp(0.58rem, 1.074vw, 0.97rem);
    }

    .home-page .quote-form--compact .field textarea {
        padding-top: clamp(7px, 0.81vw, 12px);
    }

    .home-page .quote-form--compact .consent {
        margin: clamp(7px, 0.81vw, 12px) 0 clamp(6px, 0.694vw, 10px) clamp(60px, 6.944vw, 100px);
        font-size: clamp(0.51rem, 0.944vw, 0.85rem);
    }

    .home-page .quote-form--compact .button-submit {
        width: calc(100% - clamp(60px, 6.944vw, 100px));
        min-height: clamp(35px, 4.051vw, 58px);
        margin-left: clamp(60px, 6.944vw, 100px);
        border-radius: clamp(4px, 0.463vw, 7px);
        font-size: clamp(0.68rem, 1.259vw, 1.13rem);
    }

    .home-page .quote-form--compact .form-status {
        min-height: clamp(10px, 1.157vw, 17px);
        margin: clamp(2px, 0.231vw, 3px) 0 0 clamp(60px, 6.944vw, 100px);
        font-size: clamp(0.55rem, 1.019vw, 0.92rem);
    }
}

@media (min-width: 1100px) {
    .home-page .faq-list summary {
        min-height: 44px;
        padding: 7px 18px;
        font-size: 1.03rem;
        line-height: 1.4;
    }

    .home-page .faq-list summary span::before {
        width: 23px;
        margin-right: 7px;
    }

    .home-page .faq-list details p {
        padding: 2px 42px 14px 48px;
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .home-page .security-note {
        min-height: 220px;
        padding-inline: 38px;
        gap: 24px;
    }

    .home-page .security-note strong {
        font-size: 1.08rem;
        line-height: 1.45;
    }

    .home-page .security-note span {
        margin-top: 7px;
        font-size: 0.94rem;
        line-height: 1.7;
    }
}

/* Standalone FAQ page */
.faq-hero-card {
    position: relative;
    padding: 38px;
    color: var(--white);
    background:
        radial-gradient(circle at 88% 12%, rgba(22, 119, 255, 0.25), transparent 34%),
        linear-gradient(145deg, var(--navy-950), var(--navy-800));
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.faq-hero-card .mini-label {
    top: 30px;
    right: 30px;
    color: #a9ebcf;
    background: rgba(255, 255, 255, 0.1);
}

.faq-hero-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    background: rgba(84, 211, 158, 0.13);
    border: 1px solid rgba(84, 211, 158, 0.24);
    border-radius: 17px;
}

.faq-hero-icon img {
    width: 29px;
    filter: brightness(0) invert(1);
}

.faq-hero-card h2 {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 1.75rem;
}

.faq-hero-card > p {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.68);
}

.faq-hero-card > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.faq-hero-card > div > a,
.faq-hero-card > div > span {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    gap: 9px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    font-size: 0.79rem;
    font-weight: 700;
}

.faq-hero-card > div img {
    width: 19px;
    filter: brightness(0) invert(1);
}

.faq-page-section {
    background: var(--slate-50);
}

.faq-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 24px;
}

.faq-category-card {
    padding: 28px 30px 10px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(11, 31, 51, 0.05);
}

.faq-category-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.faq-category-heading h2 {
    margin-bottom: 0;
    font-size: 1.35rem;
}

.faq-category-card .faq-list {
    margin-top: 18px;
    border-top: 1px solid var(--slate-200);
}

.faq-category-card .faq-list summary {
    padding: 17px 0;
    font-size: 0.95rem;
}

.faq-category-card .faq-list details p {
    padding: 0 30px 18px 0;
    font-size: 0.86rem;
}

.faq-category-card .faq-list details:last-child {
    border-bottom: 0;
}

.faq-page-note {
    display: flex;
    align-items: flex-start;
    max-width: 920px;
    padding: 19px 22px;
    margin: 28px auto 0;
    gap: 12px;
    background: var(--blue-100);
    border: 1px solid #d8e8fb;
    border-radius: 13px;
}

.faq-page-note img {
    flex: 0 0 auto;
    width: 22px;
    margin-top: 2px;
    filter: brightness(0) saturate(100%) invert(41%) sepia(79%) saturate(3969%) hue-rotate(208deg) brightness(103%) contrast(101%);
}

.faq-page-note p {
    margin-bottom: 0;
    font-size: 0.84rem;
}

@media (max-width: 820px) {
    .faq-hero-card {
        padding: 30px 24px;
    }

    .faq-category-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .faq-hero-card > div {
        grid-template-columns: 1fr;
    }

    .faq-category-card {
        padding: 24px 20px 8px;
    }
}

/* Click-to-view contact details */
.contact-trigger-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.contact-popover[hidden] {
    display: none;
}

.contact-popover {
    z-index: 130;
    color: var(--navy-900);
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 14px;
    box-shadow: 0 18px 48px rgba(11, 31, 51, 0.18);
}

.contact-popover-phone {
    position: absolute;
    top: 50%;
    left: calc(100% + 12px);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    min-width: 190px;
    padding: 14px 16px;
    transform: translateY(-50%);
}

.contact-popover-phone::before {
    position: absolute;
    top: 50%;
    left: -7px;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
    border-left: 1px solid var(--slate-200);
    content: "";
    transform: translateY(-50%) rotate(45deg);
}

.contact-popover-phone small,
.contact-popover-floating-phone small {
    color: var(--slate-500);
    font-size: 0.68rem;
}

.contact-popover-phone > a,
.contact-popover-floating-phone > a {
    margin-top: 3px;
    color: var(--green-700);
    font-size: 1.08rem;
    font-weight: 850;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.contact-popover-phone > span,
.contact-popover-floating-phone > span {
    margin-top: 4px;
    color: var(--slate-500);
    font-size: 0.67rem;
}

.contact-popover-floating-phone {
    position: absolute;
    top: 0;
    right: calc(100% + 14px);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    min-width: 190px;
    padding: 14px 16px;
}

.contact-popover-floating-phone::after {
    position: absolute;
    top: 25px;
    right: -7px;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-top: 1px solid var(--slate-200);
    border-right: 1px solid var(--slate-200);
    content: "";
    transform: rotate(45deg);
}

.floating-contact > a:first-child {
    border-radius: 12px 12px 0 0;
}

.floating-contact > .back-to-top {
    border-radius: 0 0 12px 12px;
}

.contact-popover-wechat {
    position: absolute;
    right: calc(100% + 14px);
    bottom: 22px;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 224px;
    padding: 18px 18px 16px;
}

.contact-popover-wechat::after {
    position: absolute;
    right: -7px;
    bottom: 54px;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-top: 1px solid var(--slate-200);
    border-right: 1px solid var(--slate-200);
    content: "";
    transform: rotate(45deg);
}

.contact-popover-wechat strong {
    font-size: 0.98rem;
}

.contact-popover-wechat .wechat-qr {
    width: 164px;
    height: 164px;
    margin: 11px 0 8px;
    padding: 7px;
    object-fit: contain;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 10px;
    filter: none;
}

.contact-popover-wechat > span {
    color: var(--green-700);
    font-size: 0.8rem;
    font-weight: 800;
}

.contact-popover-wechat > small {
    margin-top: 5px;
    color: var(--slate-500);
    font-size: 0.65rem;
    line-height: 1.5;
    text-align: center;
}

.contact-popover-wechat .contact-popover-close {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 27px;
    min-height: 27px;
    padding: 0;
    color: var(--slate-500);
    background: var(--slate-50);
    border: 0;
    border-radius: 50%;
    font-size: 1.1rem;
    line-height: 1;
}

@media (max-width: 820px) {
    .hero-phone-wrap {
        flex: 1 1 auto;
    }

    .hero-phone-wrap .button {
        width: 100%;
    }
}
