:root {
    --site-brand: #4b72be;
    --site-brand-dark: #283b63;
    --site-brand-hover: #3f60a2;
    --site-mist: #f8f9fb;
    --site-panel: #f8f9fb;
    --home-section-tint: #f8f9fb;
    --site-ink: #333333;
    --site-muted: #555555;
    --site-line: #e5e8ee;
    --site-charcoal: #252a31;
    --site-radius: 12px;
    --type-leading-copy: 1.7;
    --type-leading-long: 1.75;
    --type-tracking-display: -0.028em;
    --type-tracking-title: -0.02em;
    --type-tracking-kicker: 0.1em;
    color-scheme: light;
}

html {
    max-width: 100%;
    overflow-x: hidden;
    scroll-padding-top: 8rem;
    scroll-behavior: auto;
}

body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
    color: var(--site-ink);
    background: #ffffff;
    word-break: keep-all;
    overflow-wrap: break-word;
    font-kerning: normal;
    text-rendering: optimizeLegibility;
}

.bg-mist {
    background-color: var(--site-mist);
}

/* Content bands: white, gray, white, gray… starting at the first section. */
main > section:nth-child(odd),
main > article > :nth-child(odd) {
    background-color: #ffffff;
}

main > section:nth-child(even),
main > article > :nth-child(even) {
    background-color: var(--site-mist);
}

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

button,
[type="button"],
[type="submit"] {
    cursor: pointer;
}

img,
svg {
    flex-shrink: 0;
}

::selection {
    color: #ffffff;
    background: var(--site-brand);
}

:where(a, button, input, select, textarea, summary):focus-visible {
    outline: 3px solid rgba(75, 114, 190, 0.36);
    outline-offset: 3px;
}

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

.site-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    border-radius: 6px;
    color: #ffffff;
    background: var(--site-brand-dark);
    font-size: 1rem;
    font-weight: 700;
    transform: translateY(-160%);
}

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

/* Shared public-page primitives */
.page-hero {
    padding-block: clamp(56px, 7vw, 88px);
    border-bottom: 1px solid #e5e8ee;
    background: var(--site-mist);
}

.page-heading {
    color: var(--site-brand-dark);
    font-size: clamp(2.25rem, 4.4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: var(--type-tracking-display);
    text-wrap: balance;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--site-brand);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: var(--type-tracking-kicker);
    text-transform: uppercase;
}

.section-kicker::before {
    width: 26px;
    height: 2px;
    background: currentColor;
    content: "";
}

.community-tab-button {
    white-space: nowrap;
}

.section-title {
    color: var(--site-brand-dark);
    font-size: clamp(1.875rem, 3.5vw, 2.625rem);
    font-weight: 700;
    line-height: 1.32;
    letter-spacing: var(--type-tracking-title);
    text-wrap: balance;
}

.section-lead {
    max-width: 760px;
    color: var(--site-muted);
    font-size: clamp(1.125rem, 1.9vw, 1.25rem);
    line-height: var(--type-leading-copy);
    letter-spacing: -0.01em;
    text-wrap: pretty;
}

.section-space {
    padding-block: clamp(56px, 7vw, 88px);
}

.surface-card {
    border: 1px solid #e1e5eb;
    border-radius: var(--site-radius);
    background: #ffffff;
    box-shadow: 0 8px 26px rgba(31, 45, 70, 0.055);
}

/* Compact, portrait-ready representative and service compositions. */
.about-hero-grid {
    display: grid;
    align-items: center;
    gap: clamp(36px, 6vw, 80px);
}

.about-hero-lead {
    max-width: 690px;
    line-height: var(--type-leading-copy);
    letter-spacing: -0.01em;
    text-wrap: pretty;
}

.about-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
}

.about-hero-proof li {
    padding: 9px 13px;
    border: 1px solid #d8dfeb;
    border-radius: 999px;
    color: var(--site-brand-dark);
    background: #f7f9fc;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}

.about-portrait-frame,
.home-representative-visual {
    position: relative;
    overflow: hidden;
    margin: 0;
    color: #ffffff;
    background: #e8edf4;
}

.about-portrait-frame {
    min-height: 420px;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
}

.about-portrait-frame img,
.home-representative-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 18%;
}

.about-portrait-frame::after,
.home-representative-visual::after {
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(180deg, transparent, rgba(20, 32, 55, 0.88));
    content: "";
}

.about-portrait-frame figcaption,
.home-representative-visual figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: grid;
    gap: 4px;
    padding: 24px;
}

.about-portrait-frame figcaption strong,
.home-representative-visual figcaption strong {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.35;
}

.about-portrait-frame figcaption span,
.home-representative-visual figcaption span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.5;
}

.home-representative-card {
    border-radius: 12px;
}

.home-representative-visual {
    height: 100%;
    min-height: 460px;
}

.home-representative-work-image {
    object-position: 50% 50%;
}

.home-representative-visual::after {
    inset: 55% 0 0;
}

.representative-trust {
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    align-items: stretch;
    overflow: hidden;
    border: 1px solid #dfe4ec;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(31, 45, 70, 0.07);
}

.representative-trust__portrait {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    margin: 0;
    color: #ffffff;
    background: #e8edf4;
}

.representative-trust__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 15%;
}

.representative-trust__portrait::after {
    position: absolute;
    inset: 46% 0 0;
    background: linear-gradient(180deg, transparent, rgba(20, 32, 55, 0.9));
    content: "";
}

.representative-trust__person {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: grid;
    gap: 3px;
    padding: 22px;
}

.representative-trust__person strong {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
}

.representative-trust__person span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.55;
}

.representative-trust__body {
    align-self: center;
    min-width: 0;
    padding: clamp(28px, 4vw, 48px);
}

.representative-trust__title {
    margin-top: 1rem;
    color: var(--site-brand-dark);
    font-size: clamp(1.625rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.34;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.representative-trust__copy {
    max-width: 720px;
    margin-top: 1.1rem;
    color: var(--site-muted);
    font-size: 1.0625rem;
    line-height: 1.75;
    letter-spacing: -0.01em;
    text-wrap: pretty;
}

.representative-trust__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 1.4rem;
}

.representative-trust__proof li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--site-brand-dark);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.55;
}

.representative-trust__actions {
    margin-top: 1.75rem;
}

.representative-trust--compact {
    grid-template-columns: minmax(170px, 210px) minmax(0, 1fr);
}

.representative-trust--compact .representative-trust__portrait {
    min-height: 270px;
}

.representative-trust--compact .representative-trust__body {
    padding: clamp(24px, 3vw, 36px);
}

.representative-trust--compact .representative-trust__title {
    font-size: clamp(1.375rem, 2.4vw, 1.75rem);
}

.representative-trust--compact .representative-trust__copy {
    margin-top: 0.85rem;
    font-size: 1rem;
    line-height: 1.7;
}

.consult-representative {
    position: relative;
    height: 260px;
    overflow: hidden;
    margin: 0;
    background: #e8edf4;
}

.consult-representative img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 15%;
}

.consult-representative::after {
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(180deg, transparent, rgba(20, 32, 55, 0.92));
    content: "";
}

.consult-representative figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: grid;
    gap: 4px;
    padding: 22px;
    color: #fff;
    text-shadow: 0 1px 3px rgba(9, 18, 34, 0.72);
}

.consult-representative strong {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.35;
}

.consult-representative span {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.55;
}

.visit-representative {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: center;
    column-gap: 16px;
    row-gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--site-line);
}

.visit-representative img {
    width: 88px;
    height: 108px;
    border-radius: 8px;
    object-fit: cover;
    object-position: 50% 13%;
}

.visit-representative strong,
.visit-representative p {
    display: block;
    font-size: 1rem;
    line-height: 1.6;
}

.visit-representative strong {
    color: var(--site-brand-dark);
}

.visit-representative p {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--site-muted);
}

@media (max-width: 639.98px) {
    .representative-trust {
        grid-template-columns: minmax(0, 1fr);
    }

    .representative-trust__portrait {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .representative-trust__image {
        object-position: 50% 15%;
    }

    .representative-trust__body {
        padding: 24px 22px;
    }

    .representative-trust__title {
        margin-top: 0.85rem;
        font-size: 1.625rem;
        line-height: 1.38;
    }

    .representative-trust__copy {
        margin-top: 0.9rem;
        line-height: 1.68;
    }

    .representative-trust__proof {
        display: grid;
        gap: 8px;
        margin-top: 1.15rem;
    }

    .representative-trust__actions,
    .representative-trust__actions form,
    .representative-trust__actions button {
        width: 100%;
    }

    .representative-trust--compact {
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .representative-trust--compact .representative-trust__portrait {
        min-height: 100%;
        aspect-ratio: auto;
    }

    .representative-trust--compact .representative-trust__person {
        display: none;
    }

    .representative-trust--compact .representative-trust__body {
        padding: 20px 18px;
    }

    .representative-trust--compact .section-kicker {
        gap: 6px;
        letter-spacing: 0.04em;
    }

    .representative-trust--compact .section-kicker::before {
        width: 12px;
    }

    .representative-trust--compact .representative-trust__title {
        font-size: 1.375rem;
        line-height: 1.4;
    }

    .representative-trust--compact .representative-trust__proof {
        display: none;
    }

    .representative-trust--compact .representative-trust__actions {
        margin-top: 1.25rem;
    }

    .consult-representative {
        height: 240px;
    }

    .visit-representative {
        grid-template-columns: 80px minmax(0, 1fr);
        column-gap: 14px;
        row-gap: 14px;
        margin-bottom: 24px;
        padding-bottom: 22px;
    }

    .visit-representative img {
        width: 80px;
        height: 100px;
    }
}

.services-card {
    display: grid;
    grid-template-rows: auto 1fr;
}

.services-card-media {
    position: relative;
    min-height: 220px;
    margin: 0;
    overflow: hidden;
    background: #e8edf4;
}

.services-card-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(20, 37, 60, 0.36), rgba(20, 37, 60, 0.06) 40%, transparent 65%);
}

.service-feature-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 29, 48, 0.88), rgba(15, 29, 48, 0.65) 52%, rgba(15, 29, 48, 0.14));
}

@media (max-width: 639.98px) {
    .service-feature-shade {
        background: linear-gradient(180deg, rgba(15, 29, 48, 0.54), rgba(15, 29, 48, 0.8));
    }
}

.services-card-number {
    position: absolute;
    top: 22px;
    left: 24px;
    z-index: 1;
    color: #ffffff;
    text-shadow: 0 1px 12px rgba(15, 28, 47, 0.45);
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
}

.services-card-body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 28px;
}

.services-card-title {
    margin-top: 0.8rem;
    color: var(--site-brand-dark);
    font-size: clamp(1.375rem, 2vw, 1.625rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.services-card-summary {
    margin-top: 0.9rem;
    color: var(--site-muted);
    font-size: 1rem;
    line-height: var(--type-leading-copy);
    letter-spacing: -0.01em;
    text-wrap: pretty;
}

.services-card-action {
    margin-top: auto;
    padding-top: 1.25rem;
}

.service-page-lead,
.service-content p,
.service-key-points p {
    letter-spacing: -0.01em;
    text-wrap: pretty;
}

.service-feature-title,
.service-cta h2 {
    line-height: 1.16 !important;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.btn-primary,
.btn-outline,
.btn-light {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.btn-primary {
    color: #ffffff;
    background: var(--site-brand);
    border-color: var(--site-brand);
    box-shadow: 0 9px 24px rgba(75, 114, 190, 0.18);
}

.btn-outline {
    color: var(--site-brand-dark);
    background: transparent;
    border-color: #b9c2d1;
}

.btn-light {
    color: var(--site-brand-dark);
    background: #ffffff;
    border-color: #ffffff;
}

.location-dynamic-map {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    background: #eef2f7;
}

.location-dynamic-map__canvas {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.location-dynamic-map__status {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 24px;
    color: #64748b;
    background: #eef2f7;
    text-align: center;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.location-dynamic-map.is-ready .location-dynamic-map__status {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.location-dynamic-map.is-error .location-dynamic-map__status {
    color: #475569;
    background: #f8fafc;
}

.location-dynamic-map__action {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 3;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 8px;
    color: #ffffff;
    background: rgba(40, 59, 99, 0.9);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.28);
    font-size: 0.875rem;
    font-weight: 700;
    backdrop-filter: blur(6px);
}

@media (max-width: 767.98px) {
    .location-dynamic-map,
    .location-dynamic-map__canvas {
        min-height: 350px;
    }

    .location-dynamic-map__action {
        right: 14px;
        bottom: 14px;
        min-height: 42px;
        padding-inline: 15px;
    }
}

.field-control:not([type="checkbox"]):not([type="radio"]) {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #d5dae3;
    border-radius: 8px;
    color: var(--site-ink);
    background: #ffffff;
}

textarea.field-control {
    min-height: 150px;
    resize: vertical;
}

.field-control::placeholder {
    color: #98a0ad;
}

.field-control:focus {
    border-color: var(--site-brand);
    outline: none;
    box-shadow: 0 0 0 4px rgba(75, 114, 190, 0.18);
}

.prose-tax {
    color: var(--site-muted);
}

.prose-tax h2,
.prose-tax h3 {
    color: var(--site-brand-dark);
}

.prose-tax p,
.prose-tax li {
    color: var(--site-muted);
}

.prose-tax a {
    color: var(--site-brand);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.prose-tax img {
    max-width: 100%;
    height: auto;
    border-radius: var(--site-radius);
}

/* Transparent illustrated SVGs on the home benefit cards. */
.home-benefit-grid {
    display: grid;
    gap: clamp(18px, 2.2vw, 30px);
}

.home-benefit-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    padding: clamp(28px, 3vw, 40px);
}

.home-benefit-icon {
    display: flex;
    width: 100%;
    min-height: 156px;
    align-items: center;
    justify-content: center;
}

.home-benefit-icon-svg {
    width: min(210px, 76%);
    height: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .home-benefit-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-benefit-card-title {
        min-height: 3.5rem;
    }
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid rgba(40, 59, 99, 0.12);
    background: #ffffff;
}

.site-utility-bar {
    border-bottom: 1px solid #eaedf1;
    background: #f8f9fb;
}

.site-utility-bar .site-container {
    min-height: 42px;
}

.site-utility-item,
.site-utility-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.site-brand {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.site-brand-mark {
    width: 44px;
    height: 44px;
    border: 1px solid #e0e4ea;
    border-radius: 7px;
    object-fit: cover;
    box-shadow: 0 5px 16px rgba(32, 42, 60, 0.08);
}

.site-brand-eyebrow {
    display: block;
    margin-bottom: 4px;
    color: var(--site-brand);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.site-brand-name {
    display: block;
    overflow: hidden;
    max-width: 230px;
    color: #252a31;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-header nav[aria-label="주요 메뉴"] > form {
    display: flex;
}

.site-nav-link {
    position: relative;
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 14px;
    color: #333942;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

.site-nav-link::after {
    position: absolute;
    right: 14px;
    bottom: 0;
    left: 14px;
    height: 2px;
    background: var(--site-brand);
    content: "";
    opacity: 0;
    transform: scaleX(1);
}

.site-nav-link.is-active {
    color: var(--site-brand);
}

.site-nav-link.is-active::after {
    opacity: 1;
}

.site-nav-dropdown {
    position: relative;
    display: flex;
}

.site-nav-split {
    display: flex;
    align-items: stretch;
}

.site-nav-split > form {
    display: flex;
}

.site-nav-split .site-nav-link {
    padding-right: 5px;
}

.site-nav-submenu-toggle {
    display: inline-flex;
    width: 28px;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    color: #69717c;
    background: transparent;
}

.site-nav-submenu-toggle:focus-visible,
.site-mobile-service-toggle:focus-visible {
    border-radius: 6px;
    outline: 2px solid rgba(75, 114, 190, 0.48);
    outline-offset: -3px;
}

.site-dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 230px;
    padding: 8px;
    border: 1px solid #e0e4ea;
    border-radius: 8px;
    visibility: hidden;
    opacity: 0;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(25, 36, 61, 0.15);
    pointer-events: none;
}

/* Keep pointer continuity across the visual gap below the menu button. */
.site-dropdown-panel::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 12px;
    content: "";
}

.site-nav-dropdown[data-open="true"] .site-dropdown-panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.site-dropdown-panel form {
    display: block;
    width: 100%;
}

.site-dropdown-link {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    padding: 0 16px;
    border-radius: 6px;
    color: #424850;
    font-size: 1.125rem;
    line-height: 1.5;
    text-align: left;
}

.site-dropdown-link:focus-visible {
    color: var(--site-brand);
    background: #f4f7fc;
}

.site-header-cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    padding: 0 20px;
    border: 1px solid var(--site-brand);
    border-radius: 7px;
    color: #ffffff;
    background: var(--site-brand);
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}

.site-header-cta.is-active {
    border-color: var(--site-brand-hover);
    background: var(--site-brand-hover);
    box-shadow: 0 8px 22px rgba(75, 114, 190, 0.22);
}

.site-nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfe3e9;
    border-radius: 7px;
    color: var(--site-brand-dark);
    background: #ffffff;
}

.site-nav-toggle[aria-expanded="true"] {
    color: var(--site-brand);
    border-color: #bdc9df;
    background: #f4f7fc;
}

.site-mobile-panel {
    overflow-y: auto;
    max-height: calc(100dvh - 72px);
    border-top: 1px solid #e4e7ec;
    background: #ffffff;
    box-shadow: 0 20px 35px rgba(27, 39, 59, 0.1);
}

.site-mobile-panel.hidden,
.site-mobile-panel[aria-hidden="true"] {
    display: none;
}

.site-mobile-panel form {
    display: block;
    width: 100%;
}

.site-mobile-link,
.site-mobile-sublink {
    display: flex;
    width: 100%;
    align-items: center;
    color: #30363e;
    text-align: left;
}

.site-mobile-link {
    min-height: 52px;
    padding: 0 4px;
    border-bottom: 1px solid #edf0f3;
    font-size: 1rem;
    font-weight: 650;
}

.site-mobile-service-row {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid #edf0f3;
}

.site-mobile-service-row > form {
    display: block;
    min-width: 0;
    flex: 1 1 auto;
}

.site-mobile-service-row .site-mobile-link {
    border-bottom: 0;
}

.site-mobile-service-toggle {
    display: inline-flex;
    width: 48px;
    min-height: 52px;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    color: #69717c;
    background: transparent;
}

.site-mobile-link.is-active,
.site-mobile-sublink.is-active {
    color: var(--site-brand);
}

.site-mobile-subnav {
    margin: 7px 0 10px;
    padding: 8px 12px;
    border-radius: 7px;
    background: var(--site-mist);
}

.site-mobile-group > summary {
    cursor: pointer;
    list-style: none;
    justify-content: space-between;
}

.site-mobile-group > summary::-webkit-details-marker {
    display: none;
}

.site-mobile-group-chevron {
    flex-shrink: 0;
}

.site-mobile-group[open] .site-mobile-group-chevron {
    transform: rotate(180deg);
}

.site-mobile-sublink {
    min-height: 40px;
    padding: 0 8px;
    font-size: 1rem;
}

.site-mobile-cta {
    display: flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    border-radius: 7px;
    color: #ffffff;
    background: var(--site-brand);
    font-size: 1rem;
    font-weight: 700;
}

.site-mobile-contact {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid #dfe3e9;
    border-radius: 7px;
    color: var(--site-brand-dark);
    background: #ffffff;
}

/* Footer */
.site-footer {
    color: var(--site-ink);
    background: #ffffff;
    border-top: 1px solid var(--site-line);
}

.site-footer-heading {
    color: var(--site-brand-dark);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer nav form {
    display: block;
}

.site-footer-link {
    color: var(--site-muted);
}

.site-footer-link:hover {
    color: var(--site-brand-dark);
}

.site-footer-contact {
    display: flex;
    align-items: center;
    gap: 9px;
}

.site-footer-summary > p:last-child,
.site-footer-contact-list {
    color: var(--site-muted);
}

.site-footer-bottom {
    color: #6b7280;
}

.site-cta-band,
.service-cta {
    background: var(--site-mist);
    color: var(--site-ink);
    border-top: 1px solid var(--site-line);
}

.site-cta-band h2,
.service-cta h2 {
    color: var(--site-brand-dark);
}

/* Floating consultation actions */
.site-floating-actions {
    position: fixed;
    right: clamp(16px, 2.2vw, 30px);
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 55;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-floating-actions form {
    display: block;
}

.site-floating-button {
    position: relative;
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 9px;
    box-shadow: 0 11px 28px rgba(24, 34, 50, 0.18);
}

.site-floating-phone {
    color: var(--site-brand-dark);
    background: #ffffff;
    border-color: #d8dde5;
}

.site-floating-consult {
    color: #ffffff;
    background: var(--site-brand);
    border-color: var(--site-brand);
}

.site-floating-tooltip {
    position: absolute;
    top: 50%;
    right: calc(100% + 10px);
    padding: 7px 10px;
    border-radius: 5px;
    color: #ffffff;
    background: rgba(37, 42, 49, 0.96);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translate(5px, -50%);
}

.site-floating-button:focus-visible .site-floating-tooltip {
    opacity: 1;
    transform: translate(0, -50%);
}

@media (max-width: 1023.98px) {
    html.nav-open,
    html.nav-open body {
        overflow: hidden;
    }

}

@media (min-width: 1024px) {
    .site-nav-toggle,
    .site-mobile-panel {
        display: none !important;
    }
}

@media (max-width: 639.98px) {
    .site-container {
        width: min(100% - 32px, 1200px);
    }

    .page-heading {
        font-size: clamp(2rem, 10vw, 2.75rem);
    }

    .section-title {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
    }

    .btn-primary,
    .btn-outline,
    .btn-light {
        min-height: 47px;
        padding-inline: 21px;
    }

    .site-brand {
        gap: 9px;
    }

    .site-brand-mark {
        width: 40px;
        height: 40px;
    }

    .site-brand-name {
        max-width: 190px;
        font-size: 1rem;
    }

    .site-brand-eyebrow {
        font-size: 1rem;
        letter-spacing: -0.01em;
    }

    .site-floating-button {
        width: 48px;
        height: 48px;
    }

    .site-floating-tooltip {
        display: none;
    }

    .home-benefit-icon {
        min-height: 138px;
    }

    .home-benefit-icon-svg {
        width: min(190px, 82%);
    }

    .home-benefit-card {
        padding: 28px;
    }
}

@media (max-width: 379.98px) {
    .site-brand-name {
        max-width: 168px;
        font-size: 1rem;
    }
}

.site-nav-dropdown.is-wide .site-dropdown-panel {
    width: 360px;
}

.kj-eyebrow {
    color: var(--site-brand);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.kj-mark {
    color: var(--site-brand);
}

.kj-hero {
    position: relative;
    min-height: min(88vh, 820px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: var(--site-ink);
    background: var(--site-panel);
}

.kj-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kj-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 22, 40, 0.18) 0%, rgba(11, 22, 40, 0.42) 42%, rgba(11, 22, 40, 0.88) 100%);
}

.kj-hero-inner {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 72px 0 64px;
}

.kj-notice {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 14px;
    border-left: 3px solid var(--site-brand);
    background: rgba(255, 255, 255, 0.08);
    font-size: 1rem;
    line-height: 1.65;
}

.kj-section-head {
    text-align: center;
    max-width: 760px;
    margin-inline: auto;
}

.kj-reason-num {
    color: var(--site-brand);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.home-intro-title {
    line-height: 1.1 !important;
    letter-spacing: -0.035em !important;
    text-wrap: balance;
}

.home-intro-vs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.8em;
    margin-left: 0.3em;
    padding: 0.25em 0.45em 0.2em;
    border: 1px solid rgba(75, 114, 190, 0.45);
    border-radius: 999px;
    color: var(--site-brand);
    font-size: 0.32em;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    vertical-align: 0.35em;
}

.home-intro-summary-title {
    margin-bottom: 0.7rem;
    color: var(--site-brand);
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.035em;
}

.home-intro-assurance,
.home-intro-description,
.home-rep-copy,
.home-rep-list li {
    letter-spacing: -0.01em;
    text-wrap: pretty;
}

.home-final-title {
    line-height: 1.16 !important;
    letter-spacing: -0.025em !important;
    text-wrap: balance;
}

.home-hero-point {
    padding: 1.35rem 1.4rem;
    color: var(--site-brand-dark);
    background: rgba(247, 248, 251, 0.92);
    backdrop-filter: blur(8px);
}

.home-hero-point-num {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.55);
}

.home-hero-point-label {
    margin-top: 0.45rem;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
}

/* Home composition: stacked reasons, carousels, service cards, columns, reviews */
.home-reason-card {
    display: grid;
    gap: 0;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 1px solid #e4e8ef;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 26px rgba(31, 45, 70, 0.055);
}

.home-reason-icon {
    display: flex;
    width: 100%;
    min-height: 140px;
    align-items: center;
    justify-content: center;
}

.home-reason-icon img {
    width: min(220px, 88%);
    height: auto;
}

.home-reason-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8edf4;
}

.home-reason-photo img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-reason-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
}

.home-reason-title {
    color: var(--site-brand-dark);
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.home-reason-highlight {
    margin-top: 0.6rem;
    color: var(--site-brand);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.6;
}

.home-reason-list {
    margin-top: 1.35rem;
    display: grid;
    gap: 0.7rem;
}

.home-reason-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--site-muted);
    font-size: 1.125rem;
    line-height: 1.75;
}

.home-reason-check {
    display: inline-flex;
    margin-top: 0.15rem;
    color: var(--site-brand);
}

.home-carousel {
    position: relative;
    padding-inline: 0;
}

.home-carousel-viewport {
    overflow: hidden;
}

.home-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
}

.home-carousel-track::-webkit-scrollbar {
    display: none;
}

.home-carousel-slide {
    flex: 0 0 min(100%, 20.5rem);
    scroll-snap-align: start;
}

.home-carousel-nav {
    display: none;
    position: absolute;
    top: 42%;
    z-index: 2;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d5dce7;
    border-radius: 999px;
    color: var(--site-brand-dark);
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(31, 45, 70, 0.09);
}

.home-carousel-prev {
    left: 0;
    transform: translateY(-50%);
}

.home-carousel-next {
    right: 0;
    transform: translateY(-50%);
}

.home-case-card {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    border-radius: 12px;
    background: #e8edf4;
}

button.home-case-card {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

.home-case-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .case-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.home-case-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 340px;
    flex-direction: column;
    padding: 30px 26px;
    background: linear-gradient(180deg, rgba(20, 32, 58, 0.42) 0%, rgba(20, 32, 58, 0.92) 100%);
}

.home-case-year {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.72);
}

.home-case-title {
    margin-top: 1.1rem;
    color: #ffffff;
    font-size: clamp(1.375rem, 2vw, 1.75rem);
    font-weight: 700;
    line-height: 1.35;
}

.home-case-desc {
    margin-top: 0.85rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.0625rem;
    line-height: 1.75;
}

.home-case-date {
    margin-top: auto;
    padding-top: 1.5rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 1rem;
    letter-spacing: 0.04em;
}

.home-service-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    min-width: 0;
    border: 1px solid #e1e5eb;
    border-radius: 12px;
    color: var(--site-ink);
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(40, 59, 99, 0.06);
}

.home-service-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 32px 28px;
}

.home-service-title {
    color: var(--site-brand-dark);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
}

.home-service-desc {
    margin-top: 0.85rem;
    color: var(--site-muted);
    font-size: 1.125rem;
    line-height: 1.75;
}

.home-service-visual {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.home-service-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-service-action {
    margin-top: auto;
    padding-top: 24px;
}

.home-service-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid #b9c2d1;
    border-radius: 8px;
    color: var(--site-brand-dark);
    font-size: 1.0625rem;
    font-weight: 700;
}

.home-column-card {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    border: 0;
    text-align: left;
    background: #ffffff;
    border: 1px solid #e1e5eb;
    border-radius: 12px;
    box-shadow: 0 8px 26px rgba(31, 45, 70, 0.07);
}

.home-column-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eef1f6;
}

.home-column-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-column-fallback {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: rgba(40, 59, 99, 0.28);
}

.home-column-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 24px 24px 26px;
    background: #ffffff;
}

.home-column-label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--site-brand);
}

.home-column-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    min-height: calc(1em * 1.4 * 2);
    margin-top: 0.75rem;
    color: var(--site-brand-dark);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
}

.home-column-date {
    display: block;
    margin-top: auto;
    padding-top: 1rem;
    color: var(--site-muted);
    font-size: 1rem;
}

.home-more-link {
    color: var(--site-brand);
    font-size: 1.0625rem;
    font-weight: 700;
    white-space: nowrap;
}

.home-news-item {
    display: grid;
    gap: 0.75rem;
    padding-block: 1.5rem;
}

.home-news-meta {
    color: var(--site-brand);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.home-news-meta span {
    display: block;
    margin-top: 0.35rem;
    color: var(--site-muted);
    font-weight: 500;
    letter-spacing: 0;
}

.home-news-title {
    color: var(--site-brand-dark);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.45;
}

.home-review-card {
    display: flex;
    width: 100%;
    min-height: 100%;
    flex-direction: column;
    padding: 30px 26px;
    border: 1px solid #e4e8ef;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 26px rgba(31, 45, 70, 0.055);
    text-align: left;
}

.home-review-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.home-review-photo,
.home-review-avatar {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    object-fit: cover;
    background: var(--site-mist);
}

.home-review-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--site-brand);
    background: #e8edf8;
}

.home-review-label {
    display: block;
    color: var(--site-brand);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.home-review-title {
    display: block;
    margin-top: 0.3rem;
    overflow: hidden;
    color: var(--site-brand-dark);
    font-size: 1.1875rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-review-excerpt {
    display: block;
    margin-top: 1.15rem;
    color: var(--site-muted);
    font-size: 1.125rem;
    line-height: 1.75;
    text-align: left;
}

.home-review-date {
    display: block;
    margin-top: auto;
    padding-top: 1.4rem;
    color: #666666;
    font-size: 1rem;
    text-align: left;
}

.home-rep-career {
    margin-top: 0.75rem;
    color: var(--site-brand);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.65;
}

.home-rep-copy {
    margin-top: 1.15rem;
    color: var(--site-muted);
    font-size: 1.125rem;
    line-height: 1.8;
}

.home-rep-list {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(40, 59, 99, 0.1);
    display: grid;
    gap: 0.75rem;
}

.home-rep-list li {
    display: flex;
    gap: 0.7rem;
    color: var(--site-muted);
    font-size: 1.125rem;
    line-height: 1.75;
}

/* Representative career: proof first, then the practical client benefit. */
main > section.career-overview {
    background-color: #ffffff;
}

.career-overview-head {
    max-width: 880px;
}

.career-overview-head .section-kicker {
    color: #315891;
}

.career-overview-intro {
    color: #303b4d;
    font-weight: 500;
}

.career-overview-grid {
    display: grid;
    gap: 32px;
}

.career-stat-card {
    align-self: start;
    overflow: hidden;
    padding: 36px 32px;
    border: 1px solid #e1e5eb;
    border-radius: 12px;
    color: var(--site-ink);
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(31, 45, 70, 0.06);
}

.career-stat-label {
    color: var(--site-brand);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.career-stat-number {
    margin-top: 1.25rem;
    color: var(--site-brand-dark);
    font-size: clamp(4.75rem, 10vw, 7rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.career-stat-number span {
    margin-left: 0.35rem;
    color: var(--site-brand);
    font-size: 1.375rem;
    letter-spacing: -0.02em;
}

.career-stat-title {
    margin-top: 1.25rem;
    color: var(--site-brand-dark);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.career-stat-copy {
    margin-top: 1rem;
    color: var(--site-muted);
    font-size: 1.0625rem;
    line-height: var(--type-leading-copy);
    letter-spacing: -0.01em;
}

.career-stat-person {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    margin-top: 1.75rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(40, 59, 99, 0.12);
}

.career-stat-person strong,
.career-stat-person span {
    font-size: 1rem;
    line-height: 1.5;
}

.career-stat-person strong {
    color: var(--site-brand-dark);
    font-weight: 700;
}

.career-stat-person span {
    color: var(--site-muted);
}

.career-groups {
    border-top: 1px solid #d9e0e9;
}

.career-group {
    display: grid;
    gap: 18px;
    padding: 28px 0;
    border-bottom: 1px solid #d9e0e9;
}

.career-group-label {
    color: #315891;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0;
}

.career-group-summary {
    margin-top: 0.35rem;
    color: var(--site-brand-dark);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
}

.career-group-list {
    display: grid;
    gap: 0.65rem;
}

.career-group-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: #303b4d;
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.68;
    letter-spacing: -0.01em;
}

.career-group-list svg {
    margin-top: 0.25rem;
    color: #315891;
}

.career-benefit-grid {
    display: grid;
    gap: 18px;
}

.career-benefit-card {
    padding: 30px 28px;
    border: 1px solid #e1e5eb;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 26px rgba(31, 45, 70, 0.055);
}

.career-benefit-number {
    color: var(--site-brand);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
}

.career-benefit-card h3 {
    margin-top: 1.1rem;
    color: var(--site-brand-dark);
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.45;
}

.career-benefit-card > p:last-child {
    margin-top: 0.85rem;
    color: var(--site-muted);
    font-size: 1.0625rem;
    line-height: 1.68;
    letter-spacing: -0.01em;
}

.career-direct-note {
    display: grid;
    gap: 18px;
    padding: 30px 28px;
    border-left: 4px solid var(--site-brand);
    border-radius: 0 12px 12px 0;
    background: #f4f7fc;
}

.career-direct-label {
    color: var(--site-brand);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
}

.career-direct-note h3 {
    margin-top: 0.6rem;
    color: var(--site-brand-dark);
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.45;
}

.career-direct-note > p {
    color: var(--site-muted);
    font-size: 1.0625rem;
    line-height: 1.68;
}

.career-disclaimer {
    margin-top: 1.25rem;
    color: #666666;
    font-size: 1rem;
    line-height: 1.7;
}

.home-faq-item summary {
    list-style: none;
}

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

.home-faq-toggle {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d5dce7;
    border-radius: 999px;
}

.home-faq-item[open] .home-faq-toggle {
    color: #ffffff;
    background: var(--site-brand);
    border-color: var(--site-brand);
    transform: rotate(45deg);
}

.home-faq-num {
    width: 2.75rem;
    flex-shrink: 0;
    color: var(--site-brand);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.home-faq-question {
    min-width: 0;
    flex: 1;
    color: var(--site-brand-dark);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
}

.home-faq-answer {
    padding: 0 3.5rem 1.85rem 3.85rem;
    color: var(--site-muted);
    font-size: 1.125rem;
    line-height: 1.85;
}

@media (min-width: 768px) {
    .career-group {
        grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
        gap: 32px;
    }

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

    .career-direct-note {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        align-items: center;
        gap: 40px;
        padding: 34px 36px;
    }

    .home-reason-icon {
        min-height: 160px;
    }

    .home-carousel-slide {
        flex-basis: calc((100% - 40px) / 3);
    }

    .home-news-item {
        grid-template-columns: 8.5rem minmax(0, 1fr) auto;
        align-items: center;
        gap: 1.5rem;
        padding-block: 1.7rem;
    }
}

@media (min-width: 1024px) {
    .about-hero-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
    }

    .about-portrait-frame {
        justify-self: end;
        width: min(100%, 430px);
        min-height: 520px;
    }

    .home-representative-card {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }

    .career-overview-grid {
        grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
        align-items: start;
        gap: 64px;
    }

    .career-stat-card {
        padding: 44px 40px;
    }

    .home-reason-card {
        grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
        align-items: stretch;
    }

    .home-reason-photo {
        height: 100%;
        min-height: 360px;
        aspect-ratio: auto;
    }

    .home-reason-copy {
        padding: clamp(32px, 3.5vw, 48px);
    }

    .home-reason-icon img {
        width: min(240px, 92%);
    }

    .home-carousel {
        padding-inline: 52px;
    }

    .home-carousel-nav {
        display: inline-flex;
    }

    .home-service-copy {
        padding: 40px 36px;
    }
}

@media (max-width: 639.98px) {
    .career-stat-card,
    .career-benefit-card,
    .career-direct-note {
        padding: 24px 22px;
    }

    .career-stat-number {
        font-size: 4.5rem;
    }

    .career-group {
        gap: 14px;
        padding: 24px 0;
    }

    .career-group-summary,
    .career-benefit-card h3,
    .career-direct-note h3 {
        font-size: 1.25rem;
    }

    .home-faq-answer {
        padding-left: 0;
        padding-right: 0;
    }

    .home-faq-question {
        font-size: 1.125rem;
    }

    .home-reason-title {
        font-size: 1.375rem;
    }
}

/* Mobile home: keep the editorial hierarchy while fitting the real phone viewport. */
@media (max-width: 639.98px) {
    .site-header > .site-container {
        width: calc(100% - 24px);
        height: 64px;
        gap: 10px;
    }

    .site-header > .site-container > form {
        min-width: 0;
        flex: 1 1 auto;
    }

    .site-brand {
        max-width: 100%;
        gap: 8px;
    }

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

    .site-brand-eyebrow {
        margin-bottom: 3px;
        font-size: 1rem;
        letter-spacing: -0.01em;
    }

    .site-brand-name {
        max-width: 178px;
        font-size: 1rem;
    }

    .site-nav-toggle {
        width: 42px;
        height: 42px;
    }

    .site-mobile-panel {
        max-height: calc(100dvh - 122px - env(safe-area-inset-bottom));
    }

    .site-mobile-sublink {
        min-height: 42px;
        font-size: 1rem;
    }

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

    .home-page .section-title {
        font-size: clamp(1.625rem, 7vw, 1.875rem);
        line-height: 1.3;
    }

    .home-page .section-kicker {
        gap: 8px;
        font-size: 1rem;
        letter-spacing: 0.13em;
    }

    .home-page .section-kicker::before {
        width: 20px;
    }

    .home-page .mt-12 {
        margin-top: 1.75rem;
    }

    .home-intro-inner {
        padding-top: 28px;
        padding-bottom: 32px;
    }

    .home-intro-kicker {
        width: 100%;
        font-size: 1rem !important;
        letter-spacing: 0.09em !important;
        line-height: 1.35;
        white-space: normal;
    }

    .home-intro-kicker::before {
        width: 18px !important;
        flex-shrink: 0;
    }

    .home-intro-grid {
        gap: 22px;
        margin-top: 24px;
    }

    .home-intro-assurance {
        font-size: 1rem !important;
        line-height: 1.55;
    }

    .home-intro-title {
        margin-top: 12px;
        font-size: clamp(1.85rem, 8.25vw, 2.1rem);
        line-height: 1.16;
        letter-spacing: -0.045em;
    }

    .home-intro-summary {
        padding-top: 18px;
        padding-left: 0;
        border-top: 1px solid rgba(75, 114, 190, 0.35);
        border-left: 0;
    }

    .home-intro-description {
        max-width: none;
        font-size: 1rem;
        line-height: 1.72;
    }

    .home-intro-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 20px;
    }

    .home-intro-actions form,
    .home-intro-actions button {
        display: flex;
        width: 100%;
    }

    .home-intro-actions .btn-primary,
    .home-intro-actions .btn-outline {
        min-height: 48px;
        padding-inline: 12px;
        font-size: 1rem;
    }

    .home-hero-visual {
        padding-bottom: 12px;
    }

    .home-hero-figure {
        min-height: 340px;
    }

    .home-hero-figure > img {
        object-position: 58% center;
    }

    .home-hero-caption {
        padding: 0 16px 16px;
    }

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

    .home-hero-point {
        display: flex;
        min-height: 78px;
        flex-direction: column;
        justify-content: center;
        padding: 11px 13px;
    }

    .home-hero-point-num {
        font-size: 1rem;
        letter-spacing: 0.16em;
    }

    .home-hero-point-label {
        margin-top: 0.35rem;
        font-size: 1rem;
        line-height: 1.4;
    }

    .home-reason-card {
        grid-template-columns: minmax(0, 1fr);
        align-items: stretch;
        gap: 0;
        padding: 0;
        border-radius: 12px;
    }

    .home-reason-icon {
        width: 76px;
        min-height: 76px;
        padding: 8px;
        border-radius: 12px;
        background: #f3f6fc;
    }

    .home-reason-icon img {
        width: 100%;
    }

    .home-reason-copy {
        padding: 24px 22px;
    }

    .home-reason-title {
        font-size: 1.1875rem;
        line-height: 1.4;
    }

    .home-reason-highlight {
        margin-top: 0.35rem;
        font-size: 1rem;
        line-height: 1.55;
    }

    .home-reason-list {
        margin-top: 0.85rem;
        gap: 0.45rem;
    }

    .home-reason-list li {
        gap: 0.5rem;
        font-size: 1rem;
        line-height: 1.55;
    }

    .home-reason-check svg {
        width: 18px;
        height: 18px;
    }

    .home-carousel-track {
        gap: 12px;
    }

    .home-carousel-slide {
        flex-basis: 86%;
    }

    .home-case-desc,
    .home-service-desc,
    .home-review-excerpt,
    .home-rep-career,
    .home-rep-copy,
    .home-rep-list li,
    .home-faq-answer {
        font-size: 1rem;
    }

    .home-service-copy {
        padding: 24px 22px;
    }

    .home-service-title {
        font-size: 1.5rem;
        line-height: 1.35;
    }

    .home-service-desc {
        margin-top: 0.55rem;
        font-size: 1rem;
        line-height: 1.6;
    }

    .home-service-action {
        padding-top: 20px;
    }

    .home-service-link {
        padding-inline: 15px;
        font-size: 1rem;
    }

    .home-representative-card {
        gap: 0;
        border-radius: 12px;
    }

    .home-representative-image {
        height: 230px !important;
        min-height: 230px !important;
    }

    .home-representative-panel {
        padding: 24px 22px;
    }

    .home-representative-kicker {
        display: none;
    }

    .home-representative-panel h3 {
        margin-top: 0;
        font-size: 1.375rem;
    }

    .home-rep-copy {
        margin-top: 0.85rem;
        line-height: 1.7;
    }

    .home-rep-list {
        margin-top: 1.15rem;
        padding-top: 1rem;
        gap: 0.55rem;
    }

    .home-rep-list li {
        line-height: 1.6;
    }

    .home-faq-num {
        width: 2.25rem;
        font-size: 1rem;
    }

    .home-faq-question {
        font-size: 1.0625rem;
    }

    .home-final-cta {
        padding-block: 48px;
    }

    .home-final-kicker {
        font-size: 1rem !important;
        line-height: 1.5;
        letter-spacing: 0.13em !important;
    }

    .home-final-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .home-final-actions {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .site-footer-main {
        gap: 30px;
        padding-block: 40px;
    }

    .site-footer-summary h2 {
        margin-top: 8px;
        font-size: 1.1875rem;
    }

    .site-footer-summary > p:last-child {
        margin-top: 12px;
        line-height: 1.65;
    }

    .site-footer-nav-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        gap: 0 20px;
        margin-top: 12px;
    }

    .site-footer-nav-links form {
        width: 100%;
    }

    .site-footer-nav-links .site-footer-link {
        display: block;
        width: 100%;
        padding-block: 8px;
        border-bottom: 1px solid var(--site-line);
        text-align: left;
    }

    .site-footer-contact-list {
        display: grid;
        gap: 9px;
        margin-top: 14px;
    }

    .site-footer-contact-list > * {
        margin-top: 0 !important;
    }

    .site-footer-bottom {
        gap: 5px;
        padding-top: 18px;
        padding-bottom: calc(76px + env(safe-area-inset-bottom));
        line-height: 1.55;
    }

    .home-final-actions form,
    .home-final-actions button {
        display: flex;
        width: 100%;
    }

    .home-final-actions .btn-outline,
    .home-final-actions .btn-primary {
        padding-inline: 12px;
        font-size: 1rem;
    }

    .site-floating-actions {
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        width: auto;
        max-width: none;
        box-sizing: border-box;
        flex-direction: row;
        gap: 0;
        overflow: hidden;
        padding-right: env(safe-area-inset-right);
        padding-bottom: env(safe-area-inset-bottom);
        padding-left: env(safe-area-inset-left);
        background: #ffffff;
        box-shadow: 0 -8px 24px rgba(24, 34, 50, 0.13);
    }

    .site-floating-actions > a,
    .site-floating-actions > form {
        display: flex;
        width: 0;
        max-width: none;
        min-width: 0;
        flex: 1 1 0%;
    }

    .site-floating-button {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: 58px;
        box-sizing: border-box;
        gap: 8px;
        overflow: hidden;
        padding-inline: 12px;
        border-width: 0;
        border-radius: 0;
        box-shadow: none;
        font-size: 1rem;
        font-weight: 700;
    }

    .site-floating-phone {
        border-top: 1px solid #d8dde5;
    }

    .site-floating-tooltip {
        position: static;
        display: inline;
        padding: 0;
        color: inherit;
        background: transparent;
        font-size: inherit;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        opacity: 1;
        transform: none;
    }

}

@media (max-width: 359.98px) {
    .site-brand-mark {
        width: 34px;
        height: 34px;
    }

    .site-brand-eyebrow {
        font-size: 1rem;
        letter-spacing: -0.01em;
    }

    .site-brand-name {
        max-width: 155px;
        font-size: 1rem;
    }

    .home-intro-title {
        font-size: 1.85rem;
    }

    .home-hero-caption {
        padding-inline: 12px;
    }

    .home-hero-point {
        padding-inline: 12px;
    }
}

.kj-step {
    counter-increment: none;
}

.site-dropdown-link:focus-visible {
    background: #f4f7fc;
}

/* A restrained page rhythm keeps long service and information pages scannable. */
#content .py-16 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

@media (max-width: 639.98px) {
    #content .py-16 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    #content .leading-8 {
        line-height: 1.7;
    }

    #content .tracking-\[0\.2em\],
    #content .tracking-\[0\.22em\],
    #content .tracking-\[0\.24em\] {
        letter-spacing: 0.1em !important;
    }

    .page-heading {
        font-size: clamp(2rem, 9vw, 2.25rem);
        line-height: 1.2;
        letter-spacing: -0.02em;
    }

    .about-hero .page-heading {
        font-size: clamp(28px, 7.5vw, 36px);
    }

    .section-title,
    .home-page .section-title {
        line-height: 1.32;
        letter-spacing: -0.018em;
    }

    .section-kicker,
    .home-page .section-kicker {
        letter-spacing: 0.085em;
    }

    .section-kicker + .page-heading {
        margin-top: 1.25rem;
    }

    .home-intro-kicker {
        letter-spacing: 0.06em !important;
    }

    .home-intro-title {
        line-height: 1.2 !important;
        letter-spacing: -0.025em !important;
    }

    .home-intro-description {
        line-height: 1.68;
    }

    .home-hero-figure {
        min-height: 315px;
    }

    .home-reason-title {
        letter-spacing: -0.015em;
    }

    .home-reason-highlight,
    .home-reason-list li,
    .home-rep-copy,
    .home-rep-list li {
        line-height: 1.62;
    }

    .home-representative-visual {
        height: 300px;
        min-height: 300px;
    }

    .home-representative-image {
        height: 100% !important;
        min-height: 0 !important;
        object-position: 50% 18%;
    }

    .home-representative-work-image {
        object-position: 50% 50%;
    }

    .home-representative-visual figcaption,
    .about-portrait-frame figcaption {
        padding: 20px;
    }

    .home-representative-panel {
        padding: 24px 22px;
    }

    .home-representative-panel h3 {
        line-height: 1.38;
        letter-spacing: -0.02em;
    }

    .about-hero-grid {
        gap: 28px;
    }

    .about-hero-lead {
        line-height: 1.7;
    }

    .about-hero-proof {
        gap: 8px;
        margin-top: 1.25rem;
    }

    .about-hero-proof li {
        padding: 8px 10px;
    }

    .about-portrait-frame {
        min-height: 300px;
        aspect-ratio: auto;
    }

    .career-stat-label {
        letter-spacing: 0.06em;
    }

    .career-stat-copy,
    .career-benefit-card > p:last-child,
    .career-group-list li {
        line-height: 1.65;
    }

    .career-group {
        padding-block: 20px;
    }

    .services-list {
        gap: 16px;
    }

    .services-card-media {
        min-height: 170px;
    }

    .services-card-number {
        top: 18px;
        left: 20px;
        font-size: 2rem;
    }

    .services-card-body {
        padding: 20px;
    }

    .services-card-title {
        margin-top: 0.65rem;
        font-size: 1.375rem;
        line-height: 1.35;
    }

    .services-card-summary {
        margin-top: 0.7rem;
        line-height: 1.62;
    }

    .services-card-action {
        padding-top: 1rem;
    }

    .services-card-action form,
    .services-card-action button {
        display: flex;
        width: 100%;
    }

    .service-feature-card,
    .service-feature-copy {
        min-height: 310px !important;
    }

    .service-feature-copy {
        padding: 22px;
    }

    .service-feature-title {
        font-size: 1.75rem !important;
        line-height: 1.22 !important;
        letter-spacing: -0.02em;
    }

    .service-feature-title + p {
        margin-top: 1rem;
        line-height: 1.65;
    }

    .service-content .site-container {
        gap: 28px;
    }

    .service-content .surface-card {
        padding: 22px !important;
    }

    .service-content li,
    .service-key-points p {
        line-height: 1.65;
    }

    .service-key-points .site-container > .grid > article {
        padding: 22px;
    }

    .service-key-points .site-container > .grid {
        margin-top: 1.75rem;
    }

    .service-cta h2 {
        font-size: 1.75rem;
        line-height: 1.25 !important;
    }

    .consult-form > div:first-of-type,
    .consult-form > div:last-of-type {
        padding-right: 22px;
        padding-left: 22px;
    }

    .consult-form > .divide-y {
        padding-right: 22px;
        padding-left: 22px;
    }

    .consult-form .py-6 {
        padding-top: 1.1rem;
        padding-bottom: 1.1rem;
    }
}

@media (min-width: 768px) {
    #content .md\:py-24 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

/* Public readability and motion policy: all visible supporting text is at least 16px. */
.text-xs,
.text-sm {
    font-size: 1rem !important;
    line-height: 1.6;
}

*,
*::before,
*::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
}

/* Hero balance: three calm lines on phones, two balanced lines on larger screens. */
.home-intro-grid {
    align-items: start;
}

.home-intro-title {
    max-width: none;
    font-size: clamp(2.125rem, 9vw, 2.25rem) !important;
    font-weight: 700;
    line-height: 1.18 !important;
    letter-spacing: -0.025em !important;
    text-wrap: normal;
}

.home-intro-title-line,
.home-intro-mobile-line {
    display: block;
}

.home-intro-summary {
    max-width: 760px;
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid rgba(75, 114, 190, 0.35);
    border-left: 0;
}

.home-intro-actions {
    margin-top: 24px;
}

/* Important service decisions should never read like supporting fine print. */
.service-content .site-container > div:first-child > ul > li {
    gap: 0.85rem;
    font-size: 1.125rem !important;
    line-height: 1.75;
    letter-spacing: -0.01em;
}

.service-content .site-container > div:first-child > ul > li svg {
    width: 22px;
    height: 22px;
    margin-top: 0.3rem;
}

.service-content .surface-card ul > li {
    font-size: 1.0625rem !important;
    line-height: 1.72;
    letter-spacing: -0.01em;
}

@media (min-width: 640px) {
    .home-intro-title {
        font-size: clamp(3rem, 6.6vw, 3.5rem) !important;
        line-height: 1.15 !important;
    }

    .home-intro-mobile-line {
        display: inline;
    }

    .home-intro-assurance {
        font-size: 1.0625rem !important;
    }

    .home-intro-description {
        font-size: 1.125rem;
        line-height: 1.7;
    }
}

@media (min-width: 768px) {
    .home-intro-inner {
        padding-top: 72px !important;
        padding-bottom: 72px !important;
    }
}

@media (min-width: 1200px) {
    .home-intro-grid {
        grid-template-columns: minmax(0, 1fr) 320px;
        align-items: center;
        gap: clamp(48px, 4.5vw, 60px);
    }

    .home-intro-title {
        font-size: clamp(3.5rem, 4.35vw, 3.875rem) !important;
        line-height: 1.14 !important;
    }

    .home-intro-title-line {
        white-space: nowrap;
    }

    .home-intro-summary {
        max-width: none;
        padding: 4px 0 4px 26px;
        border-top: 0;
        border-left: 1px solid rgba(75, 114, 190, 0.35);
    }
}

@media (max-width: 639.98px) {
    .home-intro-vs {
        min-width: 2.6em;
        padding: 0.22em 0.4em 0.18em;
        font-size: 1rem;
        vertical-align: 0.18em;
    }

    .home-intro-inner {
        padding-top: 24px;
        padding-bottom: 28px;
    }

    .home-intro-grid {
        gap: 20px;
        margin-top: 22px;
    }

    .home-intro-summary {
        padding-top: 16px;
    }

    .home-intro-description {
        line-height: 1.65;
    }

    .home-intro-actions {
        margin-top: 18px;
    }

    .service-content .site-container > div:first-child > ul > li {
        font-size: 1.125rem !important;
        line-height: 1.68;
    }

    .service-content .surface-card ul > li {
        font-size: 1.0625rem !important;
        line-height: 1.68;
    }
}

@media (max-width: 374.98px) {
    .home-intro-kicker {
        gap: 6px;
        letter-spacing: 0.03em !important;
    }

    .home-intro-kicker::before {
        width: 12px !important;
    }
}

/* Homepage credential hero: one clear story, led by the representative and verified roles. */
.home-intro {
    background: #ffffff;
}

.home-intro-inner {
    padding-top: 40px !important;
    padding-bottom: 52px !important;
}

.home-credential-hero {
    display: grid;
    grid-template-areas:
        "copy portrait"
        "detail portrait"
        "proof proof";
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
    overflow: hidden;
    border: 1px solid rgba(40, 59, 99, 0.1);
    border-radius: 18px;
    color: var(--site-ink);
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(20, 39, 66, 0.06);
}

.home-credential-copy {
    grid-area: copy;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: clamp(42px, 4vw, 52px) clamp(42px, 4.5vw, 58px) 26px;
    background: #ffffff;
}

.home-credential-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 17px;
    border-bottom: 1px solid rgba(40, 59, 99, 0.12);
    color: var(--site-muted);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.home-credential-meta p:last-child {
    text-align: right;
}

.home-credential-assurance {
    margin-top: 30px;
    color: var(--site-brand);
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: -0.01em;
    text-wrap: pretty;
}

.home-credential-assurance strong {
    display: inline-block;
    margin-inline: 0.22em;
    color: var(--site-brand-dark);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.home-credential-title {
    margin-top: 14px;
    color: var(--site-brand-dark);
    font-size: clamp(3rem, 4.15vw, 3.75rem);
    font-weight: 750;
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.home-credential-title > span {
    display: block;
}

.home-credential-title-accent {
    color: var(--site-brand);
}

.home-credential-summary {
    max-width: 580px;
    padding-top: 23px;
    border-top: 1px solid rgba(40, 59, 99, 0.12);
}

.home-credential-detail {
    grid-area: detail;
    min-width: 0;
    padding: 0 clamp(42px, 4.5vw, 58px) clamp(42px, 4vw, 52px);
    background: #ffffff;
}

.home-credential-summary-title {
    color: var(--site-brand-dark);
    font-size: clamp(1.375rem, 2vw, 1.625rem);
    font-weight: 800;
    line-height: 1.38;
    letter-spacing: -0.025em;
}

.home-credential-description {
    margin-top: 9px;
    color: var(--site-muted);
    font-size: 1.0625rem;
    line-height: 1.72;
    letter-spacing: -0.01em;
    text-wrap: pretty;
}

.home-credential-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.home-credential-actions .btn-primary,
.home-credential-actions .home-credential-secondary {
    min-height: 52px;
    padding-inline: 24px;
}

.home-credential-secondary {
    color: var(--site-brand-dark);
    border-color: #b9c2d1;
    background: transparent;
    box-shadow: none;
}

.home-credential-portrait {
    position: relative;
    grid-area: portrait;
    min-width: 0;
    min-height: 630px;
    overflow: hidden;
    margin: 0;
    background: #e8edf4;
}

.home-credential-portrait::after {
    position: absolute;
    inset: 46% 0 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(9, 25, 47, 0.92) 100%);
    content: "";
    pointer-events: none;
}

.home-credential-portrait img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 16%;
}

.home-credential-portrait figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: grid;
    gap: 5px;
    padding: 28px 30px;
}

.home-credential-portrait figcaption strong {
    color: #ffffff;
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.025em;
}

.home-credential-portrait figcaption span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

@media (min-width: 1024px) {
    .home-credential-portrait {
        --portrait-edge-x: clamp(42px, 4.5vw, 58px);
        --portrait-edge-y: clamp(42px, 4vw, 52px);
        background: #ffffff;
    }

    .home-credential-portrait img {
        position: absolute;
        inset: var(--portrait-edge-y) var(--portrait-edge-x) var(--portrait-edge-y) 24px;
        width: calc(100% - 24px - var(--portrait-edge-x));
        height: calc(100% - var(--portrait-edge-y) - var(--portrait-edge-y));
        border-radius: 12px;
    }

    .home-credential-portrait::after {
        inset: 46% var(--portrait-edge-x) var(--portrait-edge-y) 24px;
        border-radius: 0 0 12px 12px;
    }

    .home-credential-portrait figcaption {
        right: var(--portrait-edge-x);
        bottom: var(--portrait-edge-y);
        left: 24px;
        padding: 26px 28px;
    }
}

.home-credential-proof-grid {
    grid-area: proof;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    padding-top: 1px;
    background: rgba(40, 59, 99, 0.1);
}

.home-credential-proof {
    min-width: 0;
    padding: 22px 24px 24px;
    background: #ffffff;
}

.home-credential-proof-num {
    color: var(--site-brand);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.12em;
}

.home-credential-proof-title {
    margin-top: 7px;
    color: var(--site-brand-dark);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.home-credential-proof-role {
    margin-top: 6px;
    color: var(--site-muted);
    font-size: 1rem;
    line-height: 1.55;
    letter-spacing: -0.01em;
    word-break: keep-all;
}

@media (max-width: 1023.98px) {
    .home-credential-hero {
        grid-template-areas:
            "copy"
            "portrait"
            "detail"
            "proof";
        grid-template-columns: minmax(0, 1fr);
    }

    .home-credential-copy {
        min-height: 0;
        padding: 44px 44px 38px;
    }

    .home-credential-title {
        font-size: clamp(3rem, 7.5vw, 3.75rem);
    }

    .home-credential-portrait {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .home-credential-portrait img {
        object-position: 50% 17%;
    }

    .home-credential-detail {
        padding: 34px 44px 44px;
    }
}

@media (max-width: 767.98px) {
    .home-intro-inner {
        padding-top: 24px !important;
        padding-bottom: 34px !important;
    }

    .home-credential-hero {
        border-radius: 14px;
        box-shadow: 0 16px 38px rgba(20, 39, 66, 0.12);
    }

    .home-credential-copy {
        padding: 32px 28px 28px;
    }

    .home-credential-meta {
        padding-bottom: 14px;
        font-size: 1rem;
        letter-spacing: 0.07em;
    }

    .home-credential-meta p:last-child {
        display: none;
    }

    .home-credential-assurance {
        margin-top: 24px;
        font-size: 1rem;
        line-height: 1.6;
    }

    .home-credential-title {
        margin-top: 12px;
        font-size: clamp(2.25rem, 10.2vw, 3rem);
        line-height: 1.14;
        letter-spacing: -0.04em;
    }

    .home-credential-summary {
        padding-top: 20px;
    }

    .home-credential-summary-title {
        font-size: 1.375rem;
    }

    .home-credential-description {
        margin-top: 8px;
        font-size: 1rem;
        line-height: 1.68;
    }

    .home-credential-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
        margin-top: 23px;
    }

    .home-credential-detail {
        padding: 30px 28px 34px;
    }

    .home-credential-actions form,
    .home-credential-actions button {
        display: flex;
        width: 100%;
    }

    .home-credential-portrait {
        aspect-ratio: 4 / 3;
    }

    .home-credential-portrait img {
        object-position: 50% 17%;
    }

    .home-credential-portrait figcaption {
        padding: 22px;
    }

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

    .home-credential-proof {
        padding: 19px 18px 21px;
    }

    .home-credential-proof-title {
        font-size: 1.125rem;
    }

    .home-credential-proof-role {
        font-size: 1rem;
        line-height: 1.55;
    }
}

@media (max-width: 374.98px) {
    .home-credential-copy {
        padding-right: 22px;
        padding-left: 22px;
    }

    .home-credential-title {
        font-size: 2.125rem;
    }

    .home-credential-title > span:nth-child(2) {
        font-size: 0.9em;
    }

    .home-credential-proof {
        padding-right: 14px;
        padding-left: 14px;
    }
}
